diff --git a/grammar.js b/grammar.js index 28d505d7..6a7de4b3 100644 --- a/grammar.js +++ b/grammar.js @@ -1341,6 +1341,7 @@ module.exports = grammar({ alias(choice(...primitiveTypes), $.identifier), $.identifier, $.scoped_identifier, + $.generic_pattern, $.tuple_pattern, $.tuple_struct_pattern, $.struct_pattern, @@ -1358,6 +1359,15 @@ module.exports = grammar({ '_', ), + generic_pattern: $ => seq( + choice( + $.identifier, + $.scoped_identifier, + ), + '::', + field('type_arguments', $.type_arguments), + ), + tuple_pattern: $ => seq( '(', sepBy(',', choice($._pattern, $.closure_expression)), diff --git a/src/grammar.json b/src/grammar.json index 5a2444be..24f49f41 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -7970,6 +7970,10 @@ "type": "SYMBOL", "name": "scoped_identifier" }, + { + "type": "SYMBOL", + "name": "generic_pattern" + }, { "type": "SYMBOL", "name": "tuple_pattern" @@ -8032,6 +8036,36 @@ } ] }, + "generic_pattern": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_identifier" + } + ] + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + }, "tuple_pattern": { "type": "SEQ", "members": [ @@ -9465,5 +9499,6 @@ "_literal_pattern", "_declaration_statement", "_pattern" - ] -} + ], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 0b09861b..e33e1e7a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -339,6 +339,10 @@ "type": "const_block", "named": true }, + { + "type": "generic_pattern", + "named": true + }, { "type": "identifier", "named": true @@ -2270,6 +2274,36 @@ } } }, + { + "type": "generic_pattern", + "named": true, + "fields": { + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "scoped_identifier", + "named": true + } + ] + } + }, { "type": "generic_type", "named": true, diff --git a/src/parser.c b/src/parser.c index ff8fce9b..7ff37e80 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,3 +1,5 @@ +/* Automatically generated by tree-sitter v0.25.1 (f5afe475deb7c0bae6407fb776c76824f717bb61) */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) @@ -5,15 +7,17 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3649 -#define LARGE_STATE_COUNT 1014 -#define SYMBOL_COUNT 346 +#define STATE_COUNT 3667 +#define LARGE_STATE_COUNT 1018 +#define SYMBOL_COUNT 347 #define ALIAS_COUNT 4 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 280 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 281 +#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_identifier = 1, @@ -307,64 +311,65 @@ enum ts_symbol_identifiers { sym_try_block = 289, sym_block = 290, sym__pattern = 291, - sym_tuple_pattern = 292, - sym_slice_pattern = 293, - sym_tuple_struct_pattern = 294, - sym_struct_pattern = 295, - sym_field_pattern = 296, - sym_remaining_field_pattern = 297, - sym_mut_pattern = 298, - sym_range_pattern = 299, - sym_ref_pattern = 300, - sym_captured_pattern = 301, - sym_reference_pattern = 302, - sym_or_pattern = 303, - sym__literal = 304, - sym__literal_pattern = 305, - sym_negative_literal = 306, - sym_string_literal = 307, - sym_raw_string_literal = 308, - sym_boolean_literal = 309, - sym_line_comment = 310, - sym__line_doc_comment_marker = 311, - sym__inner_line_doc_comment_marker = 312, - sym__outer_line_doc_comment_marker = 313, - sym_block_comment = 314, - sym__block_doc_comment_marker = 315, - aux_sym_source_file_repeat1 = 316, - aux_sym_macro_definition_repeat1 = 317, - aux_sym_token_tree_pattern_repeat1 = 318, - aux_sym_token_tree_repeat1 = 319, - aux_sym__non_special_token_repeat1 = 320, - aux_sym_declaration_list_repeat1 = 321, - aux_sym_enum_variant_list_repeat1 = 322, - aux_sym_enum_variant_list_repeat2 = 323, - aux_sym_field_declaration_list_repeat1 = 324, - aux_sym_ordered_field_declaration_list_repeat1 = 325, - aux_sym_function_modifiers_repeat1 = 326, - aux_sym_where_clause_repeat1 = 327, - aux_sym_trait_bounds_repeat1 = 328, - aux_sym_type_parameters_repeat1 = 329, - aux_sym_use_list_repeat1 = 330, - aux_sym_parameters_repeat1 = 331, - aux_sym_for_lifetimes_repeat1 = 332, - aux_sym_tuple_type_repeat1 = 333, - aux_sym_type_arguments_repeat1 = 334, - aux_sym_delim_token_tree_repeat1 = 335, - aux_sym_arguments_repeat1 = 336, - aux_sym_tuple_expression_repeat1 = 337, - aux_sym_field_initializer_list_repeat1 = 338, - aux_sym_match_block_repeat1 = 339, - aux_sym_match_arm_repeat1 = 340, - aux_sym_closure_parameters_repeat1 = 341, - aux_sym_tuple_pattern_repeat1 = 342, - aux_sym_slice_pattern_repeat1 = 343, - aux_sym_struct_pattern_repeat1 = 344, - aux_sym_string_literal_repeat1 = 345, - alias_sym_field_identifier = 346, - alias_sym_let_chain = 347, - alias_sym_shorthand_field_identifier = 348, - alias_sym_type_identifier = 349, + sym_generic_pattern = 292, + sym_tuple_pattern = 293, + sym_slice_pattern = 294, + sym_tuple_struct_pattern = 295, + sym_struct_pattern = 296, + sym_field_pattern = 297, + sym_remaining_field_pattern = 298, + sym_mut_pattern = 299, + sym_range_pattern = 300, + sym_ref_pattern = 301, + sym_captured_pattern = 302, + sym_reference_pattern = 303, + sym_or_pattern = 304, + sym__literal = 305, + sym__literal_pattern = 306, + sym_negative_literal = 307, + sym_string_literal = 308, + sym_raw_string_literal = 309, + sym_boolean_literal = 310, + sym_line_comment = 311, + sym__line_doc_comment_marker = 312, + sym__inner_line_doc_comment_marker = 313, + sym__outer_line_doc_comment_marker = 314, + sym_block_comment = 315, + sym__block_doc_comment_marker = 316, + aux_sym_source_file_repeat1 = 317, + aux_sym_macro_definition_repeat1 = 318, + aux_sym_token_tree_pattern_repeat1 = 319, + aux_sym_token_tree_repeat1 = 320, + aux_sym__non_special_token_repeat1 = 321, + aux_sym_declaration_list_repeat1 = 322, + aux_sym_enum_variant_list_repeat1 = 323, + aux_sym_enum_variant_list_repeat2 = 324, + aux_sym_field_declaration_list_repeat1 = 325, + aux_sym_ordered_field_declaration_list_repeat1 = 326, + aux_sym_function_modifiers_repeat1 = 327, + aux_sym_where_clause_repeat1 = 328, + aux_sym_trait_bounds_repeat1 = 329, + aux_sym_type_parameters_repeat1 = 330, + aux_sym_use_list_repeat1 = 331, + aux_sym_parameters_repeat1 = 332, + aux_sym_for_lifetimes_repeat1 = 333, + aux_sym_tuple_type_repeat1 = 334, + aux_sym_type_arguments_repeat1 = 335, + aux_sym_delim_token_tree_repeat1 = 336, + aux_sym_arguments_repeat1 = 337, + aux_sym_tuple_expression_repeat1 = 338, + aux_sym_field_initializer_list_repeat1 = 339, + aux_sym_match_block_repeat1 = 340, + aux_sym_match_arm_repeat1 = 341, + aux_sym_closure_parameters_repeat1 = 342, + aux_sym_tuple_pattern_repeat1 = 343, + aux_sym_slice_pattern_repeat1 = 344, + aux_sym_struct_pattern_repeat1 = 345, + aux_sym_string_literal_repeat1 = 346, + alias_sym_field_identifier = 347, + alias_sym_let_chain = 348, + alias_sym_shorthand_field_identifier = 349, + alias_sym_type_identifier = 350, }; static const char * const ts_symbol_names[] = { @@ -660,6 +665,7 @@ static const char * const ts_symbol_names[] = { [sym_try_block] = "try_block", [sym_block] = "block", [sym__pattern] = "_pattern", + [sym_generic_pattern] = "generic_pattern", [sym_tuple_pattern] = "tuple_pattern", [sym_slice_pattern] = "slice_pattern", [sym_tuple_struct_pattern] = "tuple_struct_pattern", @@ -1013,6 +1019,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_try_block] = sym_try_block, [sym_block] = sym_block, [sym__pattern] = sym__pattern, + [sym_generic_pattern] = sym_generic_pattern, [sym_tuple_pattern] = sym_tuple_pattern, [sym_slice_pattern] = sym_slice_pattern, [sym_tuple_struct_pattern] = sym_tuple_struct_pattern, @@ -2245,6 +2252,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_generic_pattern] = { + .visible = true, + .named = true, + }, [sym_tuple_pattern] = { .visible = true, .named = true, @@ -2550,7 +2561,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, @@ -2606,222 +2617,223 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [57] = {.index = 57, .length = 1}, [58] = {.index = 57, .length = 1}, [59] = {.index = 58, .length = 1}, - [61] = {.index = 59, .length = 2}, - [62] = {.index = 57, .length = 1}, - [63] = {.index = 61, .length = 1}, + [61] = {.index = 59, .length = 1}, + [62] = {.index = 60, .length = 2}, + [63] = {.index = 57, .length = 1}, [64] = {.index = 62, .length = 1}, [65] = {.index = 63, .length = 1}, - [66] = {.index = 64, .length = 2}, - [67] = {.index = 66, .length = 2}, - [68] = {.index = 66, .length = 2}, - [69] = {.index = 68, .length = 1}, - [70] = {.index = 68, .length = 1}, - [71] = {.index = 58, .length = 1}, - [72] = {.index = 69, .length = 2}, - [73] = {.index = 71, .length = 3}, - [74] = {.index = 74, .length = 2}, - [75] = {.index = 76, .length = 3}, - [76] = {.index = 79, .length = 3}, - [78] = {.index = 82, .length = 2}, - [79] = {.index = 82, .length = 2}, - [80] = {.index = 84, .length = 2}, - [81] = {.index = 86, .length = 3}, - [82] = {.index = 89, .length = 2}, - [83] = {.index = 91, .length = 1}, - [84] = {.index = 92, .length = 2}, - [85] = {.index = 94, .length = 2}, - [86] = {.index = 96, .length = 3}, - [87] = {.index = 99, .length = 2}, - [88] = {.index = 101, .length = 2}, - [89] = {.index = 103, .length = 2}, - [90] = {.index = 105, .length = 2}, - [91] = {.index = 107, .length = 2}, - [92] = {.index = 105, .length = 2}, - [93] = {.index = 107, .length = 2}, - [94] = {.index = 109, .length = 1}, - [95] = {.index = 103, .length = 2}, - [96] = {.index = 109, .length = 1}, + [66] = {.index = 64, .length = 1}, + [67] = {.index = 65, .length = 2}, + [68] = {.index = 67, .length = 2}, + [69] = {.index = 67, .length = 2}, + [70] = {.index = 69, .length = 1}, + [71] = {.index = 69, .length = 1}, + [72] = {.index = 58, .length = 1}, + [73] = {.index = 70, .length = 2}, + [74] = {.index = 72, .length = 3}, + [75] = {.index = 75, .length = 2}, + [76] = {.index = 77, .length = 3}, + [77] = {.index = 80, .length = 3}, + [79] = {.index = 83, .length = 2}, + [80] = {.index = 83, .length = 2}, + [81] = {.index = 85, .length = 2}, + [82] = {.index = 87, .length = 3}, + [83] = {.index = 90, .length = 2}, + [84] = {.index = 92, .length = 1}, + [85] = {.index = 93, .length = 2}, + [86] = {.index = 95, .length = 2}, + [87] = {.index = 97, .length = 3}, + [88] = {.index = 100, .length = 2}, + [89] = {.index = 102, .length = 2}, + [90] = {.index = 104, .length = 2}, + [91] = {.index = 106, .length = 2}, + [92] = {.index = 108, .length = 2}, + [93] = {.index = 106, .length = 2}, + [94] = {.index = 108, .length = 2}, + [95] = {.index = 110, .length = 1}, + [96] = {.index = 104, .length = 2}, [97] = {.index = 110, .length = 1}, - [98] = {.index = 111, .length = 3}, - [99] = {.index = 114, .length = 1}, + [98] = {.index = 111, .length = 1}, + [99] = {.index = 112, .length = 3}, [100] = {.index = 115, .length = 1}, - [101] = {.index = 116, .length = 2}, - [102] = {.index = 3, .length = 1}, - [103] = {.index = 118, .length = 1}, - [104] = {.index = 119, .length = 2}, - [105] = {.index = 121, .length = 1}, - [106] = {.index = 121, .length = 1}, - [107] = {.index = 122, .length = 3}, - [108] = {.index = 125, .length = 1}, - [109] = {.index = 122, .length = 3}, - [110] = {.index = 18, .length = 1}, - [111] = {.index = 126, .length = 2}, - [112] = {.index = 128, .length = 3}, - [113] = {.index = 131, .length = 3}, - [114] = {.index = 134, .length = 4}, - [115] = {.index = 138, .length = 3}, - [116] = {.index = 141, .length = 3}, - [117] = {.index = 144, .length = 2}, - [118] = {.index = 146, .length = 2}, - [119] = {.index = 146, .length = 2}, - [121] = {.index = 148, .length = 2}, - [122] = {.index = 150, .length = 3}, - [123] = {.index = 153, .length = 3}, - [124] = {.index = 148, .length = 2}, - [125] = {.index = 150, .length = 3}, - [126] = {.index = 156, .length = 2}, - [128] = {.index = 158, .length = 3}, - [129] = {.index = 161, .length = 3}, - [130] = {.index = 164, .length = 4}, - [131] = {.index = 126, .length = 2}, - [132] = {.index = 168, .length = 3}, - [133] = {.index = 171, .length = 2}, - [134] = {.index = 173, .length = 3}, - [135] = {.index = 176, .length = 2}, - [136] = {.index = 178, .length = 2}, - [137] = {.index = 180, .length = 3}, - [138] = {.index = 183, .length = 3}, - [139] = {.index = 186, .length = 2}, - [140] = {.index = 186, .length = 2}, - [141] = {.index = 188, .length = 2}, - [142] = {.index = 190, .length = 3}, - [143] = {.index = 193, .length = 2}, - [144] = {.index = 195, .length = 2}, - [145] = {.index = 197, .length = 1}, - [146] = {.index = 198, .length = 2}, - [147] = {.index = 200, .length = 1}, - [148] = {.index = 201, .length = 2}, - [149] = {.index = 109, .length = 1}, - [150] = {.index = 203, .length = 2}, - [151] = {.index = 205, .length = 2}, - [152] = {.index = 207, .length = 1}, - [153] = {.index = 208, .length = 2}, - [154] = {.index = 210, .length = 3}, - [155] = {.index = 210, .length = 3}, - [156] = {.index = 213, .length = 2}, - [157] = {.index = 215, .length = 4}, - [158] = {.index = 219, .length = 3}, - [159] = {.index = 222, .length = 4}, - [160] = {.index = 226, .length = 2}, - [161] = {.index = 228, .length = 3}, - [162] = {.index = 226, .length = 2}, - [163] = {.index = 228, .length = 3}, - [164] = {.index = 231, .length = 3}, - [165] = {.index = 234, .length = 3}, - [166] = {.index = 237, .length = 4}, - [167] = {.index = 234, .length = 3}, - [168] = {.index = 237, .length = 4}, - [169] = {.index = 231, .length = 3}, - [170] = {.index = 241, .length = 2}, - [171] = {.index = 243, .length = 2}, - [172] = {.index = 245, .length = 2}, - [173] = {.index = 247, .length = 2}, - [174] = {.index = 249, .length = 1}, - [175] = {.index = 250, .length = 2}, - [176] = {.index = 252, .length = 3}, - [177] = {.index = 255, .length = 2}, - [178] = {.index = 257, .length = 2}, - [179] = {.index = 201, .length = 2}, - [180] = {.index = 259, .length = 4}, - [181] = {.index = 263, .length = 3}, - [182] = {.index = 266, .length = 3}, - [183] = {.index = 269, .length = 3}, - [184] = {.index = 272, .length = 3}, - [185] = {.index = 275, .length = 4}, - [186] = {.index = 279, .length = 2}, - [187] = {.index = 281, .length = 2}, - [188] = {.index = 281, .length = 2}, - [189] = {.index = 283, .length = 3}, - [190] = {.index = 286, .length = 4}, - [191] = {.index = 290, .length = 3}, - [192] = {.index = 250, .length = 2}, - [193] = {.index = 293, .length = 2}, - [194] = {.index = 295, .length = 3}, - [195] = {.index = 298, .length = 3}, - [196] = {.index = 301, .length = 2}, - [197] = {.index = 303, .length = 3}, - [198] = {.index = 201, .length = 2}, - [199] = {.index = 306, .length = 3}, - [200] = {.index = 309, .length = 2}, - [201] = {.index = 311, .length = 2}, - [202] = {.index = 313, .length = 3}, - [203] = {.index = 316, .length = 3}, - [204] = {.index = 319, .length = 2}, - [205] = {.index = 321, .length = 4}, - [206] = {.index = 325, .length = 5}, - [207] = {.index = 330, .length = 4}, - [208] = {.index = 334, .length = 3}, - [209] = {.index = 334, .length = 3}, - [210] = {.index = 337, .length = 3}, - [211] = {.index = 340, .length = 4}, - [212] = {.index = 337, .length = 3}, - [213] = {.index = 340, .length = 4}, - [214] = {.index = 344, .length = 4}, - [215] = {.index = 344, .length = 4}, - [216] = {.index = 348, .length = 3}, - [217] = {.index = 351, .length = 3}, - [218] = {.index = 354, .length = 3}, - [219] = {.index = 357, .length = 2}, - [220] = {.index = 359, .length = 2}, - [221] = {.index = 126, .length = 2}, - [222] = {.index = 361, .length = 2}, - [223] = {.index = 363, .length = 3}, - [224] = {.index = 361, .length = 2}, - [225] = {.index = 363, .length = 3}, - [226] = {.index = 366, .length = 3}, - [227] = {.index = 369, .length = 4}, - [228] = {.index = 366, .length = 3}, - [229] = {.index = 369, .length = 4}, - [230] = {.index = 373, .length = 4}, - [231] = {.index = 377, .length = 4}, - [232] = {.index = 381, .length = 3}, - [233] = {.index = 384, .length = 4}, - [234] = {.index = 388, .length = 3}, - [235] = {.index = 391, .length = 3}, - [236] = {.index = 394, .length = 3}, - [237] = {.index = 397, .length = 4}, - [238] = {.index = 401, .length = 2}, - [239] = {.index = 403, .length = 3}, - [240] = {.index = 406, .length = 4}, - [241] = {.index = 410, .length = 3}, - [242] = {.index = 413, .length = 3}, - [243] = {.index = 416, .length = 2}, - [244] = {.index = 418, .length = 3}, - [245] = {.index = 421, .length = 5}, - [246] = {.index = 426, .length = 4}, - [247] = {.index = 426, .length = 4}, - [248] = {.index = 430, .length = 3}, - [249] = {.index = 433, .length = 3}, - [250] = {.index = 436, .length = 3}, - [251] = {.index = 439, .length = 3}, - [252] = {.index = 442, .length = 2}, - [253] = {.index = 444, .length = 3}, - [254] = {.index = 444, .length = 3}, - [255] = {.index = 447, .length = 3}, - [256] = {.index = 450, .length = 4}, - [257] = {.index = 447, .length = 3}, - [258] = {.index = 450, .length = 4}, - [259] = {.index = 454, .length = 4}, - [260] = {.index = 454, .length = 4}, - [261] = {.index = 458, .length = 4}, - [262] = {.index = 462, .length = 5}, - [263] = {.index = 467, .length = 4}, - [264] = {.index = 471, .length = 2}, - [265] = {.index = 473, .length = 4}, - [266] = {.index = 477, .length = 4}, - [267] = {.index = 481, .length = 3}, - [268] = {.index = 484, .length = 4}, - [269] = {.index = 488, .length = 4}, - [270] = {.index = 492, .length = 3}, - [271] = {.index = 495, .length = 4}, - [272] = {.index = 495, .length = 4}, - [273] = {.index = 499, .length = 5}, - [274] = {.index = 504, .length = 4}, - [275] = {.index = 508, .length = 5}, - [276] = {.index = 513, .length = 4}, - [277] = {.index = 517, .length = 4}, - [278] = {.index = 521, .length = 3}, - [279] = {.index = 524, .length = 5}, + [101] = {.index = 116, .length = 1}, + [102] = {.index = 117, .length = 2}, + [103] = {.index = 3, .length = 1}, + [104] = {.index = 119, .length = 1}, + [105] = {.index = 120, .length = 2}, + [106] = {.index = 122, .length = 1}, + [107] = {.index = 122, .length = 1}, + [108] = {.index = 123, .length = 3}, + [109] = {.index = 126, .length = 1}, + [110] = {.index = 123, .length = 3}, + [111] = {.index = 18, .length = 1}, + [112] = {.index = 127, .length = 2}, + [113] = {.index = 129, .length = 3}, + [114] = {.index = 132, .length = 3}, + [115] = {.index = 135, .length = 4}, + [116] = {.index = 139, .length = 3}, + [117] = {.index = 142, .length = 3}, + [118] = {.index = 145, .length = 2}, + [119] = {.index = 147, .length = 2}, + [120] = {.index = 147, .length = 2}, + [122] = {.index = 149, .length = 2}, + [123] = {.index = 151, .length = 3}, + [124] = {.index = 154, .length = 3}, + [125] = {.index = 149, .length = 2}, + [126] = {.index = 151, .length = 3}, + [127] = {.index = 157, .length = 2}, + [129] = {.index = 159, .length = 3}, + [130] = {.index = 162, .length = 3}, + [131] = {.index = 165, .length = 4}, + [132] = {.index = 127, .length = 2}, + [133] = {.index = 169, .length = 3}, + [134] = {.index = 172, .length = 2}, + [135] = {.index = 174, .length = 3}, + [136] = {.index = 177, .length = 2}, + [137] = {.index = 179, .length = 2}, + [138] = {.index = 181, .length = 3}, + [139] = {.index = 184, .length = 3}, + [140] = {.index = 187, .length = 2}, + [141] = {.index = 187, .length = 2}, + [142] = {.index = 189, .length = 2}, + [143] = {.index = 191, .length = 3}, + [144] = {.index = 194, .length = 2}, + [145] = {.index = 196, .length = 2}, + [146] = {.index = 198, .length = 1}, + [147] = {.index = 199, .length = 2}, + [148] = {.index = 201, .length = 1}, + [149] = {.index = 202, .length = 2}, + [150] = {.index = 110, .length = 1}, + [151] = {.index = 204, .length = 2}, + [152] = {.index = 206, .length = 2}, + [153] = {.index = 208, .length = 1}, + [154] = {.index = 209, .length = 2}, + [155] = {.index = 211, .length = 3}, + [156] = {.index = 211, .length = 3}, + [157] = {.index = 214, .length = 2}, + [158] = {.index = 216, .length = 4}, + [159] = {.index = 220, .length = 3}, + [160] = {.index = 223, .length = 4}, + [161] = {.index = 227, .length = 2}, + [162] = {.index = 229, .length = 3}, + [163] = {.index = 227, .length = 2}, + [164] = {.index = 229, .length = 3}, + [165] = {.index = 232, .length = 3}, + [166] = {.index = 235, .length = 3}, + [167] = {.index = 238, .length = 4}, + [168] = {.index = 235, .length = 3}, + [169] = {.index = 238, .length = 4}, + [170] = {.index = 232, .length = 3}, + [171] = {.index = 242, .length = 2}, + [172] = {.index = 244, .length = 2}, + [173] = {.index = 246, .length = 2}, + [174] = {.index = 248, .length = 2}, + [175] = {.index = 250, .length = 1}, + [176] = {.index = 251, .length = 2}, + [177] = {.index = 253, .length = 3}, + [178] = {.index = 256, .length = 2}, + [179] = {.index = 258, .length = 2}, + [180] = {.index = 202, .length = 2}, + [181] = {.index = 260, .length = 4}, + [182] = {.index = 264, .length = 3}, + [183] = {.index = 267, .length = 3}, + [184] = {.index = 270, .length = 3}, + [185] = {.index = 273, .length = 3}, + [186] = {.index = 276, .length = 4}, + [187] = {.index = 280, .length = 2}, + [188] = {.index = 282, .length = 2}, + [189] = {.index = 282, .length = 2}, + [190] = {.index = 284, .length = 3}, + [191] = {.index = 287, .length = 4}, + [192] = {.index = 291, .length = 3}, + [193] = {.index = 251, .length = 2}, + [194] = {.index = 294, .length = 2}, + [195] = {.index = 296, .length = 3}, + [196] = {.index = 299, .length = 3}, + [197] = {.index = 302, .length = 2}, + [198] = {.index = 304, .length = 3}, + [199] = {.index = 202, .length = 2}, + [200] = {.index = 307, .length = 3}, + [201] = {.index = 310, .length = 2}, + [202] = {.index = 312, .length = 2}, + [203] = {.index = 314, .length = 3}, + [204] = {.index = 317, .length = 3}, + [205] = {.index = 320, .length = 2}, + [206] = {.index = 322, .length = 4}, + [207] = {.index = 326, .length = 5}, + [208] = {.index = 331, .length = 4}, + [209] = {.index = 335, .length = 3}, + [210] = {.index = 335, .length = 3}, + [211] = {.index = 338, .length = 3}, + [212] = {.index = 341, .length = 4}, + [213] = {.index = 338, .length = 3}, + [214] = {.index = 341, .length = 4}, + [215] = {.index = 345, .length = 4}, + [216] = {.index = 345, .length = 4}, + [217] = {.index = 349, .length = 3}, + [218] = {.index = 352, .length = 3}, + [219] = {.index = 355, .length = 3}, + [220] = {.index = 358, .length = 2}, + [221] = {.index = 360, .length = 2}, + [222] = {.index = 127, .length = 2}, + [223] = {.index = 362, .length = 2}, + [224] = {.index = 364, .length = 3}, + [225] = {.index = 362, .length = 2}, + [226] = {.index = 364, .length = 3}, + [227] = {.index = 367, .length = 3}, + [228] = {.index = 370, .length = 4}, + [229] = {.index = 367, .length = 3}, + [230] = {.index = 370, .length = 4}, + [231] = {.index = 374, .length = 4}, + [232] = {.index = 378, .length = 4}, + [233] = {.index = 382, .length = 3}, + [234] = {.index = 385, .length = 4}, + [235] = {.index = 389, .length = 3}, + [236] = {.index = 392, .length = 3}, + [237] = {.index = 395, .length = 3}, + [238] = {.index = 398, .length = 4}, + [239] = {.index = 402, .length = 2}, + [240] = {.index = 404, .length = 3}, + [241] = {.index = 407, .length = 4}, + [242] = {.index = 411, .length = 3}, + [243] = {.index = 414, .length = 3}, + [244] = {.index = 417, .length = 2}, + [245] = {.index = 419, .length = 3}, + [246] = {.index = 422, .length = 5}, + [247] = {.index = 427, .length = 4}, + [248] = {.index = 427, .length = 4}, + [249] = {.index = 431, .length = 3}, + [250] = {.index = 434, .length = 3}, + [251] = {.index = 437, .length = 3}, + [252] = {.index = 440, .length = 3}, + [253] = {.index = 443, .length = 2}, + [254] = {.index = 445, .length = 3}, + [255] = {.index = 445, .length = 3}, + [256] = {.index = 448, .length = 3}, + [257] = {.index = 451, .length = 4}, + [258] = {.index = 448, .length = 3}, + [259] = {.index = 451, .length = 4}, + [260] = {.index = 455, .length = 4}, + [261] = {.index = 455, .length = 4}, + [262] = {.index = 459, .length = 4}, + [263] = {.index = 463, .length = 5}, + [264] = {.index = 468, .length = 4}, + [265] = {.index = 472, .length = 2}, + [266] = {.index = 474, .length = 4}, + [267] = {.index = 478, .length = 4}, + [268] = {.index = 482, .length = 3}, + [269] = {.index = 485, .length = 4}, + [270] = {.index = 489, .length = 4}, + [271] = {.index = 493, .length = 3}, + [272] = {.index = 496, .length = 4}, + [273] = {.index = 496, .length = 4}, + [274] = {.index = 500, .length = 5}, + [275] = {.index = 505, .length = 4}, + [276] = {.index = 509, .length = 5}, + [277] = {.index = 514, .length = 4}, + [278] = {.index = 518, .length = 4}, + [279] = {.index = 522, .length = 3}, + [280] = {.index = 525, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2922,642 +2934,644 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [58] = {field_name, 0}, [59] = + {field_type_arguments, 2}, + [60] = {field_pattern, 0}, {field_type, 2}, - [61] = - {field_element, 1}, [62] = - {field_type, 2}, + {field_element, 1}, [63] = - {field_parameters, 2}, + {field_type, 2}, [64] = + {field_parameters, 2}, + [65] = {field_alias, 2}, {field_type, 0}, - [66] = + [67] = {field_parameters, 2}, {field_trait, 1}, - [68] = - {field_arguments, 1}, [69] = + {field_arguments, 1}, + [70] = {field_body, 3}, {field_name, 1}, - [71] = + [72] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [74] = + [75] = {field_name, 1}, {field_parameters, 2}, - [76] = + [77] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [79] = + [80] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [82] = + [83] = {field_bounds, 1}, {field_left, 0}, - [84] = + [85] = {field_type, 2}, {field_type_parameters, 1}, - [86] = + [87] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [89] = + [90] = {field_body, 3}, {field_type, 1}, - [91] = - {field_pattern, 2}, [92] = + {field_pattern, 2}, + [93] = {field_body, 3}, {field_parameters, 2}, - [94] = + [95] = {field_name, 1}, {field_type_parameters, 2}, - [96] = + [97] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [99] = + [100] = {field_bounds, 2}, {field_name, 1}, - [101] = + [102] = {field_body, 3}, {field_type, 2}, - [103] = + [104] = {field_body, 3}, {field_name, 2}, - [105] = + [106] = {field_list, 2}, {field_path, 0}, - [107] = + [108] = {field_alias, 2}, {field_path, 0}, - [109] = - {field_name, 2}, [110] = - {field_argument, 2}, + {field_name, 2}, [111] = + {field_argument, 2}, + [112] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [114] = - {field_body, 3}, [115] = - {field_length, 3}, + {field_body, 3}, [116] = + {field_length, 3}, + [117] = {field_pattern, 1}, {field_type, 3}, - [118] = - {field_type, 3}, [119] = + {field_type, 3}, + [120] = {field_parameters, 1}, {field_return_type, 3}, - [121] = - {field_trait, 3}, [122] = + {field_trait, 3}, + [123] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [125] = - {field_parameters, 3}, [126] = + {field_parameters, 3}, + [127] = {field_name, 1}, {field_type, 3}, - [128] = + [129] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [131] = + [132] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [134] = + [135] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [138] = + [139] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [141] = + [142] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [144] = + [145] = {field_pattern, 1}, {field_value, 3}, - [146] = + [147] = {field_default_type, 2}, {field_name, 0}, - [148] = + [149] = {field_trait, 1}, {field_type, 3}, - [150] = + [151] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [153] = + [154] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [156] = + [157] = {field_alternative, 3}, {field_pattern, 1}, - [158] = + [159] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [161] = + [162] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [164] = + [165] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [168] = + [169] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [171] = + [172] = {field_type, 3}, {field_type_parameters, 2}, - [173] = + [174] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [176] = + [177] = {field_body, 4}, {field_type, 2}, - [178] = + [179] = {field_body, 4}, {field_name, 2}, - [180] = + [181] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [183] = + [184] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [186] = + [187] = {field_field, 0}, {field_value, 2}, - [188] = + [189] = {field_name, 2}, {field_parameters, 3}, - [190] = + [191] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [193] = + [194] = {field_name, 2}, {field_type_parameters, 3}, - [195] = + [196] = {field_body, 4}, {field_name, 3}, - [197] = - {field_name, 3}, [198] = + {field_name, 3}, + [199] = {field_body, 4}, {field_condition, 3}, - [200] = - {field_length, 4}, [201] = + {field_length, 4}, + [202] = {field_name, 0}, {field_type, 2}, - [203] = + [204] = {field_name, 0}, {field_pattern, 2}, - [205] = + [206] = {field_element, 1}, {field_length, 3}, - [207] = - {field_pattern, 0}, [208] = + {field_pattern, 0}, + [209] = {field_parameters, 2}, {field_return_type, 4}, - [210] = + [211] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [213] = + [214] = {field_name, 0}, {field_value, 2}, - [215] = + [216] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [219] = + [220] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [222] = + [223] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [226] = + [227] = {field_trait, 2}, {field_type, 4}, - [228] = + [229] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [231] = + [232] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [234] = + [235] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [237] = + [238] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [241] = + [242] = {field_pattern, 2}, {field_type, 4}, - [243] = + [244] = {field_pattern, 2}, {field_value, 4}, - [245] = + [246] = {field_alternative, 4}, {field_pattern, 2}, - [247] = + [248] = {field_pattern, 0}, {field_value, 2}, - [249] = - {field_condition, 2}, [250] = + {field_condition, 2}, + [251] = {field_name, 2}, {field_type, 4}, - [252] = + [253] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [255] = + [256] = {field_type, 1}, {field_type, 2, .inherited = true}, - [257] = + [258] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [259] = + [260] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [263] = + [264] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [266] = + [267] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [269] = + [270] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [272] = + [273] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [275] = + [276] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [279] = + [280] = {field_alias, 4}, {field_name, 2}, - [281] = + [282] = {field_field, 1}, {field_value, 3}, - [283] = + [284] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [286] = + [287] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [290] = + [291] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [293] = + [294] = {field_body, 5}, {field_name, 3}, - [295] = + [296] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [298] = + [299] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [301] = + [302] = {field_name, 3}, {field_parameters, 4}, - [303] = + [304] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [306] = + [307] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [309] = + [310] = {field_name, 1}, {field_pattern, 3}, - [311] = + [312] = {field_parameters, 3}, {field_return_type, 5}, - [313] = + [314] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [316] = + [317] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [319] = + [320] = {field_name, 1}, {field_value, 3}, - [321] = + [322] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [325] = + [326] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [330] = + [331] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [334] = + [335] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [337] = + [338] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [340] = + [341] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [344] = + [345] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [348] = + [349] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [351] = + [352] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [354] = + [355] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [357] = + [358] = {field_name, 3}, {field_type, 5}, - [359] = + [360] = {field_type, 2}, {field_type, 3, .inherited = true}, - [361] = + [362] = {field_trait, 3}, {field_type, 5}, - [363] = + [364] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [366] = + [367] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [369] = + [370] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [373] = + [374] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [377] = + [378] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [381] = + [382] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [384] = + [385] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [388] = + [389] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [391] = + [392] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [394] = + [395] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [397] = + [398] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [401] = + [402] = {field_alias, 5}, {field_name, 3}, - [403] = + [404] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [406] = + [407] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [410] = + [411] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [413] = + [414] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [416] = + [417] = {field_name, 2}, {field_pattern, 4}, - [418] = + [419] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [421] = + [422] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [426] = + [427] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [430] = + [431] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [433] = + [434] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [436] = + [437] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [439] = + [440] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [442] = + [443] = {field_type, 3}, {field_type, 4, .inherited = true}, - [444] = + [445] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [447] = + [448] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [450] = + [451] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [454] = + [455] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [458] = + [459] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [462] = + [463] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [467] = + [468] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [471] = + [472] = {field_name, 4}, {field_type, 6}, - [473] = + [474] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [477] = + [478] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [481] = + [482] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [484] = + [485] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [488] = + [489] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [492] = + [493] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [495] = + [496] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [499] = + [500] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [504] = + [505] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [508] = + [509] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [513] = + [514] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [517] = + [518] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [521] = + [522] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [524] = + [525] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3642,81 +3656,78 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [60] = { [2] = sym_identifier, }, - [62] = { + [63] = { [0] = sym_generic_type, }, - [67] = { + [68] = { [1] = alias_sym_type_identifier, }, - [69] = { + [70] = { [0] = sym_identifier, }, - [72] = { - [1] = alias_sym_type_identifier, - }, [73] = { [1] = alias_sym_type_identifier, }, - [77] = { + [74] = { [1] = alias_sym_type_identifier, }, [78] = { - [0] = alias_sym_type_identifier, - }, - [85] = { [1] = alias_sym_type_identifier, }, + [79] = { + [0] = alias_sym_type_identifier, + }, [86] = { [1] = alias_sym_type_identifier, }, [87] = { [1] = alias_sym_type_identifier, }, - [89] = { - [2] = alias_sym_type_identifier, + [88] = { + [1] = alias_sym_type_identifier, }, [90] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [91] = { [0] = sym_identifier, }, - [96] = { + [92] = { + [0] = sym_identifier, + }, + [97] = { [2] = alias_sym_type_identifier, }, - [102] = { + [103] = { [1] = alias_sym_shorthand_field_identifier, }, - [105] = { + [106] = { [3] = alias_sym_type_identifier, }, - [107] = { + [108] = { [0] = alias_sym_type_identifier, }, - [110] = { + [111] = { [0] = sym_identifier, }, - [112] = { + [113] = { [1] = alias_sym_type_identifier, }, - [118] = { + [119] = { [0] = alias_sym_type_identifier, }, - [120] = { + [121] = { [2] = alias_sym_type_identifier, }, - [121] = { + [122] = { [1] = alias_sym_type_identifier, }, - [122] = { + [123] = { [1] = alias_sym_type_identifier, }, - [127] = { + [128] = { [3] = sym_identifier, }, - [129] = { - [1] = alias_sym_type_identifier, - }, [130] = { [1] = alias_sym_type_identifier, }, @@ -3726,8 +3737,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [132] = { [1] = alias_sym_type_identifier, }, - [136] = { - [2] = alias_sym_type_identifier, + [133] = { + [1] = alias_sym_type_identifier, }, [137] = { [2] = alias_sym_type_identifier, @@ -3735,53 +3746,53 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [138] = { [2] = alias_sym_type_identifier, }, - [140] = { + [139] = { + [2] = alias_sym_type_identifier, + }, + [141] = { [0] = alias_sym_field_identifier, }, - [143] = { + [144] = { [2] = alias_sym_type_identifier, }, - [144] = { + [145] = { [3] = alias_sym_type_identifier, }, - [148] = { + [149] = { [0] = alias_sym_type_identifier, }, - [149] = { + [150] = { [2] = alias_sym_shorthand_field_identifier, }, - [150] = { + [151] = { [0] = alias_sym_field_identifier, }, - [154] = { + [155] = { [1] = alias_sym_type_identifier, }, - [160] = { - [2] = alias_sym_type_identifier, - }, [161] = { [2] = alias_sym_type_identifier, }, - [164] = { - [1] = alias_sym_type_identifier, + [162] = { + [2] = alias_sym_type_identifier, }, [165] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, [166] = { [2] = alias_sym_type_identifier, }, - [179] = { - [0] = alias_sym_field_identifier, + [167] = { + [2] = alias_sym_type_identifier, }, [180] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [181] = { [1] = alias_sym_type_identifier, }, - [183] = { - [2] = alias_sym_type_identifier, + [182] = { + [1] = alias_sym_type_identifier, }, [184] = { [2] = alias_sym_type_identifier, @@ -3789,14 +3800,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [185] = { [2] = alias_sym_type_identifier, }, - [188] = { - [1] = alias_sym_field_identifier, - }, - [192] = { + [186] = { [2] = alias_sym_type_identifier, }, + [189] = { + [1] = alias_sym_field_identifier, + }, [193] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [194] = { [3] = alias_sym_type_identifier, @@ -3804,47 +3815,47 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [195] = { [3] = alias_sym_type_identifier, }, - [199] = { - [0] = alias_sym_type_identifier, + [196] = { + [3] = alias_sym_type_identifier, }, [200] = { + [0] = alias_sym_type_identifier, + }, + [201] = { [1] = alias_sym_field_identifier, }, - [208] = { + [209] = { [2] = alias_sym_type_identifier, }, - [210] = { + [211] = { [3] = alias_sym_type_identifier, }, - [211] = { + [212] = { [3] = alias_sym_type_identifier, }, - [214] = { + [215] = { [2] = alias_sym_type_identifier, }, - [221] = { - [1] = alias_sym_field_identifier, - }, [222] = { - [3] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [223] = { [3] = alias_sym_type_identifier, }, - [226] = { + [224] = { [3] = alias_sym_type_identifier, }, [227] = { [3] = alias_sym_type_identifier, }, - [230] = { - [2] = alias_sym_type_identifier, + [228] = { + [3] = alias_sym_type_identifier, }, - [234] = { + [231] = { [2] = alias_sym_type_identifier, }, [235] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [236] = { [3] = alias_sym_type_identifier, @@ -3852,28 +3863,31 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [237] = { [3] = alias_sym_type_identifier, }, - [243] = { + [238] = { + [3] = alias_sym_type_identifier, + }, + [244] = { [2] = alias_sym_field_identifier, }, - [246] = { + [247] = { [3] = alias_sym_type_identifier, }, - [253] = { + [254] = { [3] = alias_sym_type_identifier, }, - [255] = { + [256] = { [4] = alias_sym_type_identifier, }, - [256] = { + [257] = { [4] = alias_sym_type_identifier, }, - [259] = { + [260] = { [3] = alias_sym_type_identifier, }, - [265] = { + [266] = { [3] = alias_sym_type_identifier, }, - [271] = { + [272] = { [4] = alias_sym_type_identifier, }, }; @@ -3900,79 +3914,79 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 3, [10] = 2, - [11] = 5, - [12] = 7, + [11] = 11, + [12] = 6, [13] = 8, [14] = 3, [15] = 2, - [16] = 5, - [17] = 8, + [16] = 11, + [17] = 6, [18] = 3, [19] = 2, - [20] = 5, - [21] = 8, + [20] = 11, + [21] = 6, [22] = 3, [23] = 2, - [24] = 5, - [25] = 8, + [24] = 11, + [25] = 6, [26] = 3, [27] = 2, - [28] = 5, - [29] = 8, + [28] = 11, + [29] = 6, [30] = 3, [31] = 2, - [32] = 5, - [33] = 8, - [34] = 34, + [32] = 11, + [33] = 6, + [34] = 11, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 39, + [39] = 37, [40] = 38, [41] = 41, - [42] = 37, + [42] = 42, [43] = 35, - [44] = 39, + [44] = 41, [45] = 35, [46] = 36, - [47] = 41, + [47] = 42, [48] = 38, [49] = 37, [50] = 38, [51] = 37, [52] = 35, - [53] = 36, - [54] = 37, - [55] = 37, - [56] = 38, - [57] = 39, + [53] = 38, + [54] = 41, + [55] = 42, + [56] = 36, + [57] = 41, [58] = 38, - [59] = 37, - [60] = 41, - [61] = 38, - [62] = 37, - [63] = 39, - [64] = 38, - [65] = 41, - [66] = 36, + [59] = 36, + [60] = 42, + [61] = 37, + [62] = 38, + [63] = 37, + [64] = 37, + [65] = 38, + [66] = 37, [67] = 67, [68] = 68, [69] = 69, [70] = 70, - [71] = 69, + [71] = 71, [72] = 72, [73] = 73, [74] = 74, - [75] = 70, - [76] = 68, - [77] = 72, - [78] = 73, - [79] = 74, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 74, + [79] = 72, + [80] = 71, + [81] = 75, + [82] = 76, + [83] = 77, [84] = 84, [85] = 85, [86] = 86, @@ -3980,74 +3994,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [88] = 88, [89] = 89, [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, + [91] = 88, + [92] = 89, + [93] = 90, [94] = 94, - [95] = 88, - [96] = 89, - [97] = 87, + [95] = 95, + [96] = 96, + [97] = 84, [98] = 98, [99] = 99, [100] = 100, - [101] = 84, - [102] = 100, - [103] = 85, - [104] = 86, - [105] = 87, - [106] = 84, - [107] = 99, - [108] = 100, - [109] = 84, - [110] = 85, - [111] = 86, - [112] = 87, - [113] = 99, - [114] = 99, - [115] = 100, - [116] = 84, - [117] = 85, - [118] = 86, - [119] = 87, - [120] = 85, - [121] = 91, - [122] = 99, - [123] = 100, - [124] = 99, - [125] = 85, - [126] = 86, - [127] = 87, - [128] = 100, - [129] = 84, - [130] = 92, - [131] = 93, - [132] = 86, - [133] = 94, + [101] = 86, + [102] = 87, + [103] = 94, + [104] = 99, + [105] = 88, + [106] = 89, + [107] = 90, + [108] = 108, + [109] = 95, + [110] = 96, + [111] = 84, + [112] = 100, + [113] = 88, + [114] = 89, + [115] = 90, + [116] = 95, + [117] = 96, + [118] = 84, + [119] = 88, + [120] = 89, + [121] = 90, + [122] = 95, + [123] = 96, + [124] = 88, + [125] = 89, + [126] = 90, + [127] = 95, + [128] = 95, + [129] = 96, + [130] = 84, + [131] = 96, + [132] = 84, + [133] = 98, [134] = 134, [135] = 135, [136] = 136, [137] = 137, - [138] = 134, - [139] = 135, + [138] = 138, + [139] = 139, [140] = 140, - [141] = 141, - [142] = 140, - [143] = 143, - [144] = 141, + [141] = 138, + [142] = 135, + [143] = 139, + [144] = 134, [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 145, + [149] = 149, [150] = 150, - [151] = 151, + [151] = 149, [152] = 152, - [153] = 153, - [154] = 146, + [153] = 146, + [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 153, + [158] = 158, [159] = 159, [160] = 160, [161] = 161, @@ -4055,87 +4069,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 163, [164] = 164, [165] = 165, - [166] = 166, - [167] = 162, - [168] = 147, - [169] = 148, - [170] = 170, + [166] = 150, + [167] = 145, + [168] = 168, + [169] = 169, + [170] = 163, [171] = 171, [172] = 172, [173] = 173, [174] = 174, [175] = 175, - [176] = 176, + [176] = 162, [177] = 177, - [178] = 164, - [179] = 137, + [178] = 155, + [179] = 179, [180] = 180, [181] = 181, [182] = 182, [183] = 183, - [184] = 184, - [185] = 185, - [186] = 165, - [187] = 187, - [188] = 181, - [189] = 166, - [190] = 187, - [191] = 181, - [192] = 166, - [193] = 187, - [194] = 181, - [195] = 166, - [196] = 187, + [184] = 137, + [185] = 158, + [186] = 186, + [187] = 154, + [188] = 171, + [189] = 189, + [190] = 172, + [191] = 154, + [192] = 171, + [193] = 172, + [194] = 154, + [195] = 171, + [196] = 172, [197] = 197, - [198] = 198, - [199] = 177, - [200] = 180, + [198] = 177, + [199] = 181, + [200] = 183, [201] = 201, - [202] = 182, - [203] = 184, - [204] = 185, - [205] = 205, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 156, [206] = 206, [207] = 207, [208] = 208, - [209] = 209, + [209] = 174, [210] = 210, - [211] = 208, - [212] = 201, - [213] = 171, - [214] = 214, + [211] = 211, + [212] = 203, + [213] = 201, + [214] = 179, [215] = 215, - [216] = 215, + [216] = 216, [217] = 217, - [218] = 218, + [218] = 216, [219] = 219, [220] = 220, - [221] = 221, - [222] = 222, - [223] = 219, - [224] = 224, - [225] = 220, + [221] = 219, + [222] = 220, + [223] = 216, + [224] = 219, + [225] = 225, [226] = 226, [227] = 227, - [228] = 222, - [229] = 229, - [230] = 227, - [231] = 227, - [232] = 220, - [233] = 219, - [234] = 219, - [235] = 227, - [236] = 226, - [237] = 218, - [238] = 215, + [228] = 228, + [229] = 220, + [230] = 216, + [231] = 215, + [232] = 219, + [233] = 228, + [234] = 226, + [235] = 217, + [236] = 225, + [237] = 219, + [238] = 226, [239] = 220, - [240] = 215, - [241] = 221, - [242] = 227, - [243] = 219, - [244] = 217, - [245] = 224, - [246] = 220, + [240] = 226, + [241] = 227, + [242] = 242, + [243] = 220, + [244] = 244, + [245] = 216, + [246] = 242, [247] = 247, [248] = 248, [249] = 249, @@ -4152,22 +4166,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [260] = 260, [261] = 261, [262] = 262, - [263] = 256, + [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 256, + [267] = 267, [268] = 268, - [269] = 256, + [269] = 269, [270] = 270, [271] = 271, - [272] = 256, - [273] = 248, - [274] = 249, - [275] = 250, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, [276] = 276, - [277] = 251, - [278] = 252, + [277] = 277, + [278] = 256, [279] = 279, [280] = 280, [281] = 281, @@ -4177,153 +4191,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [285] = 285, [286] = 286, [287] = 287, - [288] = 253, - [289] = 254, - [290] = 255, - [291] = 276, - [292] = 276, - [293] = 256, - [294] = 247, - [295] = 295, - [296] = 296, - [297] = 247, - [298] = 298, - [299] = 268, - [300] = 270, - [301] = 271, - [302] = 248, - [303] = 249, - [304] = 250, - [305] = 251, - [306] = 252, - [307] = 253, - [308] = 276, - [309] = 254, - [310] = 255, - [311] = 311, - [312] = 256, - [313] = 257, - [314] = 314, - [315] = 315, - [316] = 296, - [317] = 257, - [318] = 318, - [319] = 247, - [320] = 320, - [321] = 268, - [322] = 270, - [323] = 271, - [324] = 248, - [325] = 249, - [326] = 250, - [327] = 251, - [328] = 252, - [329] = 253, - [330] = 254, - [331] = 255, - [332] = 332, - [333] = 256, - [334] = 334, - [335] = 257, - [336] = 336, - [337] = 337, - [338] = 315, - [339] = 339, - [340] = 259, - [341] = 295, + [288] = 247, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 279, + [294] = 251, + [295] = 280, + [296] = 281, + [297] = 282, + [298] = 283, + [299] = 284, + [300] = 285, + [301] = 286, + [302] = 287, + [303] = 289, + [304] = 276, + [305] = 256, + [306] = 290, + [307] = 279, + [308] = 280, + [309] = 281, + [310] = 282, + [311] = 283, + [312] = 284, + [313] = 285, + [314] = 286, + [315] = 247, + [316] = 289, + [317] = 290, + [318] = 291, + [319] = 319, + [320] = 256, + [321] = 279, + [322] = 280, + [323] = 281, + [324] = 282, + [325] = 283, + [326] = 284, + [327] = 285, + [328] = 286, + [329] = 287, + [330] = 247, + [331] = 289, + [332] = 290, + [333] = 291, + [334] = 291, + [335] = 290, + [336] = 290, + [337] = 290, + [338] = 290, + [339] = 276, + [340] = 340, + [341] = 341, [342] = 342, - [343] = 318, - [344] = 339, - [345] = 345, - [346] = 346, - [347] = 279, - [348] = 283, - [349] = 298, - [350] = 320, - [351] = 336, - [352] = 342, - [353] = 353, - [354] = 262, - [355] = 265, - [356] = 266, - [357] = 282, - [358] = 286, - [359] = 315, - [360] = 318, - [361] = 353, - [362] = 283, - [363] = 353, - [364] = 315, - [365] = 268, - [366] = 318, - [367] = 270, - [368] = 353, - [369] = 271, + [343] = 276, + [344] = 344, + [345] = 277, + [346] = 292, + [347] = 319, + [348] = 340, + [349] = 342, + [350] = 252, + [351] = 248, + [352] = 253, + [353] = 257, + [354] = 259, + [355] = 261, + [356] = 264, + [357] = 267, + [358] = 269, + [359] = 270, + [360] = 273, + [361] = 275, + [362] = 277, + [363] = 340, + [364] = 248, + [365] = 264, + [366] = 277, + [367] = 340, + [368] = 264, + [369] = 287, [370] = 370, [371] = 371, [372] = 372, - [373] = 373, + [373] = 371, [374] = 374, [375] = 375, - [376] = 376, - [377] = 377, + [376] = 370, + [377] = 371, [378] = 378, [379] = 379, - [380] = 380, + [380] = 370, [381] = 381, [382] = 382, [383] = 383, - [384] = 210, + [384] = 384, [385] = 385, [386] = 386, [387] = 387, - [388] = 209, - [389] = 376, - [390] = 380, + [388] = 211, + [389] = 389, + [390] = 390, [391] = 391, [392] = 392, [393] = 393, - [394] = 376, + [394] = 394, [395] = 395, - [396] = 396, + [396] = 386, [397] = 397, [398] = 398, [399] = 399, - [400] = 400, - [401] = 380, - [402] = 402, - [403] = 403, - [404] = 404, + [400] = 385, + [401] = 395, + [402] = 386, + [403] = 385, + [404] = 395, [405] = 405, [406] = 406, [407] = 407, - [408] = 406, - [409] = 399, + [408] = 408, + [409] = 409, [410] = 410, - [411] = 410, - [412] = 410, - [413] = 406, - [414] = 407, - [415] = 407, - [416] = 416, + [411] = 210, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 415, [417] = 417, - [418] = 417, - [419] = 417, + [418] = 415, + [419] = 414, [420] = 420, - [421] = 420, - [422] = 420, - [423] = 423, + [421] = 421, + [422] = 421, + [423] = 421, [424] = 424, [425] = 425, [426] = 426, - [427] = 426, - [428] = 428, - [429] = 429, - [430] = 428, - [431] = 425, - [432] = 428, - [433] = 429, - [434] = 429, + [427] = 427, + [428] = 425, + [429] = 427, + [430] = 427, + [431] = 426, + [432] = 432, + [433] = 425, + [434] = 432, [435] = 435, [436] = 435, [437] = 437, @@ -4331,55 +4345,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [439] = 439, [440] = 440, [441] = 441, - [442] = 441, - [443] = 441, + [442] = 440, + [443] = 440, [444] = 440, [445] = 439, - [446] = 439, - [447] = 440, - [448] = 448, - [449] = 449, - [450] = 448, - [451] = 448, - [452] = 332, - [453] = 373, - [454] = 370, - [455] = 371, - [456] = 374, - [457] = 372, - [458] = 381, - [459] = 404, - [460] = 398, - [461] = 395, - [462] = 462, - [463] = 396, + [446] = 441, + [447] = 439, + [448] = 441, + [449] = 441, + [450] = 439, + [451] = 451, + [452] = 452, + [453] = 451, + [454] = 451, + [455] = 451, + [456] = 341, + [457] = 457, + [458] = 372, + [459] = 457, + [460] = 374, + [461] = 375, + [462] = 457, + [463] = 457, [464] = 379, - [465] = 397, - [466] = 383, - [467] = 467, - [468] = 386, - [469] = 382, - [470] = 378, - [471] = 471, - [472] = 467, - [473] = 400, - [474] = 467, - [475] = 467, - [476] = 403, - [477] = 392, - [478] = 405, - [479] = 385, - [480] = 393, - [481] = 375, - [482] = 391, - [483] = 483, - [484] = 483, - [485] = 483, - [486] = 483, + [465] = 378, + [466] = 391, + [467] = 397, + [468] = 468, + [469] = 398, + [470] = 468, + [471] = 410, + [472] = 383, + [473] = 390, + [474] = 384, + [475] = 409, + [476] = 412, + [477] = 382, + [478] = 413, + [479] = 394, + [480] = 480, + [481] = 393, + [482] = 387, + [483] = 407, + [484] = 468, + [485] = 399, + [486] = 405, [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, + [488] = 381, + [489] = 468, + [490] = 389, [491] = 491, [492] = 492, [493] = 493, @@ -4519,7 +4533,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [627] = 627, [628] = 628, [629] = 629, - [630] = 374, + [630] = 630, [631] = 631, [632] = 632, [633] = 633, @@ -4535,17 +4549,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [643] = 643, [644] = 644, [645] = 645, - [646] = 370, + [646] = 646, [647] = 647, [648] = 648, - [649] = 373, - [650] = 372, - [651] = 371, + [649] = 649, + [650] = 650, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 656, + [656] = 375, [657] = 657, [658] = 658, [659] = 659, @@ -4561,19 +4575,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [669] = 669, [670] = 670, [671] = 671, - [672] = 672, + [672] = 378, [673] = 673, - [674] = 662, - [675] = 675, - [676] = 676, + [674] = 374, + [675] = 379, + [676] = 372, [677] = 677, [678] = 678, [679] = 679, [680] = 680, [681] = 681, [682] = 682, - [683] = 683, - [684] = 684, + [683] = 547, + [684] = 603, [685] = 685, [686] = 686, [687] = 687, @@ -4589,7 +4603,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [697] = 697, [698] = 698, [699] = 699, - [700] = 667, + [700] = 700, [701] = 701, [702] = 702, [703] = 703, @@ -4625,7 +4639,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [733] = 733, [734] = 734, [735] = 735, - [736] = 736, + [736] = 689, [737] = 737, [738] = 738, [739] = 739, @@ -4652,17 +4666,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [760] = 760, [761] = 761, [762] = 762, - [763] = 762, + [763] = 763, [764] = 764, [765] = 765, - [766] = 764, + [766] = 766, [767] = 767, - [768] = 765, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, - [772] = 772, - [773] = 773, + [772] = 770, + [773] = 768, [774] = 774, [775] = 775, [776] = 776, @@ -4672,654 +4686,654 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 783, + [783] = 779, [784] = 784, [785] = 784, - [786] = 780, - [787] = 781, - [788] = 788, + [786] = 786, + [787] = 787, + [788] = 782, [789] = 789, [790] = 790, [791] = 791, [792] = 792, - [793] = 793, + [793] = 789, [794] = 794, [795] = 795, - [796] = 794, + [796] = 796, [797] = 797, - [798] = 791, - [799] = 788, - [800] = 800, - [801] = 800, + [798] = 798, + [799] = 799, + [800] = 796, + [801] = 801, [802] = 797, - [803] = 795, + [803] = 798, [804] = 804, - [805] = 805, + [805] = 791, [806] = 806, - [807] = 807, + [807] = 794, [808] = 808, [809] = 809, [810] = 810, - [811] = 806, + [811] = 811, [812] = 812, [813] = 813, - [814] = 814, + [814] = 812, [815] = 815, [816] = 816, - [817] = 804, - [818] = 816, + [817] = 817, + [818] = 818, [819] = 819, - [820] = 814, + [820] = 813, [821] = 821, - [822] = 813, - [823] = 810, - [824] = 824, - [825] = 815, - [826] = 807, + [822] = 819, + [823] = 823, + [824] = 815, + [825] = 825, + [826] = 821, [827] = 827, - [828] = 805, - [829] = 809, - [830] = 808, - [831] = 827, - [832] = 804, - [833] = 827, - [834] = 804, - [835] = 827, - [836] = 836, - [837] = 837, - [838] = 837, - [839] = 839, - [840] = 837, - [841] = 837, + [828] = 828, + [829] = 808, + [830] = 816, + [831] = 817, + [832] = 827, + [833] = 833, + [834] = 828, + [835] = 810, + [836] = 825, + [837] = 810, + [838] = 825, + [839] = 810, + [840] = 825, + [841] = 841, [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, + [843] = 841, + [844] = 841, + [845] = 841, [846] = 846, [847] = 847, [848] = 848, - [849] = 846, - [850] = 845, - [851] = 845, - [852] = 847, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, [853] = 853, [854] = 854, - [855] = 855, - [856] = 848, - [857] = 857, - [858] = 858, - [859] = 848, - [860] = 858, - [861] = 842, - [862] = 847, - [863] = 846, - [864] = 848, + [855] = 851, + [856] = 849, + [857] = 846, + [858] = 852, + [859] = 859, + [860] = 852, + [861] = 848, + [862] = 851, + [863] = 863, + [864] = 864, [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, + [866] = 849, + [867] = 852, + [868] = 846, + [869] = 853, [870] = 870, [871] = 871, - [872] = 869, + [872] = 872, [873] = 873, - [874] = 874, - [875] = 867, + [874] = 873, + [875] = 875, [876] = 876, [877] = 877, [878] = 878, - [879] = 879, + [879] = 622, [880] = 880, - [881] = 881, + [881] = 880, [882] = 882, [883] = 883, - [884] = 884, + [884] = 882, [885] = 885, - [886] = 886, + [886] = 883, [887] = 887, - [888] = 873, + [888] = 888, [889] = 889, - [890] = 874, - [891] = 867, + [890] = 890, + [891] = 891, [892] = 892, - [893] = 883, + [893] = 893, [894] = 894, - [895] = 876, - [896] = 877, + [895] = 875, + [896] = 885, [897] = 897, - [898] = 878, - [899] = 587, - [900] = 900, - [901] = 884, + [898] = 898, + [899] = 899, + [900] = 871, + [901] = 872, [902] = 902, - [903] = 903, - [904] = 904, - [905] = 885, - [906] = 906, - [907] = 907, - [908] = 883, - [909] = 909, - [910] = 884, - [911] = 911, - [912] = 885, + [903] = 873, + [904] = 875, + [905] = 876, + [906] = 877, + [907] = 878, + [908] = 908, + [909] = 880, + [910] = 882, + [911] = 883, + [912] = 912, [913] = 913, - [914] = 873, + [914] = 885, [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 887, - [920] = 920, + [919] = 919, + [920] = 876, [921] = 921, [922] = 922, - [923] = 923, - [924] = 871, + [923] = 877, + [924] = 878, [925] = 925, [926] = 926, - [927] = 869, + [927] = 927, [928] = 928, [929] = 929, [930] = 930, - [931] = 871, - [932] = 877, - [933] = 879, - [934] = 934, - [935] = 935, - [936] = 936, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 899, + [935] = 871, + [936] = 870, [937] = 937, - [938] = 917, + [938] = 890, [939] = 939, [940] = 940, [941] = 941, - [942] = 942, - [943] = 886, - [944] = 871, - [945] = 945, - [946] = 892, - [947] = 903, - [948] = 929, - [949] = 869, + [942] = 899, + [943] = 871, + [944] = 944, + [945] = 939, + [946] = 940, + [947] = 872, + [948] = 948, + [949] = 949, [950] = 950, [951] = 951, [952] = 952, - [953] = 889, - [954] = 945, - [955] = 939, - [956] = 926, - [957] = 934, - [958] = 935, - [959] = 942, + [953] = 953, + [954] = 954, + [955] = 873, + [956] = 870, + [957] = 876, + [958] = 958, + [959] = 959, [960] = 960, [961] = 961, [962] = 962, - [963] = 906, - [964] = 897, - [965] = 911, - [966] = 918, - [967] = 870, - [968] = 881, - [969] = 882, - [970] = 950, - [971] = 900, - [972] = 951, - [973] = 921, - [974] = 922, - [975] = 923, - [976] = 925, - [977] = 930, - [978] = 866, - [979] = 979, - [980] = 980, - [981] = 981, + [963] = 963, + [964] = 939, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 954, + [972] = 967, + [973] = 897, + [974] = 949, + [975] = 958, + [976] = 960, + [977] = 961, + [978] = 962, + [979] = 963, + [980] = 966, + [981] = 968, [982] = 982, - [983] = 979, - [984] = 984, - [985] = 920, - [986] = 984, - [987] = 952, - [988] = 915, + [983] = 887, + [984] = 898, + [985] = 908, + [986] = 919, + [987] = 921, + [988] = 933, [989] = 989, - [990] = 981, - [991] = 894, - [992] = 917, - [993] = 886, - [994] = 982, - [995] = 995, - [996] = 960, - [997] = 874, - [998] = 962, - [999] = 999, - [1000] = 894, - [1001] = 873, - [1002] = 887, - [1003] = 867, - [1004] = 928, - [1005] = 961, - [1006] = 1006, - [1007] = 876, - [1008] = 878, - [1009] = 941, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, + [990] = 944, + [991] = 965, + [992] = 888, + [993] = 917, + [994] = 922, + [995] = 894, + [996] = 915, + [997] = 916, + [998] = 925, + [999] = 948, + [1000] = 950, + [1001] = 952, + [1002] = 953, + [1003] = 969, + [1004] = 989, + [1005] = 931, + [1006] = 932, + [1007] = 941, + [1008] = 951, + [1009] = 959, + [1010] = 913, + [1011] = 954, + [1012] = 899, [1013] = 1013, [1014] = 1014, - [1015] = 587, + [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 1019, + [1019] = 622, [1020] = 1020, - [1021] = 210, + [1021] = 1021, [1022] = 1022, - [1023] = 209, - [1024] = 402, - [1025] = 370, - [1026] = 387, - [1027] = 373, - [1028] = 1028, - [1029] = 374, - [1030] = 1030, - [1031] = 372, - [1032] = 371, - [1033] = 609, - [1034] = 1034, - [1035] = 705, - [1036] = 1036, - [1037] = 539, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 392, + [1028] = 406, + [1029] = 1029, + [1030] = 211, + [1031] = 210, + [1032] = 375, + [1033] = 378, + [1034] = 374, + [1035] = 379, + [1036] = 372, + [1037] = 1037, [1038] = 1038, - [1039] = 501, - [1040] = 1040, + [1039] = 633, + [1040] = 634, [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 612, + [1042] = 521, + [1043] = 559, + [1044] = 1044, [1045] = 1045, - [1046] = 1046, + [1046] = 725, [1047] = 1047, - [1048] = 1047, + [1048] = 1048, [1049] = 1049, [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 1051, + [1053] = 1053, [1054] = 1054, - [1055] = 1051, + [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1047, - [1059] = 1059, - [1060] = 1060, - [1061] = 1010, - [1062] = 1019, - [1063] = 1063, - [1064] = 1064, + [1058] = 1058, + [1059] = 1058, + [1060] = 1054, + [1061] = 1061, + [1062] = 1014, + [1063] = 1058, + [1064] = 1054, [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, + [1066] = 576, + [1067] = 762, + [1068] = 763, [1069] = 1069, [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 435, - [1080] = 736, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 671, - [1085] = 680, - [1086] = 1018, - [1087] = 1087, - [1088] = 1017, - [1089] = 1089, - [1090] = 1090, - [1091] = 1016, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 670, - [1098] = 332, - [1099] = 697, - [1100] = 698, - [1101] = 727, - [1102] = 743, - [1103] = 744, - [1104] = 749, - [1105] = 758, - [1106] = 595, - [1107] = 602, - [1108] = 608, - [1109] = 688, - [1110] = 693, - [1111] = 701, - [1112] = 703, - [1113] = 537, - [1114] = 558, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 590, - [1121] = 593, - [1122] = 594, - [1123] = 596, - [1124] = 597, - [1125] = 600, - [1126] = 603, - [1127] = 605, - [1128] = 606, - [1129] = 607, - [1130] = 610, - [1131] = 611, - [1132] = 613, - [1133] = 615, - [1134] = 625, - [1135] = 626, - [1136] = 627, - [1137] = 628, - [1138] = 761, - [1139] = 487, - [1140] = 631, - [1141] = 632, - [1142] = 634, - [1143] = 635, - [1144] = 636, - [1145] = 637, - [1146] = 638, - [1147] = 640, - [1148] = 641, - [1149] = 642, - [1150] = 643, - [1151] = 644, - [1152] = 645, - [1153] = 647, - [1154] = 653, - [1155] = 658, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 668, - [1161] = 669, - [1162] = 672, - [1163] = 675, - [1164] = 676, - [1165] = 677, - [1166] = 678, - [1167] = 679, - [1168] = 684, - [1169] = 685, - [1170] = 686, - [1171] = 689, - [1172] = 690, - [1173] = 691, - [1174] = 692, - [1175] = 695, - [1176] = 696, - [1177] = 702, - [1178] = 709, - [1179] = 710, - [1180] = 711, - [1181] = 712, - [1182] = 713, - [1183] = 714, - [1184] = 715, - [1185] = 716, - [1186] = 717, - [1187] = 718, - [1188] = 719, - [1189] = 720, - [1190] = 721, - [1191] = 722, - [1192] = 723, - [1193] = 724, - [1194] = 725, - [1195] = 726, - [1196] = 728, - [1197] = 729, - [1198] = 730, - [1199] = 731, - [1200] = 732, - [1201] = 733, - [1202] = 734, - [1203] = 735, - [1204] = 737, - [1205] = 738, - [1206] = 739, - [1207] = 741, - [1208] = 748, - [1209] = 750, + [1071] = 494, + [1072] = 495, + [1073] = 497, + [1074] = 498, + [1075] = 499, + [1076] = 500, + [1077] = 501, + [1078] = 502, + [1079] = 503, + [1080] = 504, + [1081] = 505, + [1082] = 506, + [1083] = 507, + [1084] = 508, + [1085] = 509, + [1086] = 510, + [1087] = 511, + [1088] = 512, + [1089] = 513, + [1090] = 514, + [1091] = 515, + [1092] = 518, + [1093] = 520, + [1094] = 737, + [1095] = 522, + [1096] = 523, + [1097] = 524, + [1098] = 525, + [1099] = 526, + [1100] = 527, + [1101] = 528, + [1102] = 529, + [1103] = 530, + [1104] = 531, + [1105] = 532, + [1106] = 533, + [1107] = 534, + [1108] = 535, + [1109] = 536, + [1110] = 537, + [1111] = 538, + [1112] = 539, + [1113] = 540, + [1114] = 541, + [1115] = 542, + [1116] = 543, + [1117] = 544, + [1118] = 545, + [1119] = 546, + [1120] = 1120, + [1121] = 1121, + [1122] = 548, + [1123] = 549, + [1124] = 550, + [1125] = 551, + [1126] = 552, + [1127] = 553, + [1128] = 554, + [1129] = 492, + [1130] = 556, + [1131] = 557, + [1132] = 558, + [1133] = 738, + [1134] = 560, + [1135] = 561, + [1136] = 562, + [1137] = 563, + [1138] = 564, + [1139] = 565, + [1140] = 566, + [1141] = 567, + [1142] = 568, + [1143] = 569, + [1144] = 570, + [1145] = 571, + [1146] = 572, + [1147] = 573, + [1148] = 574, + [1149] = 575, + [1150] = 1150, + [1151] = 577, + [1152] = 579, + [1153] = 580, + [1154] = 581, + [1155] = 582, + [1156] = 583, + [1157] = 584, + [1158] = 585, + [1159] = 586, + [1160] = 587, + [1161] = 588, + [1162] = 589, + [1163] = 590, + [1164] = 591, + [1165] = 592, + [1166] = 593, + [1167] = 594, + [1168] = 595, + [1169] = 596, + [1170] = 597, + [1171] = 598, + [1172] = 599, + [1173] = 600, + [1174] = 1174, + [1175] = 766, + [1176] = 555, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 693, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 341, + [1188] = 517, + [1189] = 519, + [1190] = 578, + [1191] = 606, + [1192] = 607, + [1193] = 699, + [1194] = 1194, + [1195] = 608, + [1196] = 612, + [1197] = 613, + [1198] = 615, + [1199] = 621, + [1200] = 700, + [1201] = 653, + [1202] = 654, + [1203] = 1203, + [1204] = 1204, + [1205] = 668, + [1206] = 669, + [1207] = 670, + [1208] = 673, + [1209] = 678, [1210] = 1210, [1211] = 1211, - [1212] = 760, - [1213] = 629, - [1214] = 601, - [1215] = 707, - [1216] = 708, - [1217] = 740, - [1218] = 742, - [1219] = 498, - [1220] = 581, - [1221] = 582, - [1222] = 583, - [1223] = 584, - [1224] = 585, - [1225] = 586, - [1226] = 588, - [1227] = 589, - [1228] = 591, - [1229] = 592, - [1230] = 1230, - [1231] = 599, - [1232] = 604, - [1233] = 614, - [1234] = 616, - [1235] = 617, - [1236] = 618, - [1237] = 619, - [1238] = 620, - [1239] = 621, - [1240] = 622, - [1241] = 623, - [1242] = 624, - [1243] = 633, - [1244] = 648, - [1245] = 652, - [1246] = 654, - [1247] = 655, - [1248] = 656, - [1249] = 657, - [1250] = 660, - [1251] = 661, - [1252] = 663, - [1253] = 664, - [1254] = 666, - [1255] = 673, - [1256] = 681, - [1257] = 682, - [1258] = 683, - [1259] = 687, - [1260] = 704, - [1261] = 706, - [1262] = 1262, - [1263] = 1263, - [1264] = 745, - [1265] = 746, - [1266] = 747, - [1267] = 751, - [1268] = 752, - [1269] = 753, - [1270] = 754, - [1271] = 755, - [1272] = 756, - [1273] = 757, - [1274] = 759, - [1275] = 488, - [1276] = 489, - [1277] = 490, - [1278] = 491, - [1279] = 492, - [1280] = 493, - [1281] = 494, - [1282] = 495, - [1283] = 496, - [1284] = 497, - [1285] = 499, - [1286] = 500, - [1287] = 502, - [1288] = 503, - [1289] = 504, - [1290] = 505, - [1291] = 506, - [1292] = 507, - [1293] = 508, - [1294] = 509, - [1295] = 510, - [1296] = 511, - [1297] = 512, - [1298] = 513, - [1299] = 514, - [1300] = 515, - [1301] = 516, - [1302] = 517, - [1303] = 518, - [1304] = 519, - [1305] = 520, - [1306] = 521, - [1307] = 522, - [1308] = 523, - [1309] = 524, - [1310] = 525, - [1311] = 526, - [1312] = 1312, - [1313] = 1313, - [1314] = 527, - [1315] = 528, - [1316] = 529, - [1317] = 530, - [1318] = 531, - [1319] = 532, - [1320] = 533, - [1321] = 534, - [1322] = 535, - [1323] = 536, - [1324] = 538, - [1325] = 540, - [1326] = 541, - [1327] = 542, - [1328] = 543, - [1329] = 544, - [1330] = 545, - [1331] = 546, - [1332] = 547, - [1333] = 548, - [1334] = 549, - [1335] = 550, - [1336] = 551, - [1337] = 552, - [1338] = 553, - [1339] = 554, - [1340] = 555, - [1341] = 556, - [1342] = 557, - [1343] = 559, - [1344] = 560, - [1345] = 561, - [1346] = 562, - [1347] = 563, - [1348] = 564, - [1349] = 565, - [1350] = 566, - [1351] = 567, - [1352] = 568, - [1353] = 569, - [1354] = 570, - [1355] = 571, - [1356] = 572, - [1357] = 573, - [1358] = 574, - [1359] = 575, - [1360] = 576, - [1361] = 577, - [1362] = 578, - [1363] = 579, - [1364] = 580, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 587, + [1212] = 679, + [1213] = 680, + [1214] = 1214, + [1215] = 681, + [1216] = 682, + [1217] = 685, + [1218] = 1218, + [1219] = 1219, + [1220] = 687, + [1221] = 714, + [1222] = 717, + [1223] = 719, + [1224] = 748, + [1225] = 761, + [1226] = 764, + [1227] = 1227, + [1228] = 765, + [1229] = 1229, + [1230] = 657, + [1231] = 493, + [1232] = 496, + [1233] = 622, + [1234] = 735, + [1235] = 1235, + [1236] = 601, + [1237] = 604, + [1238] = 1238, + [1239] = 1239, + [1240] = 705, + [1241] = 1241, + [1242] = 712, + [1243] = 1243, + [1244] = 713, + [1245] = 1245, + [1246] = 718, + [1247] = 1247, + [1248] = 720, + [1249] = 609, + [1250] = 611, + [1251] = 614, + [1252] = 616, + [1253] = 617, + [1254] = 618, + [1255] = 619, + [1256] = 620, + [1257] = 623, + [1258] = 624, + [1259] = 625, + [1260] = 626, + [1261] = 627, + [1262] = 628, + [1263] = 629, + [1264] = 630, + [1265] = 631, + [1266] = 632, + [1267] = 721, + [1268] = 635, + [1269] = 636, + [1270] = 637, + [1271] = 638, + [1272] = 639, + [1273] = 640, + [1274] = 641, + [1275] = 642, + [1276] = 643, + [1277] = 644, + [1278] = 645, + [1279] = 646, + [1280] = 647, + [1281] = 648, + [1282] = 649, + [1283] = 650, + [1284] = 651, + [1285] = 652, + [1286] = 655, + [1287] = 767, + [1288] = 1288, + [1289] = 658, + [1290] = 659, + [1291] = 660, + [1292] = 724, + [1293] = 661, + [1294] = 662, + [1295] = 663, + [1296] = 1024, + [1297] = 664, + [1298] = 665, + [1299] = 666, + [1300] = 667, + [1301] = 435, + [1302] = 1302, + [1303] = 671, + [1304] = 677, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 722, + [1309] = 1309, + [1310] = 726, + [1311] = 1311, + [1312] = 686, + [1313] = 688, + [1314] = 1314, + [1315] = 1315, + [1316] = 692, + [1317] = 1317, + [1318] = 1318, + [1319] = 694, + [1320] = 695, + [1321] = 602, + [1322] = 696, + [1323] = 605, + [1324] = 697, + [1325] = 698, + [1326] = 701, + [1327] = 702, + [1328] = 703, + [1329] = 704, + [1330] = 706, + [1331] = 707, + [1332] = 708, + [1333] = 709, + [1334] = 1024, + [1335] = 710, + [1336] = 711, + [1337] = 715, + [1338] = 716, + [1339] = 723, + [1340] = 727, + [1341] = 728, + [1342] = 729, + [1343] = 730, + [1344] = 731, + [1345] = 732, + [1346] = 733, + [1347] = 734, + [1348] = 739, + [1349] = 740, + [1350] = 741, + [1351] = 742, + [1352] = 743, + [1353] = 744, + [1354] = 745, + [1355] = 746, + [1356] = 747, + [1357] = 749, + [1358] = 750, + [1359] = 751, + [1360] = 752, + [1361] = 753, + [1362] = 754, + [1363] = 755, + [1364] = 1364, + [1365] = 756, + [1366] = 1020, + [1367] = 1021, + [1368] = 1368, [1369] = 1369, - [1370] = 1019, - [1371] = 1371, - [1372] = 598, + [1370] = 757, + [1371] = 1022, + [1372] = 1372, [1373] = 1373, - [1374] = 1374, - [1375] = 405, - [1376] = 373, + [1374] = 758, + [1375] = 759, + [1376] = 516, [1377] = 1377, [1378] = 1378, [1379] = 1379, [1380] = 1380, - [1381] = 1381, + [1381] = 622, [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 209, - [1386] = 1386, - [1387] = 375, + [1385] = 1385, + [1386] = 399, + [1387] = 1387, [1388] = 1388, - [1389] = 1389, - [1390] = 371, - [1391] = 391, - [1392] = 1392, + [1389] = 609, + [1390] = 1390, + [1391] = 1391, + [1392] = 405, [1393] = 1393, - [1394] = 1394, - [1395] = 1395, + [1394] = 406, + [1395] = 181, [1396] = 1396, - [1397] = 1397, + [1397] = 1024, [1398] = 1398, - [1399] = 1399, + [1399] = 210, [1400] = 1400, - [1401] = 1401, + [1401] = 407, [1402] = 1402, [1403] = 1403, - [1404] = 398, - [1405] = 1011, - [1406] = 1406, + [1404] = 1404, + [1405] = 211, + [1406] = 393, [1407] = 1407, - [1408] = 374, + [1408] = 387, [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 180, + [1410] = 381, + [1411] = 397, + [1412] = 398, + [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, - [1417] = 210, + [1417] = 389, [1418] = 1418, - [1419] = 381, - [1420] = 397, - [1421] = 395, - [1422] = 396, - [1423] = 403, - [1424] = 392, - [1425] = 404, - [1426] = 379, - [1427] = 383, + [1419] = 1419, + [1420] = 410, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1425, + [1426] = 372, + [1427] = 1427, [1428] = 1428, - [1429] = 370, - [1430] = 386, + [1429] = 374, + [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, @@ -5330,667 +5344,667 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1441, + [1441] = 392, [1442] = 1442, - [1443] = 382, + [1443] = 179, [1444] = 1444, [1445] = 1445, - [1446] = 378, + [1446] = 1446, [1447] = 1447, - [1448] = 1448, - [1449] = 393, + [1448] = 1015, + [1449] = 174, [1450] = 1450, - [1451] = 185, + [1451] = 1451, [1452] = 1452, - [1453] = 1453, - [1454] = 372, - [1455] = 400, + [1453] = 375, + [1454] = 1454, + [1455] = 1455, [1456] = 1456, [1457] = 1457, [1458] = 1458, [1459] = 1459, [1460] = 1460, - [1461] = 1461, - [1462] = 587, + [1461] = 383, + [1462] = 183, [1463] = 1463, - [1464] = 668, - [1465] = 1019, + [1464] = 384, + [1465] = 394, [1466] = 1466, - [1467] = 385, + [1467] = 390, [1468] = 1468, - [1469] = 1469, - [1470] = 1470, + [1469] = 409, + [1470] = 391, [1471] = 1471, - [1472] = 182, + [1472] = 412, [1473] = 1473, [1474] = 1474, - [1475] = 387, + [1475] = 1475, [1476] = 1476, - [1477] = 1477, + [1477] = 413, [1478] = 1478, - [1479] = 1479, + [1479] = 379, [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 1483, + [1483] = 382, [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, [1489] = 177, - [1490] = 1490, - [1491] = 184, + [1490] = 378, + [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 402, + [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1019, - [1498] = 1495, - [1499] = 1019, - [1500] = 1495, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1024, [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, + [1502] = 1024, + [1503] = 1499, + [1504] = 1499, [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, + [1509] = 1051, [1510] = 1510, [1511] = 1511, - [1512] = 1020, + [1512] = 1512, [1513] = 1513, [1514] = 1514, - [1515] = 1057, + [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1504, - [1521] = 1521, + [1520] = 1520, + [1521] = 1023, [1522] = 1522, - [1523] = 1509, + [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, + [1526] = 1507, [1527] = 1527, - [1528] = 1030, + [1528] = 1524, [1529] = 1529, - [1530] = 1028, + [1530] = 1530, [1531] = 1531, - [1532] = 1532, + [1532] = 1029, [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1022, + [1536] = 1536, [1537] = 1537, - [1538] = 1057, - [1539] = 1057, - [1540] = 1040, - [1541] = 1073, - [1542] = 1071, - [1543] = 1046, - [1544] = 1038, - [1545] = 1041, - [1546] = 1042, - [1547] = 1064, - [1548] = 1034, - [1549] = 1071, - [1550] = 1073, - [1551] = 1078, - [1552] = 1487, - [1553] = 1064, - [1554] = 1078, - [1555] = 1453, - [1556] = 1036, - [1557] = 1043, - [1558] = 1487, - [1559] = 1501, - [1560] = 1560, - [1561] = 1561, - [1562] = 1560, - [1563] = 1456, + [1538] = 1538, + [1539] = 1025, + [1540] = 1051, + [1541] = 1541, + [1542] = 1026, + [1543] = 1051, + [1544] = 1311, + [1545] = 1422, + [1546] = 1227, + [1547] = 1186, + [1548] = 1315, + [1549] = 1038, + [1550] = 1315, + [1551] = 1041, + [1552] = 1478, + [1553] = 1227, + [1554] = 1037, + [1555] = 1311, + [1556] = 1049, + [1557] = 1044, + [1558] = 1048, + [1559] = 1478, + [1560] = 1186, + [1561] = 1047, + [1562] = 1050, + [1563] = 1563, [1564] = 1564, - [1565] = 1565, + [1565] = 1484, [1566] = 1566, - [1567] = 332, - [1568] = 1373, - [1569] = 1060, - [1570] = 1365, - [1571] = 1049, - [1572] = 1564, - [1573] = 1453, - [1574] = 1566, - [1575] = 1487, - [1576] = 1564, - [1577] = 1566, - [1578] = 1210, - [1579] = 1566, - [1580] = 1496, - [1581] = 1564, - [1582] = 1365, - [1583] = 1262, - [1584] = 1565, - [1585] = 1050, - [1586] = 1373, - [1587] = 1312, - [1588] = 1054, - [1589] = 1561, - [1590] = 1156, - [1591] = 1565, - [1592] = 1456, - [1593] = 1524, - [1594] = 371, - [1595] = 1511, - [1596] = 1525, - [1597] = 1371, - [1598] = 1075, - [1599] = 1599, - [1600] = 1510, - [1601] = 1115, - [1602] = 1116, - [1603] = 1117, - [1604] = 1502, - [1605] = 1505, - [1606] = 1516, - [1607] = 1503, - [1608] = 1514, - [1609] = 1519, - [1610] = 1118, - [1611] = 1119, - [1612] = 1076, - [1613] = 1599, - [1614] = 1614, - [1615] = 1087, - [1616] = 1157, - [1617] = 1617, - [1618] = 1089, - [1619] = 1158, - [1620] = 1090, - [1621] = 1517, - [1622] = 1159, - [1623] = 1623, - [1624] = 1617, - [1625] = 1092, - [1626] = 1369, - [1627] = 1506, - [1628] = 1093, - [1629] = 1211, - [1630] = 1614, - [1631] = 1507, - [1632] = 1508, - [1633] = 1081, - [1634] = 1263, - [1635] = 1094, - [1636] = 1313, - [1637] = 1496, - [1638] = 1638, - [1639] = 1513, - [1640] = 1521, - [1641] = 1526, - [1642] = 1095, - [1643] = 1643, - [1644] = 1082, - [1645] = 1522, - [1646] = 1096, - [1647] = 1501, - [1648] = 374, - [1649] = 1083, - [1650] = 370, - [1651] = 373, - [1652] = 372, - [1653] = 1518, - [1654] = 1654, - [1655] = 1399, - [1656] = 1656, - [1657] = 1402, - [1658] = 1658, - [1659] = 1470, - [1660] = 1471, - [1661] = 1444, - [1662] = 1662, - [1663] = 1476, - [1664] = 1474, + [1567] = 1238, + [1568] = 1468, + [1569] = 1307, + [1570] = 1364, + [1571] = 1571, + [1572] = 341, + [1573] = 1364, + [1574] = 1478, + [1575] = 1563, + [1576] = 1422, + [1577] = 1052, + [1578] = 1578, + [1579] = 1484, + [1580] = 1069, + [1581] = 1571, + [1582] = 1563, + [1583] = 1571, + [1584] = 1563, + [1585] = 1120, + [1586] = 1505, + [1587] = 1501, + [1588] = 1578, + [1589] = 1057, + [1590] = 1564, + [1591] = 1053, + [1592] = 1468, + [1593] = 1055, + [1594] = 1566, + [1595] = 1578, + [1596] = 1571, + [1597] = 1317, + [1598] = 1598, + [1599] = 1184, + [1600] = 1600, + [1601] = 1309, + [1602] = 1302, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 1305, + [1607] = 1306, + [1608] = 1505, + [1609] = 1501, + [1610] = 1288, + [1611] = 1368, + [1612] = 1506, + [1613] = 1523, + [1614] = 1185, + [1615] = 1600, + [1616] = 1530, + [1617] = 1508, + [1618] = 1527, + [1619] = 1070, + [1620] = 1510, + [1621] = 1598, + [1622] = 1318, + [1623] = 1121, + [1624] = 1511, + [1625] = 1241, + [1626] = 1604, + [1627] = 1512, + [1628] = 1179, + [1629] = 1519, + [1630] = 1183, + [1631] = 1522, + [1632] = 1369, + [1633] = 1529, + [1634] = 1372, + [1635] = 1373, + [1636] = 375, + [1637] = 1525, + [1638] = 1150, + [1639] = 378, + [1640] = 374, + [1641] = 1245, + [1642] = 1180, + [1643] = 379, + [1644] = 372, + [1645] = 1178, + [1646] = 1181, + [1647] = 1247, + [1648] = 1520, + [1649] = 1513, + [1650] = 1514, + [1651] = 1651, + [1652] = 1515, + [1653] = 1516, + [1654] = 1177, + [1655] = 1517, + [1656] = 1518, + [1657] = 1243, + [1658] = 1482, + [1659] = 1659, + [1660] = 1383, + [1661] = 1508, + [1662] = 1510, + [1663] = 1463, + [1664] = 1492, [1665] = 1665, - [1666] = 1482, - [1667] = 1432, - [1668] = 1478, - [1669] = 1479, - [1670] = 1480, - [1671] = 1459, - [1672] = 1484, - [1673] = 1485, - [1674] = 1486, - [1675] = 1386, - [1676] = 1394, - [1677] = 1418, - [1678] = 1678, - [1679] = 1679, - [1680] = 1516, - [1681] = 1503, - [1682] = 1414, - [1683] = 1384, - [1684] = 1416, - [1685] = 1514, + [1666] = 1511, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1512, + [1672] = 1513, + [1673] = 1514, + [1674] = 1515, + [1675] = 1516, + [1676] = 1506, + [1677] = 1523, + [1678] = 1659, + [1679] = 1530, + [1680] = 1527, + [1681] = 1681, + [1682] = 1430, + [1683] = 1517, + [1684] = 1518, + [1685] = 1485, [1686] = 1519, - [1687] = 1687, - [1688] = 1502, - [1689] = 1473, - [1690] = 1690, - [1691] = 1450, - [1692] = 1435, - [1693] = 1436, - [1694] = 1016, - [1695] = 1695, - [1696] = 1477, - [1697] = 1439, - [1698] = 1481, - [1699] = 1483, - [1700] = 1440, - [1701] = 1488, + [1687] = 1497, + [1688] = 1520, + [1689] = 1421, + [1690] = 1659, + [1691] = 1455, + [1692] = 1692, + [1693] = 409, + [1694] = 1457, + [1695] = 1446, + [1696] = 1696, + [1697] = 1697, + [1698] = 1456, + [1699] = 381, + [1700] = 1700, + [1701] = 389, [1702] = 1702, - [1703] = 1517, - [1704] = 1526, + [1703] = 1529, + [1704] = 1413, [1705] = 1705, - [1706] = 1490, - [1707] = 1492, - [1708] = 1513, - [1709] = 1521, - [1710] = 1522, - [1711] = 1524, - [1712] = 1525, - [1713] = 1505, - [1714] = 1506, - [1715] = 1507, - [1716] = 1508, - [1717] = 1510, - [1718] = 1511, - [1719] = 1493, - [1720] = 1378, - [1721] = 1379, - [1722] = 1389, - [1723] = 1382, - [1724] = 1383, - [1725] = 1431, - [1726] = 1518, - [1727] = 1406, - [1728] = 1409, - [1729] = 1410, - [1730] = 1412, - [1731] = 1415, - [1732] = 1732, - [1733] = 1397, - [1734] = 1457, - [1735] = 1458, - [1736] = 1460, - [1737] = 1461, - [1738] = 1466, - [1739] = 1392, - [1740] = 1740, - [1741] = 1400, - [1742] = 1742, - [1743] = 1403, - [1744] = 1411, - [1745] = 435, - [1746] = 381, - [1747] = 395, - [1748] = 396, - [1749] = 379, - [1750] = 383, - [1751] = 1502, - [1752] = 1437, - [1753] = 382, - [1754] = 1517, - [1755] = 1755, - [1756] = 378, - [1757] = 393, - [1758] = 1526, - [1759] = 385, - [1760] = 1513, - [1761] = 1521, - [1762] = 1522, - [1763] = 1524, - [1764] = 1525, - [1765] = 1505, - [1766] = 1506, - [1767] = 1507, - [1768] = 1508, - [1769] = 1510, - [1770] = 1398, - [1771] = 1380, - [1772] = 1381, - [1773] = 375, - [1774] = 391, - [1775] = 1518, - [1776] = 398, - [1777] = 1407, - [1778] = 1463, - [1779] = 403, - [1780] = 404, - [1781] = 386, - [1782] = 400, - [1783] = 405, - [1784] = 1784, - [1785] = 392, - [1786] = 177, - [1787] = 180, - [1788] = 397, - [1789] = 182, - [1790] = 1502, - [1791] = 184, - [1792] = 402, - [1793] = 1526, - [1794] = 185, - [1795] = 387, - [1796] = 1518, - [1797] = 209, - [1798] = 210, - [1799] = 1665, - [1800] = 1800, - [1801] = 1801, + [1706] = 1506, + [1707] = 394, + [1708] = 1708, + [1709] = 1670, + [1710] = 1418, + [1711] = 1659, + [1712] = 1681, + [1713] = 1382, + [1714] = 1523, + [1715] = 1385, + [1716] = 1716, + [1717] = 1494, + [1718] = 397, + [1719] = 1445, + [1720] = 1419, + [1721] = 1377, + [1722] = 1696, + [1723] = 398, + [1724] = 410, + [1725] = 1702, + [1726] = 1475, + [1727] = 1480, + [1728] = 382, + [1729] = 387, + [1730] = 1670, + [1731] = 1427, + [1732] = 1681, + [1733] = 407, + [1734] = 1530, + [1735] = 174, + [1736] = 1379, + [1737] = 1737, + [1738] = 1702, + [1739] = 177, + [1740] = 1696, + [1741] = 1380, + [1742] = 1702, + [1743] = 1391, + [1744] = 1670, + [1745] = 412, + [1746] = 1681, + [1747] = 384, + [1748] = 1748, + [1749] = 179, + [1750] = 1452, + [1751] = 1442, + [1752] = 1520, + [1753] = 181, + [1754] = 1696, + [1755] = 1696, + [1756] = 1702, + [1757] = 392, + [1758] = 1670, + [1759] = 1450, + [1760] = 1681, + [1761] = 1522, + [1762] = 1696, + [1763] = 1763, + [1764] = 1702, + [1765] = 1447, + [1766] = 1520, + [1767] = 1527, + [1768] = 183, + [1769] = 1444, + [1770] = 406, + [1771] = 1496, + [1772] = 391, + [1773] = 1773, + [1774] = 1474, + [1775] = 1529, + [1776] = 1681, + [1777] = 1667, + [1778] = 1403, + [1779] = 1425, + [1780] = 1471, + [1781] = 1407, + [1782] = 1525, + [1783] = 1393, + [1784] = 1459, + [1785] = 1705, + [1786] = 1786, + [1787] = 1404, + [1788] = 1708, + [1789] = 1493, + [1790] = 1414, + [1791] = 1466, + [1792] = 1495, + [1793] = 1665, + [1794] = 1794, + [1795] = 1020, + [1796] = 1696, + [1797] = 393, + [1798] = 413, + [1799] = 1670, + [1800] = 399, + [1801] = 1460, [1802] = 1802, - [1803] = 1438, - [1804] = 1702, - [1805] = 1441, - [1806] = 1801, - [1807] = 1654, - [1808] = 1808, - [1809] = 1433, - [1810] = 1658, - [1811] = 1811, - [1812] = 1784, - [1813] = 1813, + [1803] = 210, + [1804] = 211, + [1805] = 1384, + [1806] = 1473, + [1807] = 1697, + [1808] = 1522, + [1809] = 1702, + [1810] = 1432, + [1811] = 405, + [1812] = 1439, + [1813] = 1525, [1814] = 1814, [1815] = 1815, - [1816] = 1816, - [1817] = 1690, - [1818] = 1818, - [1819] = 1656, - [1820] = 1678, - [1821] = 1452, - [1822] = 1808, - [1823] = 1801, - [1824] = 1516, - [1825] = 1503, - [1826] = 1702, - [1827] = 1514, - [1828] = 1519, - [1829] = 1654, - [1830] = 1434, - [1831] = 1814, - [1832] = 1818, - [1833] = 1814, - [1834] = 1818, - [1835] = 1374, - [1836] = 1377, - [1837] = 1801, - [1838] = 1702, - [1839] = 1654, - [1840] = 1814, - [1841] = 1818, - [1842] = 1801, - [1843] = 1654, - [1844] = 1815, - [1845] = 1814, - [1846] = 1818, - [1847] = 1801, - [1848] = 1654, - [1849] = 1814, - [1850] = 1818, - [1851] = 1801, - [1852] = 1654, - [1853] = 1814, - [1854] = 1818, - [1855] = 1855, - [1856] = 1388, - [1857] = 1442, - [1858] = 1445, - [1859] = 1447, - [1860] = 1393, - [1861] = 1395, - [1862] = 1862, - [1863] = 1511, - [1864] = 1864, - [1865] = 1865, - [1866] = 1862, - [1867] = 1742, - [1868] = 1687, + [1816] = 1387, + [1817] = 1434, + [1818] = 1390, + [1819] = 1819, + [1820] = 1529, + [1821] = 1522, + [1822] = 1437, + [1823] = 1400, + [1824] = 435, + [1825] = 1433, + [1826] = 1487, + [1827] = 1827, + [1828] = 1458, + [1829] = 1454, + [1830] = 1830, + [1831] = 1831, + [1832] = 1508, + [1833] = 1488, + [1834] = 1510, + [1835] = 1511, + [1836] = 1396, + [1837] = 1512, + [1838] = 1513, + [1839] = 1398, + [1840] = 383, + [1841] = 1514, + [1842] = 1486, + [1843] = 1515, + [1844] = 1378, + [1845] = 1402, + [1846] = 1409, + [1847] = 1516, + [1848] = 1670, + [1849] = 1517, + [1850] = 1416, + [1851] = 1388, + [1852] = 1518, + [1853] = 1519, + [1854] = 1415, + [1855] = 1681, + [1856] = 1438, + [1857] = 1435, + [1858] = 1830, + [1859] = 1498, + [1860] = 1860, + [1861] = 1481, + [1862] = 1773, + [1863] = 390, + [1864] = 1451, + [1865] = 1476, + [1866] = 1748, + [1867] = 1431, + [1868] = 1868, [1869] = 1869, - [1870] = 1870, + [1870] = 1716, [1871] = 1871, [1872] = 1872, [1873] = 1873, - [1874] = 1874, - [1875] = 1872, + [1874] = 1815, + [1875] = 1875, [1876] = 1876, [1877] = 1877, [1878] = 1878, - [1879] = 1873, + [1879] = 1879, [1880] = 1880, [1881] = 1881, [1882] = 1882, - [1883] = 1883, - [1884] = 1871, - [1885] = 1881, + [1883] = 1877, + [1884] = 1881, + [1885] = 1885, [1886] = 1886, - [1887] = 1883, - [1888] = 1877, - [1889] = 1882, - [1890] = 1876, + [1887] = 1869, + [1888] = 1871, + [1889] = 1876, + [1890] = 1878, [1891] = 1891, - [1892] = 1874, - [1893] = 1878, - [1894] = 1894, - [1895] = 1877, - [1896] = 1896, + [1892] = 1892, + [1893] = 1882, + [1894] = 1886, + [1895] = 1895, + [1896] = 1895, [1897] = 1897, - [1898] = 1891, - [1899] = 1894, - [1900] = 1865, - [1901] = 1901, - [1902] = 1902, + [1898] = 1871, + [1899] = 1692, + [1900] = 1879, + [1901] = 1868, + [1902] = 1897, [1903] = 1903, - [1904] = 1901, + [1904] = 1892, [1905] = 1905, - [1906] = 1905, - [1907] = 1903, - [1908] = 1902, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1906, + [1910] = 1907, + [1911] = 1908, + [1912] = 1905, [1913] = 1913, - [1914] = 1913, - [1915] = 1913, - [1916] = 1912, - [1917] = 1913, - [1918] = 1912, - [1919] = 1913, - [1920] = 1920, - [1921] = 1920, - [1922] = 1020, - [1923] = 182, - [1924] = 185, - [1925] = 1046, - [1926] = 1030, - [1927] = 1022, - [1928] = 1038, - [1929] = 1028, - [1930] = 1041, - [1931] = 1931, - [1932] = 1042, - [1933] = 1040, - [1934] = 1046, - [1935] = 1043, - [1936] = 1034, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1916, + [1918] = 1918, + [1919] = 1916, + [1920] = 1916, + [1921] = 1918, + [1922] = 1918, + [1923] = 1916, + [1924] = 1924, + [1925] = 1924, + [1926] = 1023, + [1927] = 183, + [1928] = 179, + [1929] = 1050, + [1930] = 1029, + [1931] = 1048, + [1932] = 1038, + [1933] = 1026, + [1934] = 1934, + [1935] = 1047, + [1936] = 1025, [1937] = 1041, - [1938] = 1036, - [1939] = 1042, - [1940] = 1038, - [1941] = 1060, - [1942] = 1054, + [1938] = 1038, + [1939] = 1049, + [1940] = 1120, + [1941] = 1047, + [1942] = 1238, [1943] = 1050, - [1944] = 1049, - [1945] = 1156, - [1946] = 1210, - [1947] = 1312, - [1948] = 1115, - [1949] = 1262, - [1950] = 1950, - [1951] = 1951, - [1952] = 1087, - [1953] = 1089, - [1954] = 1950, - [1955] = 1090, - [1956] = 1956, - [1957] = 1081, - [1958] = 1116, - [1959] = 1117, - [1960] = 1118, - [1961] = 1119, - [1962] = 1083, - [1963] = 1963, - [1964] = 402, - [1965] = 1092, - [1966] = 1093, - [1967] = 1967, - [1968] = 1967, - [1969] = 387, - [1970] = 1082, - [1971] = 209, - [1972] = 1537, - [1973] = 1211, - [1974] = 1967, - [1975] = 1096, - [1976] = 210, - [1977] = 1313, - [1978] = 1094, - [1979] = 1157, - [1980] = 1158, - [1981] = 1159, - [1982] = 1095, - [1983] = 1956, - [1984] = 1263, - [1985] = 1436, - [1986] = 1414, - [1987] = 1535, - [1988] = 1988, - [1989] = 1378, - [1990] = 1956, - [1991] = 1416, - [1992] = 1381, - [1993] = 1458, - [1994] = 1439, - [1995] = 1440, - [1996] = 1435, - [1997] = 1380, - [1998] = 1461, - [1999] = 1383, - [2000] = 1529, - [2001] = 1406, - [2002] = 1407, - [2003] = 1409, - [2004] = 1437, - [2005] = 1410, - [2006] = 1460, - [2007] = 1379, - [2008] = 1463, - [2009] = 1412, - [2010] = 1415, - [2011] = 1457, - [2012] = 1466, - [2013] = 2013, - [2014] = 1382, - [2015] = 1534, - [2016] = 1392, - [2017] = 2017, - [2018] = 2018, - [2019] = 184, - [2020] = 180, - [2021] = 2021, - [2022] = 1041, - [2023] = 1042, - [2024] = 1038, + [1944] = 1069, + [1945] = 1048, + [1946] = 1037, + [1947] = 1307, + [1948] = 1044, + [1949] = 1057, + [1950] = 1052, + [1951] = 1177, + [1952] = 1053, + [1953] = 1055, + [1954] = 1954, + [1955] = 1369, + [1956] = 1372, + [1957] = 1957, + [1958] = 1373, + [1959] = 1957, + [1960] = 1960, + [1961] = 1179, + [1962] = 1305, + [1963] = 1181, + [1964] = 392, + [1965] = 406, + [1966] = 1966, + [1967] = 210, + [1968] = 1241, + [1969] = 211, + [1970] = 1070, + [1971] = 1243, + [1972] = 1180, + [1973] = 1966, + [1974] = 1183, + [1975] = 1247, + [1976] = 1184, + [1977] = 1185, + [1978] = 1178, + [1979] = 1245, + [1980] = 1531, + [1981] = 1981, + [1982] = 1302, + [1983] = 1306, + [1984] = 1966, + [1985] = 1954, + [1986] = 1150, + [1987] = 1309, + [1988] = 1121, + [1989] = 1989, + [1990] = 1451, + [1991] = 1393, + [1992] = 1454, + [1993] = 1455, + [1994] = 1457, + [1995] = 1459, + [1996] = 1954, + [1997] = 1382, + [1998] = 1998, + [1999] = 1378, + [2000] = 1387, + [2001] = 1380, + [2002] = 1390, + [2003] = 1402, + [2004] = 1385, + [2005] = 1460, + [2006] = 1384, + [2007] = 1391, + [2008] = 1534, + [2009] = 1536, + [2010] = 1456, + [2011] = 1541, + [2012] = 1496, + [2013] = 1427, + [2014] = 1493, + [2015] = 1494, + [2016] = 1450, + [2017] = 1383, + [2018] = 1379, + [2019] = 1495, + [2020] = 1388, + [2021] = 181, + [2022] = 2022, + [2023] = 177, + [2024] = 2024, [2025] = 2025, - [2026] = 1046, - [2027] = 1042, + [2026] = 1038, + [2027] = 2027, [2028] = 1038, - [2029] = 1046, - [2030] = 1046, - [2031] = 1041, - [2032] = 1931, - [2033] = 1038, - [2034] = 2034, - [2035] = 1041, - [2036] = 1042, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2039, - [2041] = 2041, + [2029] = 1048, + [2030] = 2030, + [2031] = 1934, + [2032] = 1047, + [2033] = 1047, + [2034] = 1050, + [2035] = 1048, + [2036] = 2036, + [2037] = 1050, + [2038] = 1038, + [2039] = 1047, + [2040] = 1050, + [2041] = 1048, [2042] = 2042, [2043] = 2043, [2044] = 2044, [2045] = 2045, - [2046] = 2043, - [2047] = 2044, - [2048] = 2038, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, [2049] = 2049, - [2050] = 2045, + [2050] = 2050, [2051] = 2051, - [2052] = 2049, - [2053] = 2041, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, + [2052] = 2047, + [2053] = 2048, + [2054] = 2043, + [2055] = 2046, + [2056] = 2045, [2057] = 2057, - [2058] = 2058, - [2059] = 2059, + [2058] = 2049, + [2059] = 2044, [2060] = 2060, [2061] = 2061, [2062] = 2062, [2063] = 2063, - [2064] = 372, - [2065] = 374, - [2066] = 1046, - [2067] = 1038, - [2068] = 1041, - [2069] = 1042, - [2070] = 2061, + [2064] = 378, + [2065] = 2065, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, [2071] = 2071, [2072] = 2072, [2073] = 2073, - [2074] = 2074, - [2075] = 2075, + [2074] = 2061, + [2075] = 379, [2076] = 2076, - [2077] = 2071, - [2078] = 373, + [2077] = 372, + [2078] = 2078, [2079] = 2079, - [2080] = 2080, + [2080] = 1038, [2081] = 2081, [2082] = 2082, [2083] = 2083, - [2084] = 1951, - [2085] = 2082, - [2086] = 2054, - [2087] = 371, - [2088] = 2057, - [2089] = 2072, - [2090] = 2055, - [2091] = 2062, - [2092] = 2092, - [2093] = 370, - [2094] = 2092, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2100, - [2101] = 2101, + [2084] = 2084, + [2085] = 2085, + [2086] = 2072, + [2087] = 2076, + [2088] = 2088, + [2089] = 2060, + [2090] = 1960, + [2091] = 374, + [2092] = 2079, + [2093] = 2084, + [2094] = 2094, + [2095] = 2078, + [2096] = 2088, + [2097] = 1048, + [2098] = 1047, + [2099] = 375, + [2100] = 1050, + [2101] = 2094, [2102] = 2102, [2103] = 2103, [2104] = 2104, @@ -5999,9 +6013,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2107] = 2107, [2108] = 2108, [2109] = 2109, - [2110] = 2097, - [2111] = 397, - [2112] = 2097, + [2110] = 2110, + [2111] = 2111, + [2112] = 1960, [2113] = 2113, [2114] = 2114, [2115] = 2115, @@ -6010,86 +6024,86 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2118] = 2118, [2119] = 2119, [2120] = 2120, - [2121] = 2121, + [2121] = 2110, [2122] = 2122, - [2123] = 2117, + [2123] = 2123, [2124] = 2124, - [2125] = 1963, + [2125] = 2125, [2126] = 2126, - [2127] = 2127, + [2127] = 2109, [2128] = 2128, [2129] = 2129, [2130] = 2130, [2131] = 2131, - [2132] = 1951, - [2133] = 2133, - [2134] = 2134, + [2132] = 2132, + [2133] = 2130, + [2134] = 384, [2135] = 2135, - [2136] = 2136, + [2136] = 1981, [2137] = 2137, - [2138] = 2109, - [2139] = 1951, - [2140] = 2140, - [2141] = 2130, + [2138] = 2138, + [2139] = 2139, + [2140] = 1960, + [2141] = 2141, [2142] = 2142, [2143] = 2143, [2144] = 2144, - [2145] = 2145, - [2146] = 2133, + [2145] = 2108, + [2146] = 2146, [2147] = 2147, - [2148] = 2148, + [2148] = 2109, [2149] = 2149, [2150] = 2150, - [2151] = 1963, + [2151] = 2123, [2152] = 2152, [2153] = 2153, [2154] = 2154, [2155] = 2155, [2156] = 2156, [2157] = 2157, - [2158] = 1049, - [2159] = 1050, - [2160] = 2160, - [2161] = 1054, - [2162] = 1060, - [2163] = 2153, - [2164] = 2164, - [2165] = 2160, + [2158] = 2158, + [2159] = 2159, + [2160] = 2157, + [2161] = 2161, + [2162] = 1052, + [2163] = 1981, + [2164] = 2158, + [2165] = 2165, [2166] = 2166, [2167] = 2167, - [2168] = 2168, + [2168] = 1053, [2169] = 2169, - [2170] = 2170, - [2171] = 2171, + [2170] = 2154, + [2171] = 2159, [2172] = 2172, - [2173] = 2164, - [2174] = 2174, - [2175] = 2168, - [2176] = 2176, - [2177] = 2153, - [2178] = 2178, - [2179] = 2150, - [2180] = 2148, - [2181] = 2170, - [2182] = 2172, + [2173] = 2156, + [2174] = 1055, + [2175] = 1057, + [2176] = 2156, + [2177] = 2177, + [2178] = 2177, + [2179] = 1981, + [2180] = 2180, + [2181] = 2181, + [2182] = 2155, [2183] = 2183, - [2184] = 2164, - [2185] = 2183, + [2184] = 2183, + [2185] = 2185, [2186] = 2186, - [2187] = 2174, - [2188] = 1951, - [2189] = 2178, - [2190] = 2176, - [2191] = 1963, - [2192] = 2152, - [2193] = 2155, - [2194] = 2167, - [2195] = 2157, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, + [2187] = 2187, + [2188] = 2188, + [2189] = 2167, + [2190] = 1960, + [2191] = 2161, + [2192] = 2192, + [2193] = 2165, + [2194] = 2172, + [2195] = 2195, + [2196] = 2183, + [2197] = 2180, + [2198] = 2166, + [2199] = 2187, + [2200] = 2186, [2201] = 2201, [2202] = 2202, [2203] = 2203, @@ -6099,59 +6113,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 2206, - [2211] = 2207, - [2212] = 2208, + [2210] = 2210, + [2211] = 2211, + [2212] = 2212, [2213] = 2213, - [2214] = 2214, - [2215] = 2215, + [2214] = 2209, + [2215] = 2210, [2216] = 2216, - [2217] = 2217, + [2217] = 2205, [2218] = 2218, [2219] = 2219, [2220] = 2220, - [2221] = 2221, - [2222] = 2196, - [2223] = 2216, + [2221] = 2202, + [2222] = 2222, + [2223] = 2223, [2224] = 2224, - [2225] = 2202, - [2226] = 2226, - [2227] = 2227, + [2225] = 2225, + [2226] = 2222, + [2227] = 2207, [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 2201, - [2232] = 2217, + [2231] = 2230, + [2232] = 2232, [2233] = 2233, - [2234] = 2215, - [2235] = 2235, - [2236] = 2236, - [2237] = 2226, + [2234] = 2208, + [2235] = 2211, + [2236] = 2229, + [2237] = 2219, [2238] = 2238, - [2239] = 2239, - [2240] = 2229, - [2241] = 2203, - [2242] = 1963, - [2243] = 2230, - [2244] = 2213, + [2239] = 2224, + [2240] = 2216, + [2241] = 2241, + [2242] = 2242, + [2243] = 1981, + [2244] = 2244, [2245] = 2245, - [2246] = 2200, - [2247] = 2209, - [2248] = 2221, - [2249] = 2204, - [2250] = 2218, - [2251] = 2197, - [2252] = 2252, + [2246] = 2246, + [2247] = 2247, + [2248] = 2248, + [2249] = 2212, + [2250] = 2250, + [2251] = 2228, + [2252] = 2241, [2253] = 2253, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, + [2254] = 2213, + [2255] = 2232, + [2256] = 2233, + [2257] = 2204, [2258] = 2258, [2259] = 2259, - [2260] = 2259, - [2261] = 2261, - [2262] = 2252, + [2260] = 2260, + [2261] = 2258, + [2262] = 2262, [2263] = 2263, [2264] = 2264, [2265] = 2265, @@ -6159,10 +6173,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2267] = 2267, [2268] = 2268, [2269] = 2269, - [2270] = 2270, + [2270] = 2260, [2271] = 2271, [2272] = 2272, - [2273] = 2272, + [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, @@ -6170,285 +6184,285 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2254, - [2282] = 2264, + [2281] = 2024, + [2282] = 2282, [2283] = 2267, - [2284] = 2255, - [2285] = 2280, + [2284] = 2284, + [2285] = 2285, [2286] = 2286, - [2287] = 2017, - [2288] = 2288, - [2289] = 2289, - [2290] = 2269, - [2291] = 2291, - [2292] = 2274, - [2293] = 2275, - [2294] = 2253, - [2295] = 2276, - [2296] = 2277, - [2297] = 2257, - [2298] = 2278, + [2287] = 2276, + [2288] = 2278, + [2289] = 2279, + [2290] = 2277, + [2291] = 2280, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2282, + [2298] = 2284, [2299] = 2299, - [2300] = 2286, - [2301] = 2271, - [2302] = 2291, - [2303] = 2303, - [2304] = 2288, + [2300] = 2300, + [2301] = 2286, + [2302] = 2293, + [2303] = 2268, + [2304] = 2294, [2305] = 2305, - [2306] = 2306, - [2307] = 2286, - [2308] = 2256, - [2309] = 2263, - [2310] = 2310, - [2311] = 2311, + [2306] = 2263, + [2307] = 2284, + [2308] = 2295, + [2309] = 2266, + [2310] = 2296, + [2311] = 2264, [2312] = 2312, - [2313] = 2313, - [2314] = 2311, - [2315] = 2315, + [2313] = 2312, + [2314] = 2259, + [2315] = 2275, [2316] = 2316, [2317] = 2317, [2318] = 2318, [2319] = 2319, [2320] = 2320, - [2321] = 2034, - [2322] = 2313, - [2323] = 2318, - [2324] = 2324, + [2321] = 2321, + [2322] = 2322, + [2323] = 2320, + [2324] = 2321, [2325] = 2325, - [2326] = 2324, - [2327] = 2325, + [2326] = 2326, + [2327] = 2327, [2328] = 2328, [2329] = 2329, - [2330] = 2025, + [2330] = 2326, [2331] = 2331, [2332] = 2332, [2333] = 2333, [2334] = 2334, [2335] = 2335, - [2336] = 2333, - [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2339, - [2341] = 2341, - [2342] = 2335, - [2343] = 2343, - [2344] = 2344, + [2336] = 2316, + [2337] = 2326, + [2338] = 2329, + [2339] = 2331, + [2340] = 2332, + [2341] = 2335, + [2342] = 2342, + [2343] = 2326, + [2344] = 2027, [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 2328, - [2349] = 2335, - [2350] = 2331, - [2351] = 2332, + [2346] = 2335, + [2347] = 2030, + [2348] = 2348, + [2349] = 2349, + [2350] = 2350, + [2351] = 2319, [2352] = 2352, [2353] = 2353, - [2354] = 2312, - [2355] = 2355, + [2354] = 2354, + [2355] = 2352, [2356] = 2356, - [2357] = 2357, + [2357] = 2325, [2358] = 2358, - [2359] = 2355, - [2360] = 2341, - [2361] = 2357, - [2362] = 2333, - [2363] = 2346, - [2364] = 2037, + [2359] = 177, + [2360] = 2360, + [2361] = 2361, + [2362] = 2316, + [2363] = 2363, + [2364] = 2335, [2365] = 2365, - [2366] = 2366, - [2367] = 2329, - [2368] = 2319, - [2369] = 2339, - [2370] = 2341, - [2371] = 2320, - [2372] = 2329, + [2366] = 179, + [2367] = 2353, + [2368] = 2350, + [2369] = 2036, + [2370] = 2354, + [2371] = 2363, + [2372] = 2372, [2373] = 2373, - [2374] = 2374, - [2375] = 2343, - [2376] = 2352, - [2377] = 2377, - [2378] = 2335, - [2379] = 2344, - [2380] = 2345, - [2381] = 2377, - [2382] = 2382, + [2374] = 181, + [2375] = 183, + [2376] = 2376, + [2377] = 2317, + [2378] = 2378, + [2379] = 2333, + [2380] = 2380, + [2381] = 2381, + [2382] = 2360, [2383] = 2383, - [2384] = 2384, - [2385] = 2365, - [2386] = 2374, + [2384] = 2345, + [2385] = 2385, + [2386] = 2386, [2387] = 2387, - [2388] = 2353, - [2389] = 180, - [2390] = 2316, - [2391] = 182, - [2392] = 184, - [2393] = 185, - [2394] = 2317, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2397, - [2399] = 2356, - [2400] = 2400, - [2401] = 2373, - [2402] = 2315, - [2403] = 2396, - [2404] = 2366, - [2405] = 2400, - [2406] = 2384, - [2407] = 2310, - [2408] = 2383, + [2388] = 2356, + [2389] = 2322, + [2390] = 2390, + [2391] = 2316, + [2392] = 2349, + [2393] = 2372, + [2394] = 2394, + [2395] = 2386, + [2396] = 2328, + [2397] = 2349, + [2398] = 2327, + [2399] = 2334, + [2400] = 2342, + [2401] = 2383, + [2402] = 2402, + [2403] = 2325, + [2404] = 2404, + [2405] = 2376, + [2406] = 2394, + [2407] = 2373, + [2408] = 2378, [2409] = 2409, - [2410] = 2410, - [2411] = 2411, - [2412] = 2411, - [2413] = 2413, - [2414] = 2414, - [2415] = 2415, - [2416] = 2416, - [2417] = 2417, + [2410] = 2381, + [2411] = 2385, + [2412] = 2412, + [2413] = 2380, + [2414] = 2361, + [2415] = 2387, + [2416] = 2409, + [2417] = 1307, [2418] = 2418, [2419] = 2419, [2420] = 2420, - [2421] = 2421, + [2421] = 1020, [2422] = 2422, [2423] = 2423, - [2424] = 2413, - [2425] = 2425, + [2424] = 1238, + [2425] = 2420, [2426] = 2426, [2427] = 2427, - [2428] = 2425, + [2428] = 2428, [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 1016, + [2430] = 1194, + [2431] = 1203, + [2432] = 2432, [2433] = 2433, - [2434] = 2434, + [2434] = 1204, [2435] = 2435, [2436] = 2436, - [2437] = 2437, - [2438] = 2423, - [2439] = 2420, + [2437] = 1210, + [2438] = 2438, + [2439] = 2439, [2440] = 2440, [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 2420, + [2444] = 2444, [2445] = 2445, - [2446] = 2410, - [2447] = 2447, - [2448] = 2416, - [2449] = 2442, - [2450] = 2437, - [2451] = 2451, - [2452] = 1068, - [2453] = 2453, + [2446] = 1069, + [2447] = 1211, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2443, + [2452] = 2042, + [2453] = 2435, [2454] = 2454, - [2455] = 2455, - [2456] = 2456, - [2457] = 2441, - [2458] = 2418, - [2459] = 2456, - [2460] = 1366, - [2461] = 2421, - [2462] = 1077, - [2463] = 1230, - [2464] = 2464, - [2465] = 2451, + [2455] = 1120, + [2456] = 2427, + [2457] = 2439, + [2458] = 2458, + [2459] = 2426, + [2460] = 2442, + [2461] = 2461, + [2462] = 2462, + [2463] = 2463, + [2464] = 2432, + [2465] = 2465, [2466] = 2466, - [2467] = 1367, - [2468] = 2468, - [2469] = 2469, - [2470] = 2409, - [2471] = 2471, - [2472] = 2419, + [2467] = 2428, + [2468] = 2462, + [2469] = 1214, + [2470] = 2470, + [2471] = 2050, + [2472] = 2422, [2473] = 2473, [2474] = 2474, - [2475] = 2420, - [2476] = 2433, - [2477] = 2477, - [2478] = 2427, + [2475] = 2458, + [2476] = 2476, + [2477] = 2420, + [2478] = 2478, [2479] = 2479, [2480] = 2480, [2481] = 2481, - [2482] = 1069, - [2483] = 2483, - [2484] = 2454, - [2485] = 2421, - [2486] = 2422, - [2487] = 2455, + [2482] = 2427, + [2483] = 2429, + [2484] = 2476, + [2485] = 2485, + [2486] = 2486, + [2487] = 2432, [2488] = 2488, - [2489] = 2410, - [2490] = 2490, - [2491] = 2430, + [2489] = 2489, + [2490] = 2422, + [2491] = 2491, [2492] = 2492, - [2493] = 2436, - [2494] = 2443, - [2495] = 2433, - [2496] = 1065, - [2497] = 1066, - [2498] = 1067, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2428, + [2497] = 2470, + [2498] = 1218, [2499] = 2499, - [2500] = 2430, - [2501] = 2501, + [2500] = 2500, + [2501] = 2449, [2502] = 2502, - [2503] = 2419, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2434, - [2508] = 2508, + [2503] = 1235, + [2504] = 1239, + [2505] = 1219, + [2506] = 2502, + [2507] = 2494, + [2508] = 2476, [2509] = 2509, [2510] = 2510, - [2511] = 2415, - [2512] = 2409, - [2513] = 1063, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, + [2511] = 2436, + [2512] = 2476, + [2513] = 2513, + [2514] = 2420, + [2515] = 2502, + [2516] = 2448, [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2515, + [2518] = 2438, + [2519] = 2465, + [2520] = 2520, [2521] = 2521, [2522] = 2522, - [2523] = 2523, - [2524] = 2524, + [2523] = 2480, + [2524] = 2433, [2525] = 2525, - [2526] = 2526, - [2527] = 2527, - [2528] = 2515, - [2529] = 2516, + [2526] = 2488, + [2527] = 2450, + [2528] = 2528, + [2529] = 2529, [2530] = 2530, [2531] = 2531, [2532] = 2532, - [2533] = 197, + [2533] = 2533, [2534] = 2534, [2535] = 2535, - [2536] = 2536, + [2536] = 2081, [2537] = 2537, - [2538] = 2516, - [2539] = 2536, + [2538] = 2538, + [2539] = 2529, [2540] = 2540, - [2541] = 2517, - [2542] = 2542, + [2541] = 2541, + [2542] = 2537, [2543] = 2543, - [2544] = 2534, + [2544] = 2544, [2545] = 2545, - [2546] = 2524, + [2546] = 2546, [2547] = 2547, - [2548] = 2531, + [2548] = 2548, [2549] = 2549, [2550] = 2550, [2551] = 2551, [2552] = 2552, [2553] = 2553, - [2554] = 2554, + [2554] = 2552, [2555] = 2555, - [2556] = 2542, - [2557] = 2545, + [2556] = 2556, + [2557] = 2557, [2558] = 2558, - [2559] = 2525, + [2559] = 2559, [2560] = 2560, [2561] = 2561, [2562] = 2562, @@ -6461,210 +6475,210 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2569] = 2569, [2570] = 2570, [2571] = 2571, - [2572] = 2572, - [2573] = 2551, - [2574] = 2574, + [2572] = 2531, + [2573] = 2533, + [2574] = 2548, [2575] = 2575, - [2576] = 2522, - [2577] = 2552, - [2578] = 2578, + [2576] = 2576, + [2577] = 2563, + [2578] = 2571, [2579] = 2579, [2580] = 2580, - [2581] = 2558, - [2582] = 2582, - [2583] = 2521, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2582, - [2588] = 2582, - [2589] = 2589, - [2590] = 2590, - [2591] = 2569, - [2592] = 2592, - [2593] = 2593, - [2594] = 2080, + [2581] = 2531, + [2582] = 2533, + [2583] = 2534, + [2584] = 2535, + [2585] = 2538, + [2586] = 2529, + [2587] = 2540, + [2588] = 2544, + [2589] = 2545, + [2590] = 2550, + [2591] = 2553, + [2592] = 2579, + [2593] = 2579, + [2594] = 2594, [2595] = 2595, - [2596] = 2534, - [2597] = 2545, - [2598] = 2524, - [2599] = 2531, - [2600] = 2540, - [2601] = 2542, - [2602] = 2558, - [2603] = 2525, - [2604] = 2560, - [2605] = 2562, - [2606] = 2564, - [2607] = 2565, - [2608] = 2569, - [2609] = 2570, - [2610] = 2592, + [2596] = 2557, + [2597] = 2544, + [2598] = 2545, + [2599] = 2534, + [2600] = 2600, + [2601] = 2601, + [2602] = 2548, + [2603] = 2546, + [2604] = 2535, + [2605] = 2568, + [2606] = 2563, + [2607] = 2607, + [2608] = 2538, + [2609] = 2579, + [2610] = 2580, [2611] = 2611, [2612] = 2612, - [2613] = 2552, - [2614] = 2083, - [2615] = 2562, - [2616] = 2574, - [2617] = 2582, - [2618] = 2618, - [2619] = 2524, - [2620] = 2531, + [2613] = 2533, + [2614] = 2529, + [2615] = 2540, + [2616] = 2544, + [2617] = 2545, + [2618] = 2550, + [2619] = 2553, + [2620] = 2550, [2621] = 2621, - [2622] = 2558, - [2623] = 2564, - [2624] = 2565, - [2625] = 2569, - [2626] = 2570, - [2627] = 2534, - [2628] = 2056, - [2629] = 2545, - [2630] = 2524, - [2631] = 2564, - [2632] = 2079, - [2633] = 2569, - [2634] = 2570, - [2635] = 2524, - [2636] = 2636, - [2637] = 2549, - [2638] = 2638, - [2639] = 2569, - [2640] = 2570, - [2641] = 2641, - [2642] = 2642, - [2643] = 2569, - [2644] = 2570, - [2645] = 2569, - [2646] = 2554, - [2647] = 2569, - [2648] = 2570, - [2649] = 2569, - [2650] = 2570, - [2651] = 2569, - [2652] = 2570, + [2622] = 2580, + [2623] = 2579, + [2624] = 2529, + [2625] = 2566, + [2626] = 2550, + [2627] = 2553, + [2628] = 2071, + [2629] = 2629, + [2630] = 2630, + [2631] = 2631, + [2632] = 2567, + [2633] = 2633, + [2634] = 2634, + [2635] = 2562, + [2636] = 2540, + [2637] = 2550, + [2638] = 2553, + [2639] = 2552, + [2640] = 2640, + [2641] = 2553, + [2642] = 2541, + [2643] = 164, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 2647, + [2648] = 2648, + [2649] = 2580, + [2650] = 2565, + [2651] = 2651, + [2652] = 2652, [2653] = 2653, - [2654] = 2531, - [2655] = 2567, - [2656] = 2549, - [2657] = 2537, - [2658] = 2658, - [2659] = 2553, - [2660] = 2658, + [2654] = 2621, + [2655] = 2085, + [2656] = 2629, + [2657] = 2657, + [2658] = 2557, + [2659] = 2659, + [2660] = 2564, [2661] = 2661, [2662] = 2662, [2663] = 2663, [2664] = 2664, - [2665] = 2537, + [2665] = 2665, [2666] = 2666, [2667] = 2667, - [2668] = 2553, - [2669] = 2669, + [2668] = 2668, + [2669] = 2553, [2670] = 2670, - [2671] = 2671, - [2672] = 2519, - [2673] = 2673, - [2674] = 2585, - [2675] = 175, - [2676] = 2542, - [2677] = 2558, + [2671] = 2631, + [2672] = 2543, + [2673] = 2568, + [2674] = 2667, + [2675] = 2675, + [2676] = 2676, + [2677] = 2677, [2678] = 2678, - [2679] = 2525, - [2680] = 2678, - [2681] = 2560, - [2682] = 2579, - [2683] = 2095, - [2684] = 2663, - [2685] = 2685, - [2686] = 2642, + [2679] = 2648, + [2680] = 2676, + [2681] = 2681, + [2682] = 2682, + [2683] = 2683, + [2684] = 2533, + [2685] = 2538, + [2686] = 2082, [2687] = 2687, [2688] = 2688, - [2689] = 2689, + [2689] = 2557, [2690] = 2690, [2691] = 2691, [2692] = 2692, - [2693] = 2592, - [2694] = 2575, - [2695] = 2562, - [2696] = 2590, - [2697] = 2527, - [2698] = 2698, - [2699] = 2076, - [2700] = 2671, - [2701] = 2586, - [2702] = 2564, - [2703] = 2565, - [2704] = 2535, - [2705] = 2555, - [2706] = 2706, - [2707] = 2526, - [2708] = 2566, - [2709] = 2709, - [2710] = 2710, - [2711] = 2666, - [2712] = 2060, - [2713] = 2564, - [2714] = 2567, - [2715] = 2710, - [2716] = 2552, - [2717] = 2537, - [2718] = 2074, - [2719] = 2719, - [2720] = 2663, - [2721] = 2721, - [2722] = 2722, - [2723] = 2669, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2523, - [2728] = 2571, - [2729] = 2537, - [2730] = 2565, - [2731] = 2663, - [2732] = 2560, - [2733] = 2563, - [2734] = 2734, - [2735] = 2595, - [2736] = 2621, - [2737] = 2724, - [2738] = 2670, - [2739] = 2570, - [2740] = 2569, - [2741] = 2574, - [2742] = 2568, - [2743] = 2547, - [2744] = 2570, - [2745] = 2692, - [2746] = 2584, - [2747] = 2571, - [2748] = 2561, - [2749] = 2543, - [2750] = 2550, - [2751] = 2566, - [2752] = 2687, - [2753] = 2662, - [2754] = 2584, - [2755] = 2688, - [2756] = 2570, - [2757] = 2136, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 2761, - [2762] = 2762, - [2763] = 2763, + [2693] = 2677, + [2694] = 2595, + [2695] = 2535, + [2696] = 2529, + [2697] = 2697, + [2698] = 2544, + [2699] = 2699, + [2700] = 2700, + [2701] = 2661, + [2702] = 2702, + [2703] = 2551, + [2704] = 2704, + [2705] = 2705, + [2706] = 2561, + [2707] = 2560, + [2708] = 2576, + [2709] = 2601, + [2710] = 2083, + [2711] = 2683, + [2712] = 2664, + [2713] = 2662, + [2714] = 2700, + [2715] = 2550, + [2716] = 2716, + [2717] = 2565, + [2718] = 2718, + [2719] = 2545, + [2720] = 2720, + [2721] = 2640, + [2722] = 2607, + [2723] = 2562, + [2724] = 2563, + [2725] = 2718, + [2726] = 2571, + [2727] = 2558, + [2728] = 2579, + [2729] = 2718, + [2730] = 2730, + [2731] = 2546, + [2732] = 2675, + [2733] = 2565, + [2734] = 2580, + [2735] = 2068, + [2736] = 2640, + [2737] = 2676, + [2738] = 2565, + [2739] = 2739, + [2740] = 2692, + [2741] = 2630, + [2742] = 2668, + [2743] = 2534, + [2744] = 2531, + [2745] = 2569, + [2746] = 2540, + [2747] = 2663, + [2748] = 2716, + [2749] = 2653, + [2750] = 2558, + [2751] = 2633, + [2752] = 2571, + [2753] = 2600, + [2754] = 2754, + [2755] = 2575, + [2756] = 2690, + [2757] = 2541, + [2758] = 2561, + [2759] = 2537, + [2760] = 2678, + [2761] = 2657, + [2762] = 2568, + [2763] = 2659, [2764] = 2764, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2107, - [2771] = 2771, - [2772] = 2113, + [2765] = 2069, + [2766] = 161, + [2767] = 2704, + [2768] = 2699, + [2769] = 2070, + [2770] = 2705, + [2771] = 2640, + [2772] = 2772, [2773] = 2773, [2774] = 2774, - [2775] = 2775, + [2775] = 2144, [2776] = 2776, [2777] = 2777, [2778] = 2778, @@ -6675,311 +6689,311 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2783] = 2783, [2784] = 2784, [2785] = 2785, - [2786] = 2140, - [2787] = 2787, + [2786] = 2786, + [2787] = 2126, [2788] = 2788, [2789] = 2789, - [2790] = 2790, - [2791] = 2145, - [2792] = 2099, + [2790] = 2153, + [2791] = 2791, + [2792] = 2792, [2793] = 2793, - [2794] = 2102, + [2794] = 2794, [2795] = 2795, [2796] = 2796, - [2797] = 2771, + [2797] = 2797, [2798] = 2798, [2799] = 2799, - [2800] = 2800, + [2800] = 2797, [2801] = 2801, [2802] = 2802, [2803] = 2803, [2804] = 2804, - [2805] = 2805, - [2806] = 2780, + [2805] = 174, + [2806] = 2803, [2807] = 2807, [2808] = 2808, - [2809] = 2809, - [2810] = 2810, - [2811] = 2793, - [2812] = 2812, + [2809] = 2129, + [2810] = 2796, + [2811] = 2811, + [2812] = 2137, [2813] = 2813, - [2814] = 177, + [2814] = 2814, [2815] = 2815, [2816] = 2816, - [2817] = 2817, + [2817] = 2149, [2818] = 2818, [2819] = 2819, [2820] = 2820, [2821] = 2821, [2822] = 2822, [2823] = 2823, - [2824] = 2824, + [2824] = 384, [2825] = 2825, - [2826] = 2795, + [2826] = 2826, [2827] = 2827, [2828] = 2828, [2829] = 2829, [2830] = 2830, [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2808, - [2835] = 2835, + [2832] = 2128, + [2833] = 2801, + [2834] = 2834, + [2835] = 2807, [2836] = 2836, - [2837] = 2796, - [2838] = 2838, + [2837] = 2837, + [2838] = 2808, [2839] = 2839, - [2840] = 2840, - [2841] = 2841, - [2842] = 2842, + [2840] = 2814, + [2841] = 2797, + [2842] = 2827, [2843] = 2843, - [2844] = 2844, + [2844] = 2836, [2845] = 2845, - [2846] = 2799, - [2847] = 2847, + [2846] = 2846, + [2847] = 2786, [2848] = 2848, [2849] = 2849, - [2850] = 2798, + [2850] = 2850, [2851] = 2851, - [2852] = 2144, - [2853] = 2851, - [2854] = 2854, - [2855] = 2100, + [2852] = 2852, + [2853] = 2853, + [2854] = 2107, + [2855] = 2855, [2856] = 2856, - [2857] = 2776, + [2857] = 2857, [2858] = 2858, [2859] = 2859, [2860] = 2860, - [2861] = 2847, + [2861] = 2861, [2862] = 2862, [2863] = 2863, - [2864] = 2121, - [2865] = 2842, - [2866] = 2866, - [2867] = 2867, - [2868] = 2773, - [2869] = 2869, - [2870] = 2860, + [2864] = 2864, + [2865] = 2865, + [2866] = 2815, + [2867] = 2816, + [2868] = 2135, + [2869] = 2143, + [2870] = 2827, [2871] = 2871, - [2872] = 2143, - [2873] = 2128, - [2874] = 2762, - [2875] = 2766, - [2876] = 2120, - [2877] = 2106, - [2878] = 2858, - [2879] = 2867, + [2872] = 2872, + [2873] = 2873, + [2874] = 2786, + [2875] = 2807, + [2876] = 2876, + [2877] = 2813, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, - [2881] = 2881, - [2882] = 2129, + [2881] = 2146, + [2882] = 2882, [2883] = 2883, - [2884] = 2137, - [2885] = 2115, - [2886] = 2142, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, [2887] = 2887, - [2888] = 2810, - [2889] = 2822, - [2890] = 2833, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, [2891] = 2891, - [2892] = 2892, - [2893] = 2893, + [2892] = 2815, + [2893] = 2816, [2894] = 2894, [2895] = 2895, - [2896] = 2896, - [2897] = 2869, - [2898] = 2898, - [2899] = 2899, - [2900] = 2784, - [2901] = 2777, - [2902] = 2902, - [2903] = 2789, + [2896] = 2124, + [2897] = 2849, + [2898] = 2831, + [2899] = 2872, + [2900] = 2900, + [2901] = 2884, + [2902] = 2887, + [2903] = 2903, [2904] = 2904, - [2905] = 2758, - [2906] = 2779, - [2907] = 2907, - [2908] = 2844, + [2905] = 2820, + [2906] = 2807, + [2907] = 2823, + [2908] = 2851, [2909] = 2909, [2910] = 2910, - [2911] = 2911, - [2912] = 2904, + [2911] = 2774, + [2912] = 2781, [2913] = 2913, [2914] = 2914, - [2915] = 2131, + [2915] = 2853, [2916] = 2916, - [2917] = 2813, - [2918] = 397, - [2919] = 2098, - [2920] = 2779, - [2921] = 2899, - [2922] = 2782, + [2917] = 2917, + [2918] = 2887, + [2919] = 2828, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, [2923] = 2923, - [2924] = 2854, - [2925] = 2823, - [2926] = 2824, - [2927] = 2835, - [2928] = 2836, + [2924] = 2914, + [2925] = 2922, + [2926] = 2852, + [2927] = 2927, + [2928] = 2928, [2929] = 2929, [2930] = 2930, - [2931] = 2863, - [2932] = 2869, - [2933] = 2933, - [2934] = 2801, - [2935] = 2134, - [2936] = 2119, - [2937] = 2937, - [2938] = 2789, - [2939] = 2914, - [2940] = 2892, - [2941] = 2941, - [2942] = 2122, - [2943] = 2775, + [2931] = 2931, + [2932] = 2819, + [2933] = 2802, + [2934] = 2934, + [2935] = 2111, + [2936] = 2936, + [2937] = 2864, + [2938] = 2927, + [2939] = 2931, + [2940] = 2940, + [2941] = 2803, + [2942] = 2942, + [2943] = 2150, [2944] = 2944, [2945] = 2945, - [2946] = 2914, - [2947] = 2843, - [2948] = 2893, - [2949] = 2802, - [2950] = 2950, - [2951] = 2880, - [2952] = 2789, + [2946] = 2783, + [2947] = 2103, + [2948] = 2920, + [2949] = 2104, + [2950] = 2856, + [2951] = 2113, + [2952] = 2952, [2953] = 2953, - [2954] = 2954, - [2955] = 2894, - [2956] = 2774, - [2957] = 2895, - [2958] = 2958, - [2959] = 2789, - [2960] = 2960, - [2961] = 2821, + [2954] = 2114, + [2955] = 2785, + [2956] = 2106, + [2957] = 2957, + [2958] = 2125, + [2959] = 2827, + [2960] = 2788, + [2961] = 2961, [2962] = 2962, - [2963] = 2896, - [2964] = 2964, - [2965] = 2760, - [2966] = 2911, - [2967] = 2967, - [2968] = 2968, - [2969] = 2787, - [2970] = 2845, - [2971] = 2803, - [2972] = 2126, - [2973] = 2823, - [2974] = 2774, - [2975] = 2104, + [2963] = 2119, + [2964] = 2120, + [2965] = 2965, + [2966] = 2966, + [2967] = 2828, + [2968] = 2147, + [2969] = 2969, + [2970] = 2966, + [2971] = 2122, + [2972] = 2972, + [2973] = 2115, + [2974] = 2974, + [2975] = 2975, [2976] = 2976, - [2977] = 2958, - [2978] = 2114, + [2977] = 2977, + [2978] = 2780, [2979] = 2979, - [2980] = 2980, - [2981] = 2976, - [2982] = 2790, - [2983] = 2824, - [2984] = 2108, - [2985] = 2147, - [2986] = 2135, - [2987] = 2825, - [2988] = 2105, - [2989] = 2989, + [2980] = 2858, + [2981] = 2116, + [2982] = 2982, + [2983] = 2983, + [2984] = 2984, + [2985] = 2985, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2826, [2990] = 2990, [2991] = 2991, [2992] = 2992, - [2993] = 2827, + [2993] = 2993, [2994] = 2994, - [2995] = 2828, + [2995] = 2995, [2996] = 2996, - [2997] = 2997, - [2998] = 2830, - [2999] = 2782, + [2997] = 2975, + [2998] = 2976, + [2999] = 2837, [3000] = 3000, [3001] = 3001, - [3002] = 3002, - [3003] = 3003, - [3004] = 3004, - [3005] = 2101, - [3006] = 2124, + [3002] = 2891, + [3003] = 2105, + [3004] = 2876, + [3005] = 3005, + [3006] = 2862, [3007] = 3007, - [3008] = 2103, - [3009] = 2835, - [3010] = 2960, - [3011] = 2116, - [3012] = 2836, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3016, - [3017] = 3017, - [3018] = 3018, - [3019] = 2866, + [3008] = 3008, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 3012, + [3013] = 2930, + [3014] = 2815, + [3015] = 2921, + [3016] = 2782, + [3017] = 2776, + [3018] = 2778, + [3019] = 3019, [3020] = 3020, - [3021] = 2096, - [3022] = 2848, - [3023] = 3023, - [3024] = 2881, - [3025] = 2871, - [3026] = 2904, - [3027] = 2849, - [3028] = 3028, - [3029] = 3029, - [3030] = 2838, - [3031] = 2839, - [3032] = 2914, - [3033] = 2863, - [3034] = 3034, - [3035] = 3035, - [3036] = 2805, - [3037] = 3037, - [3038] = 3038, - [3039] = 3039, - [3040] = 2953, - [3041] = 2991, - [3042] = 2937, - [3043] = 3043, - [3044] = 3044, - [3045] = 2761, - [3046] = 2967, - [3047] = 3047, - [3048] = 2841, - [3049] = 2891, - [3050] = 2764, - [3051] = 3051, - [3052] = 2759, - [3053] = 2831, - [3054] = 2898, - [3055] = 3016, + [3021] = 2871, + [3022] = 2873, + [3023] = 2816, + [3024] = 2117, + [3025] = 2865, + [3026] = 2886, + [3027] = 2910, + [3028] = 2786, + [3029] = 2131, + [3030] = 3030, + [3031] = 2934, + [3032] = 2944, + [3033] = 2132, + [3034] = 2782, + [3035] = 2953, + [3036] = 2883, + [3037] = 2889, + [3038] = 2982, + [3039] = 2138, + [3040] = 2139, + [3041] = 2983, + [3042] = 2141, + [3043] = 2142, + [3044] = 3005, + [3045] = 3045, + [3046] = 2940, + [3047] = 2945, + [3048] = 2791, + [3049] = 2820, + [3050] = 3050, + [3051] = 2807, + [3052] = 3052, + [3053] = 2987, + [3054] = 2923, + [3055] = 2829, [3056] = 3056, - [3057] = 3057, - [3058] = 3058, + [3057] = 2972, + [3058] = 2888, [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 3065, - [3066] = 3066, - [3067] = 3067, + [3060] = 2979, + [3061] = 2793, + [3062] = 2916, + [3063] = 2895, + [3064] = 2118, + [3065] = 2823, + [3066] = 2917, + [3067] = 2795, [3068] = 3068, - [3069] = 3069, - [3070] = 3070, + [3069] = 2985, + [3070] = 2977, [3071] = 3071, [3072] = 3072, - [3073] = 3073, - [3074] = 3074, + [3073] = 2952, + [3074] = 2860, [3075] = 3075, [3076] = 3076, [3077] = 3077, [3078] = 3078, [3079] = 3079, [3080] = 3080, - [3081] = 3079, - [3082] = 3082, - [3083] = 3082, - [3084] = 3066, + [3081] = 3081, + [3082] = 3080, + [3083] = 3083, + [3084] = 3084, [3085] = 3085, - [3086] = 3067, - [3087] = 3073, + [3086] = 3086, + [3087] = 3087, [3088] = 3088, [3089] = 3089, - [3090] = 3066, + [3090] = 1496, [3091] = 3091, [3092] = 3092, [3093] = 3093, @@ -6990,557 +7004,575 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3098] = 3098, [3099] = 3099, [3100] = 3100, - [3101] = 3064, + [3101] = 3101, [3102] = 3102, - [3103] = 3103, - [3104] = 3088, + [3103] = 3102, + [3104] = 3104, [3105] = 3105, [3106] = 3106, - [3107] = 3107, + [3107] = 3080, [3108] = 3108, - [3109] = 3066, + [3109] = 3109, [3110] = 3110, - [3111] = 3066, - [3112] = 3069, + [3111] = 3111, + [3112] = 3075, [3113] = 3113, [3114] = 3114, - [3115] = 3115, + [3115] = 3076, [3116] = 3116, - [3117] = 1437, + [3117] = 3117, [3118] = 3118, - [3119] = 3119, + [3119] = 3102, [3120] = 3120, [3121] = 3121, - [3122] = 3088, + [3122] = 3122, [3123] = 3123, - [3124] = 3124, - [3125] = 3066, + [3124] = 3117, + [3125] = 3101, [3126] = 3126, - [3127] = 3070, - [3128] = 3093, - [3129] = 1463, - [3130] = 3070, - [3131] = 3108, - [3132] = 3075, - [3133] = 3076, - [3134] = 3134, - [3135] = 3135, - [3136] = 3082, - [3137] = 3137, - [3138] = 3067, - [3139] = 3066, - [3140] = 3140, - [3141] = 3092, - [3142] = 3093, - [3143] = 3080, + [3127] = 3127, + [3128] = 3114, + [3129] = 3129, + [3130] = 3130, + [3131] = 3131, + [3132] = 3080, + [3133] = 3117, + [3134] = 3086, + [3135] = 3123, + [3136] = 3136, + [3137] = 3092, + [3138] = 3093, + [3139] = 3139, + [3140] = 3101, + [3141] = 3141, + [3142] = 3142, + [3143] = 3105, [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 3062, - [3148] = 3068, + [3145] = 3080, + [3146] = 3109, + [3147] = 3110, + [3148] = 3148, [3149] = 3149, - [3150] = 3150, - [3151] = 3070, + [3150] = 1455, + [3151] = 1457, [3152] = 3152, - [3153] = 3070, + [3153] = 3153, [3154] = 3154, - [3155] = 3076, - [3156] = 3082, - [3157] = 3152, + [3155] = 3155, + [3156] = 3156, + [3157] = 3157, [3158] = 3158, - [3159] = 3066, + [3159] = 3159, [3160] = 3160, - [3161] = 3092, - [3162] = 3093, - [3163] = 3119, - [3164] = 3063, - [3165] = 3165, + [3161] = 3104, + [3162] = 3085, + [3163] = 3094, + [3164] = 3086, + [3165] = 3076, [3166] = 3166, [3167] = 3167, - [3168] = 3102, + [3168] = 3168, [3169] = 3169, - [3170] = 3076, - [3171] = 3171, - [3172] = 3066, - [3173] = 3092, - [3174] = 3093, - [3175] = 3106, + [3170] = 3093, + [3171] = 3101, + [3172] = 3080, + [3173] = 3098, + [3174] = 3109, + [3175] = 3110, [3176] = 3176, - [3177] = 3177, + [3177] = 3123, [3178] = 3178, - [3179] = 3089, - [3180] = 3091, - [3181] = 3074, - [3182] = 3076, - [3183] = 3066, - [3184] = 3075, - [3185] = 3092, - [3186] = 3093, - [3187] = 3187, - [3188] = 3065, - [3189] = 3189, - [3190] = 3076, - [3191] = 3066, - [3192] = 3076, - [3193] = 3092, - [3194] = 3093, - [3195] = 3095, - [3196] = 3076, - [3197] = 3118, - [3198] = 3092, - [3199] = 3093, - [3200] = 3160, - [3201] = 3076, - [3202] = 3099, - [3203] = 3092, - [3204] = 3093, - [3205] = 3205, - [3206] = 3076, - [3207] = 3092, - [3208] = 3093, - [3209] = 3076, - [3210] = 3080, - [3211] = 3092, - [3212] = 3093, - [3213] = 3134, - [3214] = 3214, - [3215] = 3092, - [3216] = 3060, - [3217] = 3176, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3221, - [3222] = 3160, - [3223] = 3097, - [3224] = 3121, - [3225] = 3205, - [3226] = 2883, + [3179] = 3179, + [3180] = 3180, + [3181] = 3156, + [3182] = 3157, + [3183] = 3158, + [3184] = 3159, + [3185] = 3185, + [3186] = 3186, + [3187] = 3079, + [3188] = 3188, + [3189] = 3093, + [3190] = 3190, + [3191] = 3080, + [3192] = 3109, + [3193] = 3110, + [3194] = 3194, + [3195] = 3195, + [3196] = 1385, + [3197] = 1382, + [3198] = 3198, + [3199] = 3084, + [3200] = 3200, + [3201] = 3201, + [3202] = 3202, + [3203] = 3080, + [3204] = 3091, + [3205] = 3093, + [3206] = 3080, + [3207] = 3109, + [3208] = 3110, + [3209] = 3093, + [3210] = 3093, + [3211] = 3080, + [3212] = 3109, + [3213] = 3110, + [3214] = 3093, + [3215] = 3109, + [3216] = 3110, + [3217] = 3093, + [3218] = 3109, + [3219] = 3110, + [3220] = 3093, + [3221] = 3109, + [3222] = 3110, + [3223] = 3093, + [3224] = 3109, + [3225] = 3110, + [3226] = 3202, [3227] = 3227, - [3228] = 2887, - [3229] = 3229, + [3228] = 3228, + [3229] = 3166, [3230] = 3230, [3231] = 3231, - [3232] = 3178, + [3232] = 3232, [3233] = 3233, - [3234] = 3124, - [3235] = 3235, - [3236] = 3082, - [3237] = 3074, - [3238] = 3059, + [3234] = 3084, + [3235] = 3144, + [3236] = 3236, + [3237] = 3237, + [3238] = 3094, [3239] = 3239, - [3240] = 3240, - [3241] = 3241, - [3242] = 3242, - [3243] = 3145, - [3244] = 3100, + [3240] = 3086, + [3241] = 3167, + [3242] = 3168, + [3243] = 3243, + [3244] = 3120, [3245] = 3245, - [3246] = 3246, - [3247] = 3219, + [3246] = 3139, + [3247] = 3247, [3248] = 3248, - [3249] = 3085, - [3250] = 3241, - [3251] = 3067, - [3252] = 3252, - [3253] = 3073, - [3254] = 3254, - [3255] = 3255, + [3249] = 3180, + [3250] = 3091, + [3251] = 3092, + [3252] = 3092, + [3253] = 3087, + [3254] = 3122, + [3255] = 3093, [3256] = 3256, - [3257] = 3231, - [3258] = 3258, - [3259] = 3252, - [3260] = 1380, - [3261] = 3220, - [3262] = 1381, - [3263] = 3263, - [3264] = 3144, - [3265] = 3146, - [3266] = 3150, - [3267] = 3154, - [3268] = 3227, + [3257] = 3257, + [3258] = 3094, + [3259] = 3259, + [3260] = 3080, + [3261] = 3176, + [3262] = 3230, + [3263] = 3233, + [3264] = 3247, + [3265] = 3259, + [3266] = 3096, + [3267] = 3121, + [3268] = 3129, [3269] = 3269, - [3270] = 3270, + [3270] = 3179, [3271] = 3271, - [3272] = 3076, - [3273] = 3273, - [3274] = 3069, - [3275] = 3273, - [3276] = 3169, + [3272] = 3185, + [3273] = 3239, + [3274] = 3096, + [3275] = 3275, + [3276] = 3276, [3277] = 3277, - [3278] = 3240, - [3279] = 3075, - [3280] = 3066, - [3281] = 3229, - [3282] = 3282, - [3283] = 3092, - [3284] = 3284, - [3285] = 3093, - [3286] = 3286, - [3287] = 3221, - [3288] = 3121, - [3289] = 3284, - [3290] = 3290, - [3291] = 3124, - [3292] = 3077, + [3278] = 3126, + [3279] = 3153, + [3280] = 3280, + [3281] = 3281, + [3282] = 2878, + [3283] = 3178, + [3284] = 3097, + [3285] = 3077, + [3286] = 2880, + [3287] = 3287, + [3288] = 3280, + [3289] = 3100, + [3290] = 3101, + [3291] = 3088, + [3292] = 3079, [3293] = 3293, - [3294] = 3290, - [3295] = 3064, + [3294] = 3294, + [3295] = 3109, [3296] = 3296, - [3297] = 3102, - [3298] = 3068, - [3299] = 3085, - [3300] = 3245, - [3301] = 3221, - [3302] = 3098, - [3303] = 3241, - [3304] = 3221, - [3305] = 3305, - [3306] = 3286, - [3307] = 3123, - [3308] = 3120, - [3309] = 3255, + [3297] = 3297, + [3298] = 3298, + [3299] = 3299, + [3300] = 3300, + [3301] = 3276, + [3302] = 3281, + [3303] = 3110, + [3304] = 3104, + [3305] = 3144, + [3306] = 3188, + [3307] = 3239, + [3308] = 3105, + [3309] = 3106, [3310] = 3310, - [3311] = 3311, - [3312] = 3305, - [3313] = 3239, - [3314] = 3277, - [3315] = 3079, - [3316] = 3107, - [3317] = 3105, - [3318] = 3218, - [3319] = 3126, - [3320] = 3320, - [3321] = 3263, - [3322] = 3061, - [3323] = 3235, - [3324] = 3320, - [3325] = 1407, - [3326] = 3114, - [3327] = 3071, - [3328] = 3110, - [3329] = 3286, - [3330] = 3120, - [3331] = 3114, - [3332] = 3120, - [3333] = 3114, - [3334] = 3334, - [3335] = 3113, - [3336] = 3189, - [3337] = 3221, - [3338] = 3057, - [3339] = 3242, - [3340] = 3160, - [3341] = 3341, - [3342] = 3342, - [3343] = 3343, - [3344] = 3344, - [3345] = 3345, - [3346] = 3346, - [3347] = 3347, - [3348] = 3348, - [3349] = 3349, - [3350] = 3350, + [3311] = 3139, + [3312] = 3105, + [3313] = 3106, + [3314] = 3231, + [3315] = 3315, + [3316] = 3194, + [3317] = 3275, + [3318] = 3086, + [3319] = 3144, + [3320] = 3237, + [3321] = 3195, + [3322] = 3144, + [3323] = 3243, + [3324] = 3200, + [3325] = 3154, + [3326] = 3326, + [3327] = 3294, + [3328] = 3296, + [3329] = 3186, + [3330] = 3080, + [3331] = 3081, + [3332] = 3332, + [3333] = 3333, + [3334] = 3109, + [3335] = 3083, + [3336] = 3131, + [3337] = 3110, + [3338] = 3277, + [3339] = 3271, + [3340] = 3142, + [3341] = 3227, + [3342] = 3136, + [3343] = 3326, + [3344] = 3149, + [3345] = 3200, + [3346] = 3326, + [3347] = 3136, + [3348] = 3326, + [3349] = 3136, + [3350] = 3113, [3351] = 3351, - [3352] = 3352, - [3353] = 3353, - [3354] = 3354, - [3355] = 3355, - [3356] = 3356, + [3352] = 3333, + [3353] = 3198, + [3354] = 3114, + [3355] = 3310, + [3356] = 3155, [3357] = 3357, [3358] = 3358, [3359] = 3359, [3360] = 3360, [3361] = 3361, [3362] = 3362, - [3363] = 3344, - [3364] = 3364, + [3363] = 3363, + [3364] = 3362, [3365] = 3365, [3366] = 3366, - [3367] = 3341, + [3367] = 3367, [3368] = 3368, [3369] = 3369, - [3370] = 3360, + [3370] = 3370, [3371] = 3371, [3372] = 3372, - [3373] = 3373, + [3373] = 3368, [3374] = 3374, [3375] = 3375, [3376] = 3376, [3377] = 3377, - [3378] = 3349, + [3378] = 3378, [3379] = 3379, [3380] = 3380, [3381] = 3381, - [3382] = 3362, - [3383] = 3364, - [3384] = 3377, - [3385] = 3385, - [3386] = 3341, - [3387] = 3387, - [3388] = 174, + [3382] = 3382, + [3383] = 3383, + [3384] = 3366, + [3385] = 3382, + [3386] = 3386, + [3387] = 3357, + [3388] = 3388, [3389] = 3389, [3390] = 3390, [3391] = 3391, - [3392] = 3356, + [3392] = 3392, [3393] = 3393, - [3394] = 3348, + [3394] = 3394, [3395] = 3395, [3396] = 3396, [3397] = 3397, [3398] = 3398, [3399] = 3399, [3400] = 3400, - [3401] = 3365, - [3402] = 3372, + [3401] = 3401, + [3402] = 3402, [3403] = 3403, [3404] = 3404, - [3405] = 3359, - [3406] = 3342, + [3405] = 3397, + [3406] = 3406, [3407] = 3407, - [3408] = 3408, + [3408] = 3395, [3409] = 3409, [3410] = 3410, - [3411] = 3346, + [3411] = 3394, [3412] = 3412, - [3413] = 3371, + [3413] = 3413, [3414] = 3414, - [3415] = 3415, - [3416] = 3374, + [3415] = 3369, + [3416] = 3416, [3417] = 3417, [3418] = 3418, - [3419] = 3419, - [3420] = 3350, - [3421] = 3421, + [3419] = 3361, + [3420] = 157, + [3421] = 3365, [3422] = 3422, - [3423] = 3379, + [3423] = 3357, [3424] = 3424, - [3425] = 3360, - [3426] = 3426, + [3425] = 3425, + [3426] = 3370, [3427] = 3427, [3428] = 3428, - [3429] = 3381, - [3430] = 3430, + [3429] = 3424, + [3430] = 3428, [3431] = 3431, [3432] = 3432, [3433] = 3433, [3434] = 3434, [3435] = 3435, [3436] = 3436, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, - [3440] = 3440, - [3441] = 3422, - [3442] = 3442, - [3443] = 3397, - [3444] = 3444, + [3437] = 3386, + [3438] = 3403, + [3439] = 3390, + [3440] = 3390, + [3441] = 3441, + [3442] = 3366, + [3443] = 3443, + [3444] = 3398, [3445] = 3445, - [3446] = 3410, - [3447] = 3437, - [3448] = 3393, - [3449] = 3393, - [3450] = 3434, + [3446] = 3446, + [3447] = 3416, + [3448] = 3417, + [3449] = 3449, + [3450] = 3450, [3451] = 3451, - [3452] = 3440, - [3453] = 3360, - [3454] = 3454, - [3455] = 3439, - [3456] = 3428, + [3452] = 3407, + [3453] = 3375, + [3454] = 3433, + [3455] = 3455, + [3456] = 3403, [3457] = 3457, - [3458] = 3458, - [3459] = 3459, - [3460] = 3391, - [3461] = 3461, - [3462] = 3399, + [3458] = 3363, + [3459] = 3393, + [3460] = 3460, + [3461] = 3399, + [3462] = 3462, [3463] = 3463, - [3464] = 3464, - [3465] = 3389, - [3466] = 3342, + [3464] = 3449, + [3465] = 3465, + [3466] = 3466, [3467] = 3467, - [3468] = 3468, - [3469] = 3428, - [3470] = 3470, - [3471] = 3426, - [3472] = 3472, - [3473] = 3430, - [3474] = 3428, - [3475] = 3475, + [3468] = 3409, + [3469] = 3469, + [3470] = 3400, + [3471] = 3471, + [3472] = 3376, + [3473] = 3412, + [3474] = 3425, + [3475] = 3428, [3476] = 3476, - [3477] = 3414, + [3477] = 3477, [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 3343, + [3481] = 3396, [3482] = 3482, - [3483] = 3385, - [3484] = 172, - [3485] = 3464, + [3483] = 3483, + [3484] = 3484, + [3485] = 3485, [3486] = 3486, - [3487] = 3487, - [3488] = 3368, + [3487] = 3357, + [3488] = 3465, [3489] = 3489, [3490] = 3490, - [3491] = 3491, - [3492] = 3442, + [3491] = 3478, + [3492] = 3492, [3493] = 3493, - [3494] = 3351, - [3495] = 3353, + [3494] = 3418, + [3495] = 3467, [3496] = 3496, - [3497] = 3497, + [3497] = 3428, [3498] = 3498, - [3499] = 3361, + [3499] = 3499, [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3380, - [3505] = 3369, - [3506] = 3342, - [3507] = 3500, - [3508] = 3379, + [3501] = 3371, + [3502] = 3367, + [3503] = 3489, + [3504] = 3422, + [3505] = 3401, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, [3509] = 3509, - [3510] = 3347, - [3511] = 3397, - [3512] = 3493, - [3513] = 3399, - [3514] = 3400, - [3515] = 3403, - [3516] = 3372, - [3517] = 3353, + [3510] = 3486, + [3511] = 3403, + [3512] = 3512, + [3513] = 3360, + [3514] = 3368, + [3515] = 3370, + [3516] = 3516, + [3517] = 3517, [3518] = 3518, - [3519] = 3397, - [3520] = 3400, + [3519] = 3378, + [3520] = 3520, [3521] = 3521, - [3522] = 3522, - [3523] = 3523, - [3524] = 3461, - [3525] = 3490, - [3526] = 3428, - [3527] = 3358, - [3528] = 3417, - [3529] = 3353, - [3530] = 3374, - [3531] = 3451, - [3532] = 3361, - [3533] = 3533, - [3534] = 3374, - [3535] = 3369, + [3522] = 3450, + [3523] = 3388, + [3524] = 3391, + [3525] = 3382, + [3526] = 3526, + [3527] = 3395, + [3528] = 3528, + [3529] = 3433, + [3530] = 3413, + [3531] = 3357, + [3532] = 3369, + [3533] = 3416, + [3534] = 3534, + [3535] = 3418, [3536] = 3536, - [3537] = 3351, - [3538] = 3399, - [3539] = 3372, - [3540] = 3540, - [3541] = 3360, - [3542] = 3408, - [3543] = 3490, - [3544] = 3361, + [3537] = 3537, + [3538] = 3538, + [3539] = 3539, + [3540] = 3390, + [3541] = 3476, + [3542] = 3477, + [3543] = 3543, + [3544] = 3486, [3545] = 3545, - [3546] = 3369, + [3546] = 3409, [3547] = 3547, - [3548] = 3372, - [3549] = 3490, - [3550] = 3361, - [3551] = 3369, - [3552] = 3372, - [3553] = 3361, - [3554] = 3369, - [3555] = 3372, - [3556] = 3361, - [3557] = 3361, - [3558] = 3361, - [3559] = 3361, - [3560] = 3361, - [3561] = 3409, - [3562] = 3562, - [3563] = 3490, - [3564] = 3564, - [3565] = 3565, - [3566] = 3463, - [3567] = 3522, - [3568] = 3568, - [3569] = 3355, - [3570] = 3373, - [3571] = 3509, - [3572] = 3354, - [3573] = 3345, - [3574] = 3574, - [3575] = 3398, - [3576] = 3498, - [3577] = 3565, - [3578] = 3418, - [3579] = 3533, - [3580] = 3376, - [3581] = 3581, - [3582] = 3489, - [3583] = 3497, - [3584] = 3501, - [3585] = 3424, - [3586] = 3418, - [3587] = 3587, - [3588] = 3432, - [3589] = 3476, - [3590] = 3431, - [3591] = 3502, + [3548] = 3370, + [3549] = 3383, + [3550] = 3534, + [3551] = 3378, + [3552] = 3552, + [3553] = 3382, + [3554] = 3554, + [3555] = 3469, + [3556] = 3556, + [3557] = 3369, + [3558] = 3418, + [3559] = 3559, + [3560] = 3509, + [3561] = 3479, + [3562] = 3516, + [3563] = 3486, + [3564] = 3378, + [3565] = 3401, + [3566] = 3382, + [3567] = 3567, + [3568] = 3418, + [3569] = 3486, + [3570] = 3378, + [3571] = 3382, + [3572] = 3418, + [3573] = 3378, + [3574] = 3382, + [3575] = 3418, + [3576] = 3378, + [3577] = 3378, + [3578] = 3378, + [3579] = 3378, + [3580] = 3378, + [3581] = 3463, + [3582] = 3582, + [3583] = 3451, + [3584] = 3482, + [3585] = 3359, + [3586] = 3498, + [3587] = 3410, + [3588] = 3588, + [3589] = 3589, + [3590] = 3521, + [3591] = 3378, [3592] = 3445, - [3593] = 3428, - [3594] = 3439, - [3595] = 3357, + [3593] = 3593, + [3594] = 3539, + [3595] = 3567, [3596] = 3596, - [3597] = 3597, + [3597] = 3507, [3598] = 3598, - [3599] = 3361, - [3600] = 3600, - [3601] = 3568, + [3599] = 3377, + [3600] = 3589, + [3601] = 3432, [3602] = 3602, - [3603] = 3472, - [3604] = 3472, - [3605] = 3602, - [3606] = 3598, - [3607] = 3607, - [3608] = 3565, - [3609] = 3463, - [3610] = 3568, - [3611] = 3355, - [3612] = 3612, - [3613] = 3613, - [3614] = 3565, - [3615] = 3355, - [3616] = 3616, - [3617] = 3472, - [3618] = 3355, - [3619] = 3355, - [3620] = 3355, - [3621] = 3412, - [3622] = 3607, - [3623] = 3438, - [3624] = 3486, - [3625] = 3366, - [3626] = 3489, - [3627] = 3409, - [3628] = 3375, - [3629] = 3564, - [3630] = 3490, - [3631] = 3415, - [3632] = 3419, - [3633] = 3454, - [3634] = 3418, - [3635] = 3348, - [3636] = 3547, - [3637] = 3467, - [3638] = 3638, - [3639] = 3436, - [3640] = 3521, - [3641] = 3369, - [3642] = 3642, - [3643] = 3643, + [3603] = 3603, + [3604] = 3604, + [3605] = 3520, + [3606] = 3604, + [3607] = 3543, + [3608] = 3512, + [3609] = 3609, + [3610] = 3610, + [3611] = 3536, + [3612] = 3377, + [3613] = 3508, + [3614] = 3413, + [3615] = 3403, + [3616] = 3403, + [3617] = 3617, + [3618] = 3618, + [3619] = 160, + [3620] = 3559, + [3621] = 3479, + [3622] = 3617, + [3623] = 3623, + [3624] = 3435, + [3625] = 3547, + [3626] = 3359, + [3627] = 3498, + [3628] = 3588, + [3629] = 3589, + [3630] = 3630, + [3631] = 3366, + [3632] = 3359, + [3633] = 3589, + [3634] = 3618, + [3635] = 3518, + [3636] = 3589, + [3637] = 3589, + [3638] = 3589, + [3639] = 3377, + [3640] = 3623, + [3641] = 3641, + [3642] = 3392, + [3643] = 3446, [3644] = 3644, - [3645] = 3645, - [3646] = 3646, - [3647] = 3647, - [3648] = 3648, + [3645] = 3374, + [3646] = 3462, + [3647] = 3499, + [3648] = 3528, + [3649] = 3460, + [3650] = 3413, + [3651] = 3554, + [3652] = 3436, + [3653] = 3588, + [3654] = 3538, + [3655] = 3486, + [3656] = 3512, + [3657] = 3484, + [3658] = 3537, + [3659] = 3383, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3663, + [3664] = 3664, + [3665] = 3665, + [3666] = 3666, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +const TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -7569,7 +7601,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -7579,7 +7611,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -7593,48 +7625,50 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, - {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, - {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, - {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, - {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, - {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, - {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, - {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, - {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, - {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, - {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, - {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, - {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, - {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, - {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, - {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, - {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, - {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, - {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, - {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, - {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, - {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static TSCharacterRange sym_identifier_character_set_3[] = { +const TSCharacterRange sym_identifier_character_set_3[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -7662,7 +7696,7 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -7673,7 +7707,7 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -7686,39 +7720,42 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, - {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, - {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, - {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, - {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, - {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, - {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, - {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, - {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, - {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, - {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, - {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, - {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, - {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, - {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, - {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, - {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, - {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, - {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, - {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -7772,7 +7809,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(1); @@ -7819,7 +7856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 3: ADVANCE_MAP( @@ -7858,7 +7895,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 4: ADVANCE_MAP( @@ -7898,7 +7935,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 5: ADVANCE_MAP( @@ -7931,7 +7968,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 6: ADVANCE_MAP( @@ -7963,7 +8000,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 7: ADVANCE_MAP( @@ -7995,7 +8032,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 8: ADVANCE_MAP( @@ -8022,7 +8059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 9: ADVANCE_MAP( @@ -8047,7 +8084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 10: ADVANCE_MAP( @@ -8079,7 +8116,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 11: ADVANCE_MAP( @@ -8115,7 +8152,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 12: ADVANCE_MAP( @@ -8146,7 +8183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 13: ADVANCE_MAP( @@ -8177,7 +8214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 14: ADVANCE_MAP( @@ -8211,7 +8248,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 15: ADVANCE_MAP( @@ -8241,7 +8278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 16: ADVANCE_MAP( @@ -8268,7 +8305,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 17: ADVANCE_MAP( @@ -8286,7 +8323,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 18: ADVANCE_MAP( @@ -8302,6 +8339,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 96, '.', 133, '/', 98, + ':', 82, ';', 73, '<', 129, '=', 122, @@ -8317,7 +8355,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 19: ADVANCE_MAP( @@ -8349,7 +8387,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 20: ADVANCE_MAP( @@ -8373,7 +8411,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 21: if (lookahead == '"') ADVANCE(156); @@ -8385,7 +8423,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'c') ADVANCE(179); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 22: ADVANCE_MAP( @@ -8403,7 +8441,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 23: ADVANCE_MAP( @@ -8423,7 +8461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 24: if (lookahead == '&') ADVANCE(107); @@ -8459,7 +8497,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 28: if (lookahead == '*') ADVANCE(174); @@ -8632,7 +8670,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 66: - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 67: if (lookahead != 0 && @@ -8678,7 +8716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 69: if (eof) ADVANCE(72); @@ -8716,7 +8754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(69); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 70: if (eof) ADVANCE(72); @@ -8755,7 +8793,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 71: if (eof) ADVANCE(72); @@ -8788,7 +8826,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(191); END_STATE(); case 72: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -9258,77 +9296,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 177: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(74); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 178: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(156); if (lookahead == '\'') ADVANCE(26); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 179: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(156); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); if (lookahead == '#') ADVANCE(66); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(188); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(183); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(187); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(189); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(184); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(181); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(186); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(190); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(177); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 190: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(185); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(191); END_STATE(); case 192: ACCEPT_TOKEN(sym_shebang); @@ -10175,7 +10213,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 3, .external_lex_state = 2}, [66] = {.lex_state = 3, .external_lex_state = 2}, [67] = {.lex_state = 2, .external_lex_state = 2}, - [68] = {.lex_state = 2, .external_lex_state = 2}, + [68] = {.lex_state = 4, .external_lex_state = 2}, [69] = {.lex_state = 2, .external_lex_state = 2}, [70] = {.lex_state = 2, .external_lex_state = 2}, [71] = {.lex_state = 2, .external_lex_state = 2}, @@ -10190,36 +10228,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 2, .external_lex_state = 2}, [84] = {.lex_state = 4, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 2}, - [86] = {.lex_state = 4, .external_lex_state = 2}, - [87] = {.lex_state = 4, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, - [89] = {.lex_state = 2, .external_lex_state = 2}, - [90] = {.lex_state = 2, .external_lex_state = 2}, - [91] = {.lex_state = 2, .external_lex_state = 2}, - [92] = {.lex_state = 2, .external_lex_state = 2}, - [93] = {.lex_state = 2, .external_lex_state = 2}, + [85] = {.lex_state = 2, .external_lex_state = 2}, + [86] = {.lex_state = 2, .external_lex_state = 2}, + [87] = {.lex_state = 2, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, + [89] = {.lex_state = 4, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 4, .external_lex_state = 2}, + [92] = {.lex_state = 4, .external_lex_state = 2}, + [93] = {.lex_state = 4, .external_lex_state = 2}, [94] = {.lex_state = 2, .external_lex_state = 2}, - [95] = {.lex_state = 2, .external_lex_state = 2}, - [96] = {.lex_state = 2, .external_lex_state = 2}, + [95] = {.lex_state = 4, .external_lex_state = 2}, + [96] = {.lex_state = 4, .external_lex_state = 2}, [97] = {.lex_state = 4, .external_lex_state = 2}, [98] = {.lex_state = 2, .external_lex_state = 2}, - [99] = {.lex_state = 4, .external_lex_state = 2}, - [100] = {.lex_state = 4, .external_lex_state = 2}, - [101] = {.lex_state = 4, .external_lex_state = 2}, - [102] = {.lex_state = 4, .external_lex_state = 2}, - [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 4, .external_lex_state = 2}, + [99] = {.lex_state = 2, .external_lex_state = 2}, + [100] = {.lex_state = 2, .external_lex_state = 2}, + [101] = {.lex_state = 2, .external_lex_state = 2}, + [102] = {.lex_state = 2, .external_lex_state = 2}, + [103] = {.lex_state = 2, .external_lex_state = 2}, + [104] = {.lex_state = 2, .external_lex_state = 2}, [105] = {.lex_state = 4, .external_lex_state = 2}, [106] = {.lex_state = 4, .external_lex_state = 2}, [107] = {.lex_state = 4, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, + [108] = {.lex_state = 2, .external_lex_state = 2}, [109] = {.lex_state = 4, .external_lex_state = 2}, [110] = {.lex_state = 4, .external_lex_state = 2}, [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, + [112] = {.lex_state = 2, .external_lex_state = 2}, [113] = {.lex_state = 4, .external_lex_state = 2}, [114] = {.lex_state = 4, .external_lex_state = 2}, [115] = {.lex_state = 4, .external_lex_state = 2}, @@ -10228,7 +10266,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [118] = {.lex_state = 4, .external_lex_state = 2}, [119] = {.lex_state = 4, .external_lex_state = 2}, [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 2, .external_lex_state = 2}, + [121] = {.lex_state = 4, .external_lex_state = 2}, [122] = {.lex_state = 4, .external_lex_state = 2}, [123] = {.lex_state = 4, .external_lex_state = 2}, [124] = {.lex_state = 4, .external_lex_state = 2}, @@ -10237,8 +10275,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [127] = {.lex_state = 4, .external_lex_state = 2}, [128] = {.lex_state = 4, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 2}, + [130] = {.lex_state = 4, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, [132] = {.lex_state = 4, .external_lex_state = 2}, [133] = {.lex_state = 2, .external_lex_state = 2}, [134] = {.lex_state = 11, .external_lex_state = 2}, @@ -10247,56 +10285,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 2, .external_lex_state = 2}, [138] = {.lex_state = 11, .external_lex_state = 2}, [139] = {.lex_state = 11, .external_lex_state = 2}, - [140] = {.lex_state = 11, .external_lex_state = 2}, + [140] = {.lex_state = 2, .external_lex_state = 2}, [141] = {.lex_state = 11, .external_lex_state = 2}, [142] = {.lex_state = 11, .external_lex_state = 2}, - [143] = {.lex_state = 2, .external_lex_state = 2}, + [143] = {.lex_state = 11, .external_lex_state = 2}, [144] = {.lex_state = 11, .external_lex_state = 2}, [145] = {.lex_state = 11, .external_lex_state = 2}, [146] = {.lex_state = 11, .external_lex_state = 2}, - [147] = {.lex_state = 11, .external_lex_state = 2}, - [148] = {.lex_state = 11, .external_lex_state = 2}, + [147] = {.lex_state = 2, .external_lex_state = 2}, + [148] = {.lex_state = 2, .external_lex_state = 2}, [149] = {.lex_state = 11, .external_lex_state = 2}, - [150] = {.lex_state = 2, .external_lex_state = 2}, - [151] = {.lex_state = 2, .external_lex_state = 2}, + [150] = {.lex_state = 11, .external_lex_state = 2}, + [151] = {.lex_state = 11, .external_lex_state = 2}, [152] = {.lex_state = 2, .external_lex_state = 2}, [153] = {.lex_state = 11, .external_lex_state = 2}, [154] = {.lex_state = 11, .external_lex_state = 2}, - [155] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 11, .external_lex_state = 2}, [156] = {.lex_state = 2, .external_lex_state = 2}, - [157] = {.lex_state = 4, .external_lex_state = 2}, + [157] = {.lex_state = 2, .external_lex_state = 2}, [158] = {.lex_state = 11, .external_lex_state = 2}, [159] = {.lex_state = 2, .external_lex_state = 2}, [160] = {.lex_state = 2, .external_lex_state = 2}, [161] = {.lex_state = 2, .external_lex_state = 2}, [162] = {.lex_state = 11, .external_lex_state = 2}, - [163] = {.lex_state = 2, .external_lex_state = 2}, - [164] = {.lex_state = 11, .external_lex_state = 2}, - [165] = {.lex_state = 11, .external_lex_state = 2}, + [163] = {.lex_state = 11, .external_lex_state = 2}, + [164] = {.lex_state = 2, .external_lex_state = 2}, + [165] = {.lex_state = 2, .external_lex_state = 2}, [166] = {.lex_state = 11, .external_lex_state = 2}, [167] = {.lex_state = 11, .external_lex_state = 2}, - [168] = {.lex_state = 11, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 2, .external_lex_state = 2}, - [171] = {.lex_state = 2, .external_lex_state = 2}, - [172] = {.lex_state = 2, .external_lex_state = 2}, + [168] = {.lex_state = 2, .external_lex_state = 2}, + [169] = {.lex_state = 2, .external_lex_state = 2}, + [170] = {.lex_state = 11, .external_lex_state = 2}, + [171] = {.lex_state = 11, .external_lex_state = 2}, + [172] = {.lex_state = 11, .external_lex_state = 2}, [173] = {.lex_state = 2, .external_lex_state = 2}, [174] = {.lex_state = 2, .external_lex_state = 2}, [175] = {.lex_state = 2, .external_lex_state = 2}, - [176] = {.lex_state = 2, .external_lex_state = 2}, + [176] = {.lex_state = 11, .external_lex_state = 2}, [177] = {.lex_state = 2, .external_lex_state = 2}, [178] = {.lex_state = 11, .external_lex_state = 2}, - [179] = {.lex_state = 4, .external_lex_state = 2}, + [179] = {.lex_state = 2, .external_lex_state = 2}, [180] = {.lex_state = 2, .external_lex_state = 2}, - [181] = {.lex_state = 11, .external_lex_state = 2}, - [182] = {.lex_state = 2, .external_lex_state = 2}, - [183] = {.lex_state = 11, .external_lex_state = 2}, - [184] = {.lex_state = 2, .external_lex_state = 2}, - [185] = {.lex_state = 2, .external_lex_state = 2}, - [186] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 2, .external_lex_state = 2}, + [182] = {.lex_state = 4, .external_lex_state = 2}, + [183] = {.lex_state = 2, .external_lex_state = 2}, + [184] = {.lex_state = 4, .external_lex_state = 2}, + [185] = {.lex_state = 11, .external_lex_state = 2}, + [186] = {.lex_state = 2, .external_lex_state = 2}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 11, .external_lex_state = 2}, + [189] = {.lex_state = 2, .external_lex_state = 2}, [190] = {.lex_state = 11, .external_lex_state = 2}, [191] = {.lex_state = 11, .external_lex_state = 2}, [192] = {.lex_state = 11, .external_lex_state = 2}, @@ -10304,56 +10342,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 11, .external_lex_state = 2}, [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 2, .external_lex_state = 2}, + [197] = {.lex_state = 11, .external_lex_state = 2}, [198] = {.lex_state = 4, .external_lex_state = 2}, [199] = {.lex_state = 4, .external_lex_state = 2}, [200] = {.lex_state = 4, .external_lex_state = 2}, [201] = {.lex_state = 11, .external_lex_state = 2}, - [202] = {.lex_state = 4, .external_lex_state = 2}, - [203] = {.lex_state = 4, .external_lex_state = 2}, - [204] = {.lex_state = 4, .external_lex_state = 2}, - [205] = {.lex_state = 11, .external_lex_state = 2}, + [202] = {.lex_state = 11, .external_lex_state = 2}, + [203] = {.lex_state = 11, .external_lex_state = 2}, + [204] = {.lex_state = 11, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, [206] = {.lex_state = 4, .external_lex_state = 2}, - [207] = {.lex_state = 11, .external_lex_state = 2}, - [208] = {.lex_state = 11, .external_lex_state = 2}, + [207] = {.lex_state = 4, .external_lex_state = 2}, + [208] = {.lex_state = 4, .external_lex_state = 2}, [209] = {.lex_state = 4, .external_lex_state = 2}, [210] = {.lex_state = 4, .external_lex_state = 2}, - [211] = {.lex_state = 11, .external_lex_state = 2}, + [211] = {.lex_state = 4, .external_lex_state = 2}, [212] = {.lex_state = 11, .external_lex_state = 2}, - [213] = {.lex_state = 4, .external_lex_state = 2}, + [213] = {.lex_state = 11, .external_lex_state = 2}, [214] = {.lex_state = 4, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, [217] = {.lex_state = 11, .external_lex_state = 2}, - [218] = {.lex_state = 11, .external_lex_state = 2}, + [218] = {.lex_state = 13, .external_lex_state = 2}, [219] = {.lex_state = 13, .external_lex_state = 2}, [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 11, .external_lex_state = 2}, - [222] = {.lex_state = 11, .external_lex_state = 2}, + [221] = {.lex_state = 13, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, [223] = {.lex_state = 13, .external_lex_state = 2}, - [224] = {.lex_state = 11, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, + [224] = {.lex_state = 13, .external_lex_state = 2}, + [225] = {.lex_state = 11, .external_lex_state = 2}, [226] = {.lex_state = 11, .external_lex_state = 2}, - [227] = {.lex_state = 13, .external_lex_state = 2}, + [227] = {.lex_state = 11, .external_lex_state = 2}, [228] = {.lex_state = 11, .external_lex_state = 2}, - [229] = {.lex_state = 11, .external_lex_state = 2}, + [229] = {.lex_state = 13, .external_lex_state = 2}, [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, + [231] = {.lex_state = 11, .external_lex_state = 2}, [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 13, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, + [233] = {.lex_state = 11, .external_lex_state = 2}, + [234] = {.lex_state = 11, .external_lex_state = 2}, + [235] = {.lex_state = 11, .external_lex_state = 2}, [236] = {.lex_state = 11, .external_lex_state = 2}, - [237] = {.lex_state = 11, .external_lex_state = 2}, + [237] = {.lex_state = 13, .external_lex_state = 2}, [238] = {.lex_state = 11, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, [240] = {.lex_state = 11, .external_lex_state = 2}, [241] = {.lex_state = 11, .external_lex_state = 2}, - [242] = {.lex_state = 13, .external_lex_state = 2}, + [242] = {.lex_state = 11, .external_lex_state = 2}, [243] = {.lex_state = 13, .external_lex_state = 2}, [244] = {.lex_state = 11, .external_lex_state = 2}, - [245] = {.lex_state = 11, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, + [246] = {.lex_state = 11, .external_lex_state = 2}, [247] = {.lex_state = 11, .external_lex_state = 2}, [248] = {.lex_state = 11, .external_lex_state = 2}, [249] = {.lex_state = 11, .external_lex_state = 2}, @@ -10439,7 +10477,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [329] = {.lex_state = 11, .external_lex_state = 2}, [330] = {.lex_state = 11, .external_lex_state = 2}, [331] = {.lex_state = 11, .external_lex_state = 2}, - [332] = {.lex_state = 69, .external_lex_state = 2}, + [332] = {.lex_state = 11, .external_lex_state = 2}, [333] = {.lex_state = 11, .external_lex_state = 2}, [334] = {.lex_state = 11, .external_lex_state = 2}, [335] = {.lex_state = 11, .external_lex_state = 2}, @@ -10448,7 +10486,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [338] = {.lex_state = 11, .external_lex_state = 2}, [339] = {.lex_state = 11, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, - [341] = {.lex_state = 11, .external_lex_state = 2}, + [341] = {.lex_state = 69, .external_lex_state = 2}, [342] = {.lex_state = 11, .external_lex_state = 2}, [343] = {.lex_state = 11, .external_lex_state = 2}, [344] = {.lex_state = 11, .external_lex_state = 2}, @@ -10477,14 +10515,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [367] = {.lex_state = 11, .external_lex_state = 2}, [368] = {.lex_state = 11, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, - [370] = {.lex_state = 69, .external_lex_state = 2}, - [371] = {.lex_state = 69, .external_lex_state = 2}, + [370] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 12, .external_lex_state = 2}, [372] = {.lex_state = 69, .external_lex_state = 2}, - [373] = {.lex_state = 69, .external_lex_state = 2}, + [373] = {.lex_state = 12, .external_lex_state = 2}, [374] = {.lex_state = 69, .external_lex_state = 2}, [375] = {.lex_state = 69, .external_lex_state = 2}, [376] = {.lex_state = 12, .external_lex_state = 2}, - [377] = {.lex_state = 69, .external_lex_state = 2}, + [377] = {.lex_state = 12, .external_lex_state = 2}, [378] = {.lex_state = 69, .external_lex_state = 2}, [379] = {.lex_state = 69, .external_lex_state = 2}, [380] = {.lex_state = 12, .external_lex_state = 2}, @@ -10492,41 +10530,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [382] = {.lex_state = 69, .external_lex_state = 2}, [383] = {.lex_state = 69, .external_lex_state = 2}, [384] = {.lex_state = 69, .external_lex_state = 2}, - [385] = {.lex_state = 69, .external_lex_state = 2}, - [386] = {.lex_state = 69, .external_lex_state = 2}, + [385] = {.lex_state = 12, .external_lex_state = 2}, + [386] = {.lex_state = 12, .external_lex_state = 2}, [387] = {.lex_state = 69, .external_lex_state = 2}, [388] = {.lex_state = 69, .external_lex_state = 2}, - [389] = {.lex_state = 12, .external_lex_state = 2}, - [390] = {.lex_state = 12, .external_lex_state = 2}, + [389] = {.lex_state = 69, .external_lex_state = 2}, + [390] = {.lex_state = 69, .external_lex_state = 2}, [391] = {.lex_state = 69, .external_lex_state = 2}, [392] = {.lex_state = 69, .external_lex_state = 2}, [393] = {.lex_state = 69, .external_lex_state = 2}, - [394] = {.lex_state = 12, .external_lex_state = 2}, - [395] = {.lex_state = 69, .external_lex_state = 2}, - [396] = {.lex_state = 69, .external_lex_state = 2}, + [394] = {.lex_state = 69, .external_lex_state = 2}, + [395] = {.lex_state = 12, .external_lex_state = 2}, + [396] = {.lex_state = 12, .external_lex_state = 2}, [397] = {.lex_state = 69, .external_lex_state = 2}, [398] = {.lex_state = 69, .external_lex_state = 2}, [399] = {.lex_state = 69, .external_lex_state = 2}, - [400] = {.lex_state = 69, .external_lex_state = 2}, + [400] = {.lex_state = 12, .external_lex_state = 2}, [401] = {.lex_state = 12, .external_lex_state = 2}, - [402] = {.lex_state = 69, .external_lex_state = 2}, - [403] = {.lex_state = 69, .external_lex_state = 2}, - [404] = {.lex_state = 69, .external_lex_state = 2}, + [402] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 12, .external_lex_state = 2}, + [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 69, .external_lex_state = 2}, - [406] = {.lex_state = 12, .external_lex_state = 2}, - [407] = {.lex_state = 12, .external_lex_state = 2}, - [408] = {.lex_state = 12, .external_lex_state = 2}, + [406] = {.lex_state = 69, .external_lex_state = 2}, + [407] = {.lex_state = 69, .external_lex_state = 2}, + [408] = {.lex_state = 69, .external_lex_state = 2}, [409] = {.lex_state = 69, .external_lex_state = 2}, - [410] = {.lex_state = 12, .external_lex_state = 2}, - [411] = {.lex_state = 12, .external_lex_state = 2}, - [412] = {.lex_state = 12, .external_lex_state = 2}, - [413] = {.lex_state = 12, .external_lex_state = 2}, - [414] = {.lex_state = 12, .external_lex_state = 2}, - [415] = {.lex_state = 12, .external_lex_state = 2}, - [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 11, .external_lex_state = 2}, + [410] = {.lex_state = 69, .external_lex_state = 2}, + [411] = {.lex_state = 69, .external_lex_state = 2}, + [412] = {.lex_state = 69, .external_lex_state = 2}, + [413] = {.lex_state = 69, .external_lex_state = 2}, + [414] = {.lex_state = 69, .external_lex_state = 2}, + [415] = {.lex_state = 11, .external_lex_state = 2}, + [416] = {.lex_state = 11, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, [418] = {.lex_state = 11, .external_lex_state = 2}, - [419] = {.lex_state = 11, .external_lex_state = 2}, + [419] = {.lex_state = 69, .external_lex_state = 2}, [420] = {.lex_state = 12, .external_lex_state = 2}, [421] = {.lex_state = 12, .external_lex_state = 2}, [422] = {.lex_state = 12, .external_lex_state = 2}, @@ -10559,30 +10597,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [449] = {.lex_state = 11, .external_lex_state = 2}, [450] = {.lex_state = 11, .external_lex_state = 2}, [451] = {.lex_state = 11, .external_lex_state = 2}, - [452] = {.lex_state = 3, .external_lex_state = 2}, - [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 3, .external_lex_state = 2}, - [455] = {.lex_state = 3, .external_lex_state = 2}, + [452] = {.lex_state = 11, .external_lex_state = 2}, + [453] = {.lex_state = 11, .external_lex_state = 2}, + [454] = {.lex_state = 11, .external_lex_state = 2}, + [455] = {.lex_state = 11, .external_lex_state = 2}, [456] = {.lex_state = 3, .external_lex_state = 2}, - [457] = {.lex_state = 3, .external_lex_state = 2}, + [457] = {.lex_state = 11, .external_lex_state = 2}, [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 3, .external_lex_state = 2}, + [459] = {.lex_state = 11, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, [461] = {.lex_state = 3, .external_lex_state = 2}, - [462] = {.lex_state = 3, .external_lex_state = 2}, - [463] = {.lex_state = 3, .external_lex_state = 2}, + [462] = {.lex_state = 11, .external_lex_state = 2}, + [463] = {.lex_state = 11, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, [466] = {.lex_state = 3, .external_lex_state = 2}, - [467] = {.lex_state = 11, .external_lex_state = 2}, - [468] = {.lex_state = 3, .external_lex_state = 2}, + [467] = {.lex_state = 3, .external_lex_state = 2}, + [468] = {.lex_state = 11, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, - [470] = {.lex_state = 3, .external_lex_state = 2}, + [470] = {.lex_state = 11, .external_lex_state = 2}, [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 11, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, - [474] = {.lex_state = 11, .external_lex_state = 2}, - [475] = {.lex_state = 11, .external_lex_state = 2}, + [474] = {.lex_state = 3, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, [476] = {.lex_state = 3, .external_lex_state = 2}, [477] = {.lex_state = 3, .external_lex_state = 2}, [478] = {.lex_state = 3, .external_lex_state = 2}, @@ -10590,15 +10628,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [480] = {.lex_state = 3, .external_lex_state = 2}, [481] = {.lex_state = 3, .external_lex_state = 2}, [482] = {.lex_state = 3, .external_lex_state = 2}, - [483] = {.lex_state = 11, .external_lex_state = 2}, + [483] = {.lex_state = 3, .external_lex_state = 2}, [484] = {.lex_state = 11, .external_lex_state = 2}, - [485] = {.lex_state = 11, .external_lex_state = 2}, - [486] = {.lex_state = 11, .external_lex_state = 2}, - [487] = {.lex_state = 71, .external_lex_state = 2}, - [488] = {.lex_state = 71, .external_lex_state = 2}, - [489] = {.lex_state = 71, .external_lex_state = 2}, - [490] = {.lex_state = 71, .external_lex_state = 2}, - [491] = {.lex_state = 71, .external_lex_state = 2}, + [485] = {.lex_state = 3, .external_lex_state = 2}, + [486] = {.lex_state = 3, .external_lex_state = 2}, + [487] = {.lex_state = 3, .external_lex_state = 2}, + [488] = {.lex_state = 3, .external_lex_state = 2}, + [489] = {.lex_state = 11, .external_lex_state = 2}, + [490] = {.lex_state = 3, .external_lex_state = 2}, + [491] = {.lex_state = 11, .external_lex_state = 2}, [492] = {.lex_state = 71, .external_lex_state = 2}, [493] = {.lex_state = 71, .external_lex_state = 2}, [494] = {.lex_state = 71, .external_lex_state = 2}, @@ -10654,7 +10692,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [544] = {.lex_state = 71, .external_lex_state = 2}, [545] = {.lex_state = 71, .external_lex_state = 2}, [546] = {.lex_state = 71, .external_lex_state = 2}, - [547] = {.lex_state = 71, .external_lex_state = 2}, + [547] = {.lex_state = 11, .external_lex_state = 2}, [548] = {.lex_state = 71, .external_lex_state = 2}, [549] = {.lex_state = 71, .external_lex_state = 2}, [550] = {.lex_state = 71, .external_lex_state = 2}, @@ -10710,7 +10748,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 71, .external_lex_state = 2}, [601] = {.lex_state = 71, .external_lex_state = 2}, [602] = {.lex_state = 71, .external_lex_state = 2}, - [603] = {.lex_state = 71, .external_lex_state = 2}, + [603] = {.lex_state = 10}, [604] = {.lex_state = 71, .external_lex_state = 2}, [605] = {.lex_state = 71, .external_lex_state = 2}, [606] = {.lex_state = 71, .external_lex_state = 2}, @@ -10746,7 +10784,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [636] = {.lex_state = 71, .external_lex_state = 2}, [637] = {.lex_state = 71, .external_lex_state = 2}, [638] = {.lex_state = 71, .external_lex_state = 2}, - [639] = {.lex_state = 10}, + [639] = {.lex_state = 71, .external_lex_state = 2}, [640] = {.lex_state = 71, .external_lex_state = 2}, [641] = {.lex_state = 71, .external_lex_state = 2}, [642] = {.lex_state = 71, .external_lex_state = 2}, @@ -10769,19 +10807,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [659] = {.lex_state = 71, .external_lex_state = 2}, [660] = {.lex_state = 71, .external_lex_state = 2}, [661] = {.lex_state = 71, .external_lex_state = 2}, - [662] = {.lex_state = 10}, + [662] = {.lex_state = 71, .external_lex_state = 2}, [663] = {.lex_state = 71, .external_lex_state = 2}, [664] = {.lex_state = 71, .external_lex_state = 2}, [665] = {.lex_state = 71, .external_lex_state = 2}, [666] = {.lex_state = 71, .external_lex_state = 2}, - [667] = {.lex_state = 10}, + [667] = {.lex_state = 71, .external_lex_state = 2}, [668] = {.lex_state = 71, .external_lex_state = 2}, [669] = {.lex_state = 71, .external_lex_state = 2}, [670] = {.lex_state = 71, .external_lex_state = 2}, [671] = {.lex_state = 71, .external_lex_state = 2}, [672] = {.lex_state = 71, .external_lex_state = 2}, [673] = {.lex_state = 71, .external_lex_state = 2}, - [674] = {.lex_state = 10}, + [674] = {.lex_state = 71, .external_lex_state = 2}, [675] = {.lex_state = 71, .external_lex_state = 2}, [676] = {.lex_state = 71, .external_lex_state = 2}, [677] = {.lex_state = 71, .external_lex_state = 2}, @@ -10790,13 +10828,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [680] = {.lex_state = 71, .external_lex_state = 2}, [681] = {.lex_state = 71, .external_lex_state = 2}, [682] = {.lex_state = 71, .external_lex_state = 2}, - [683] = {.lex_state = 71, .external_lex_state = 2}, - [684] = {.lex_state = 71, .external_lex_state = 2}, + [683] = {.lex_state = 11, .external_lex_state = 2}, + [684] = {.lex_state = 10}, [685] = {.lex_state = 71, .external_lex_state = 2}, [686] = {.lex_state = 71, .external_lex_state = 2}, [687] = {.lex_state = 71, .external_lex_state = 2}, [688] = {.lex_state = 71, .external_lex_state = 2}, - [689] = {.lex_state = 71, .external_lex_state = 2}, + [689] = {.lex_state = 10}, [690] = {.lex_state = 71, .external_lex_state = 2}, [691] = {.lex_state = 71, .external_lex_state = 2}, [692] = {.lex_state = 71, .external_lex_state = 2}, @@ -10806,8 +10844,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [696] = {.lex_state = 71, .external_lex_state = 2}, [697] = {.lex_state = 71, .external_lex_state = 2}, [698] = {.lex_state = 71, .external_lex_state = 2}, - [699] = {.lex_state = 11, .external_lex_state = 2}, - [700] = {.lex_state = 10}, + [699] = {.lex_state = 71, .external_lex_state = 2}, + [700] = {.lex_state = 71, .external_lex_state = 2}, [701] = {.lex_state = 71, .external_lex_state = 2}, [702] = {.lex_state = 71, .external_lex_state = 2}, [703] = {.lex_state = 71, .external_lex_state = 2}, @@ -10843,7 +10881,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [733] = {.lex_state = 71, .external_lex_state = 2}, [734] = {.lex_state = 71, .external_lex_state = 2}, [735] = {.lex_state = 71, .external_lex_state = 2}, - [736] = {.lex_state = 71, .external_lex_state = 2}, + [736] = {.lex_state = 10}, [737] = {.lex_state = 71, .external_lex_state = 2}, [738] = {.lex_state = 71, .external_lex_state = 2}, [739] = {.lex_state = 71, .external_lex_state = 2}, @@ -10867,53 +10905,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [757] = {.lex_state = 71, .external_lex_state = 2}, [758] = {.lex_state = 71, .external_lex_state = 2}, [759] = {.lex_state = 71, .external_lex_state = 2}, - [760] = {.lex_state = 71, .external_lex_state = 2}, + [760] = {.lex_state = 10}, [761] = {.lex_state = 71, .external_lex_state = 2}, - [762] = {.lex_state = 11, .external_lex_state = 2}, - [763] = {.lex_state = 11, .external_lex_state = 2}, - [764] = {.lex_state = 11, .external_lex_state = 2}, - [765] = {.lex_state = 11, .external_lex_state = 2}, - [766] = {.lex_state = 11, .external_lex_state = 2}, - [767] = {.lex_state = 11, .external_lex_state = 2}, + [762] = {.lex_state = 71, .external_lex_state = 2}, + [763] = {.lex_state = 71, .external_lex_state = 2}, + [764] = {.lex_state = 71, .external_lex_state = 2}, + [765] = {.lex_state = 71, .external_lex_state = 2}, + [766] = {.lex_state = 71, .external_lex_state = 2}, + [767] = {.lex_state = 71, .external_lex_state = 2}, [768] = {.lex_state = 11, .external_lex_state = 2}, [769] = {.lex_state = 11, .external_lex_state = 2}, - [770] = {.lex_state = 14}, - [771] = {.lex_state = 14}, + [770] = {.lex_state = 11, .external_lex_state = 2}, + [771] = {.lex_state = 11, .external_lex_state = 2}, [772] = {.lex_state = 11, .external_lex_state = 2}, - [773] = {.lex_state = 14}, - [774] = {.lex_state = 14}, + [773] = {.lex_state = 11, .external_lex_state = 2}, + [774] = {.lex_state = 11, .external_lex_state = 2}, [775] = {.lex_state = 14}, [776] = {.lex_state = 14}, [777] = {.lex_state = 14}, [778] = {.lex_state = 14}, - [779] = {.lex_state = 14}, - [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 11, .external_lex_state = 2}, - [782] = {.lex_state = 14}, - [783] = {.lex_state = 14}, + [779] = {.lex_state = 11, .external_lex_state = 2}, + [780] = {.lex_state = 14}, + [781] = {.lex_state = 14}, + [782] = {.lex_state = 11, .external_lex_state = 2}, + [783] = {.lex_state = 11, .external_lex_state = 2}, [784] = {.lex_state = 11, .external_lex_state = 2}, [785] = {.lex_state = 11, .external_lex_state = 2}, - [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, + [786] = {.lex_state = 14}, + [787] = {.lex_state = 14}, [788] = {.lex_state = 11, .external_lex_state = 2}, [789] = {.lex_state = 11, .external_lex_state = 2}, [790] = {.lex_state = 11, .external_lex_state = 2}, [791] = {.lex_state = 11, .external_lex_state = 2}, [792] = {.lex_state = 11, .external_lex_state = 2}, - [793] = {.lex_state = 12, .external_lex_state = 2}, + [793] = {.lex_state = 11, .external_lex_state = 2}, [794] = {.lex_state = 11, .external_lex_state = 2}, - [795] = {.lex_state = 11, .external_lex_state = 2}, + [795] = {.lex_state = 14}, [796] = {.lex_state = 11, .external_lex_state = 2}, [797] = {.lex_state = 11, .external_lex_state = 2}, [798] = {.lex_state = 11, .external_lex_state = 2}, [799] = {.lex_state = 11, .external_lex_state = 2}, [800] = {.lex_state = 11, .external_lex_state = 2}, - [801] = {.lex_state = 11, .external_lex_state = 2}, + [801] = {.lex_state = 14}, [802] = {.lex_state = 11, .external_lex_state = 2}, [803] = {.lex_state = 11, .external_lex_state = 2}, - [804] = {.lex_state = 11, .external_lex_state = 2}, + [804] = {.lex_state = 12, .external_lex_state = 2}, [805] = {.lex_state = 11, .external_lex_state = 2}, - [806] = {.lex_state = 11, .external_lex_state = 2}, + [806] = {.lex_state = 14}, [807] = {.lex_state = 11, .external_lex_state = 2}, [808] = {.lex_state = 11, .external_lex_state = 2}, [809] = {.lex_state = 11, .external_lex_state = 2}, @@ -10944,10 +10982,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [834] = {.lex_state = 11, .external_lex_state = 2}, [835] = {.lex_state = 11, .external_lex_state = 2}, [836] = {.lex_state = 11, .external_lex_state = 2}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 14}, - [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, + [837] = {.lex_state = 11, .external_lex_state = 2}, + [838] = {.lex_state = 11, .external_lex_state = 2}, + [839] = {.lex_state = 11, .external_lex_state = 2}, + [840] = {.lex_state = 11, .external_lex_state = 2}, [841] = {.lex_state = 14}, [842] = {.lex_state = 14}, [843] = {.lex_state = 14}, @@ -10986,7 +11024,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [876] = {.lex_state = 14}, [877] = {.lex_state = 14}, [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, + [879] = {.lex_state = 11, .external_lex_state = 2}, [880] = {.lex_state = 14}, [881] = {.lex_state = 14}, [882] = {.lex_state = 14}, @@ -11006,7 +11044,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [896] = {.lex_state = 14}, [897] = {.lex_state = 14}, [898] = {.lex_state = 14}, - [899] = {.lex_state = 11, .external_lex_state = 2}, + [899] = {.lex_state = 14}, [900] = {.lex_state = 14}, [901] = {.lex_state = 14}, [902] = {.lex_state = 14}, @@ -11117,95 +11155,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1007] = {.lex_state = 14}, [1008] = {.lex_state = 14}, [1009] = {.lex_state = 14}, - [1010] = {.lex_state = 11, .external_lex_state = 2}, - [1011] = {.lex_state = 11, .external_lex_state = 2}, - [1012] = {.lex_state = 13, .external_lex_state = 2}, - [1013] = {.lex_state = 13, .external_lex_state = 2}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 14}, + [1012] = {.lex_state = 14}, + [1013] = {.lex_state = 14}, [1014] = {.lex_state = 11, .external_lex_state = 2}, - [1015] = {.lex_state = 12, .external_lex_state = 2}, - [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 11, .external_lex_state = 2}, + [1015] = {.lex_state = 11, .external_lex_state = 2}, + [1016] = {.lex_state = 13, .external_lex_state = 2}, + [1017] = {.lex_state = 13, .external_lex_state = 2}, [1018] = {.lex_state = 11, .external_lex_state = 2}, - [1019] = {.lex_state = 7}, - [1020] = {.lex_state = 6}, - [1021] = {.lex_state = 10}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 10}, - [1025] = {.lex_state = 10}, - [1026] = {.lex_state = 10}, + [1019] = {.lex_state = 12, .external_lex_state = 2}, + [1020] = {.lex_state = 14}, + [1021] = {.lex_state = 11, .external_lex_state = 2}, + [1022] = {.lex_state = 11, .external_lex_state = 2}, + [1023] = {.lex_state = 6}, + [1024] = {.lex_state = 7}, + [1025] = {.lex_state = 6}, + [1026] = {.lex_state = 6}, [1027] = {.lex_state = 10}, - [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 10}, - [1030] = {.lex_state = 6}, + [1028] = {.lex_state = 10}, + [1029] = {.lex_state = 6}, + [1030] = {.lex_state = 10}, [1031] = {.lex_state = 10}, [1032] = {.lex_state = 10}, - [1033] = {.lex_state = 22}, - [1034] = {.lex_state = 6}, - [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 6}, - [1037] = {.lex_state = 22}, + [1033] = {.lex_state = 10}, + [1034] = {.lex_state = 10}, + [1035] = {.lex_state = 10}, + [1036] = {.lex_state = 10}, + [1037] = {.lex_state = 6}, [1038] = {.lex_state = 6}, [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 6}, + [1040] = {.lex_state = 22}, [1041] = {.lex_state = 6}, - [1042] = {.lex_state = 6}, - [1043] = {.lex_state = 6}, - [1044] = {.lex_state = 22}, + [1042] = {.lex_state = 22}, + [1043] = {.lex_state = 22}, + [1044] = {.lex_state = 6}, [1045] = {.lex_state = 11, .external_lex_state = 2}, - [1046] = {.lex_state = 6}, - [1047] = {.lex_state = 14}, - [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 7}, - [1050] = {.lex_state = 7}, - [1051] = {.lex_state = 14}, - [1052] = {.lex_state = 14}, - [1053] = {.lex_state = 14}, - [1054] = {.lex_state = 7}, - [1055] = {.lex_state = 14}, + [1046] = {.lex_state = 22}, + [1047] = {.lex_state = 6}, + [1048] = {.lex_state = 6}, + [1049] = {.lex_state = 6}, + [1050] = {.lex_state = 6}, + [1051] = {.lex_state = 7}, + [1052] = {.lex_state = 7}, + [1053] = {.lex_state = 7}, + [1054] = {.lex_state = 14}, + [1055] = {.lex_state = 7}, [1056] = {.lex_state = 14}, [1057] = {.lex_state = 7}, [1058] = {.lex_state = 14}, - [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 7}, + [1059] = {.lex_state = 14}, + [1060] = {.lex_state = 14}, [1061] = {.lex_state = 14}, - [1062] = {.lex_state = 7}, + [1062] = {.lex_state = 14}, [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 7}, - [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 14}, - [1067] = {.lex_state = 14}, - [1068] = {.lex_state = 14}, - [1069] = {.lex_state = 14}, - [1070] = {.lex_state = 11, .external_lex_state = 2}, - [1071] = {.lex_state = 7}, + [1064] = {.lex_state = 14}, + [1065] = {.lex_state = 7}, + [1066] = {.lex_state = 10}, + [1067] = {.lex_state = 10}, + [1068] = {.lex_state = 10}, + [1069] = {.lex_state = 7}, + [1070] = {.lex_state = 18}, + [1071] = {.lex_state = 10}, [1072] = {.lex_state = 10}, - [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 11, .external_lex_state = 2}, - [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 7}, - [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 19}, + [1073] = {.lex_state = 10}, + [1074] = {.lex_state = 10}, + [1075] = {.lex_state = 10}, + [1076] = {.lex_state = 10}, + [1077] = {.lex_state = 10}, + [1078] = {.lex_state = 10}, + [1079] = {.lex_state = 10}, [1080] = {.lex_state = 10}, - [1081] = {.lex_state = 7}, - [1082] = {.lex_state = 7}, - [1083] = {.lex_state = 7}, + [1081] = {.lex_state = 10}, + [1082] = {.lex_state = 10}, + [1083] = {.lex_state = 10}, [1084] = {.lex_state = 10}, [1085] = {.lex_state = 10}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 7}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 19}, - [1092] = {.lex_state = 18}, - [1093] = {.lex_state = 7}, - [1094] = {.lex_state = 7}, - [1095] = {.lex_state = 18}, - [1096] = {.lex_state = 18}, + [1086] = {.lex_state = 10}, + [1087] = {.lex_state = 10}, + [1088] = {.lex_state = 10}, + [1089] = {.lex_state = 10}, + [1090] = {.lex_state = 10}, + [1091] = {.lex_state = 10}, + [1092] = {.lex_state = 10}, + [1093] = {.lex_state = 10}, + [1094] = {.lex_state = 10}, + [1095] = {.lex_state = 10}, + [1096] = {.lex_state = 10}, [1097] = {.lex_state = 10}, - [1098] = {.lex_state = 7}, + [1098] = {.lex_state = 10}, [1099] = {.lex_state = 10}, [1100] = {.lex_state = 10}, [1101] = {.lex_state = 10}, @@ -11222,13 +11260,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1112] = {.lex_state = 10}, [1113] = {.lex_state = 10}, [1114] = {.lex_state = 10}, - [1115] = {.lex_state = 6}, - [1116] = {.lex_state = 18}, - [1117] = {.lex_state = 18}, - [1118] = {.lex_state = 18}, - [1119] = {.lex_state = 18}, - [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 10}, + [1115] = {.lex_state = 10}, + [1116] = {.lex_state = 10}, + [1117] = {.lex_state = 10}, + [1118] = {.lex_state = 10}, + [1119] = {.lex_state = 10}, + [1120] = {.lex_state = 7}, + [1121] = {.lex_state = 18}, [1122] = {.lex_state = 10}, [1123] = {.lex_state = 10}, [1124] = {.lex_state = 10}, @@ -11257,16 +11295,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1147] = {.lex_state = 10}, [1148] = {.lex_state = 10}, [1149] = {.lex_state = 10}, - [1150] = {.lex_state = 10}, + [1150] = {.lex_state = 18}, [1151] = {.lex_state = 10}, [1152] = {.lex_state = 10}, [1153] = {.lex_state = 10}, [1154] = {.lex_state = 10}, [1155] = {.lex_state = 10}, - [1156] = {.lex_state = 7}, - [1157] = {.lex_state = 18}, - [1158] = {.lex_state = 7}, - [1159] = {.lex_state = 18}, + [1156] = {.lex_state = 10}, + [1157] = {.lex_state = 10}, + [1158] = {.lex_state = 10}, + [1159] = {.lex_state = 10}, [1160] = {.lex_state = 10}, [1161] = {.lex_state = 10}, [1162] = {.lex_state = 10}, @@ -11281,27 +11319,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1171] = {.lex_state = 10}, [1172] = {.lex_state = 10}, [1173] = {.lex_state = 10}, - [1174] = {.lex_state = 10}, + [1174] = {.lex_state = 11, .external_lex_state = 2}, [1175] = {.lex_state = 10}, [1176] = {.lex_state = 10}, - [1177] = {.lex_state = 10}, - [1178] = {.lex_state = 10}, - [1179] = {.lex_state = 10}, - [1180] = {.lex_state = 10}, - [1181] = {.lex_state = 10}, + [1177] = {.lex_state = 6}, + [1178] = {.lex_state = 18}, + [1179] = {.lex_state = 18}, + [1180] = {.lex_state = 7}, + [1181] = {.lex_state = 18}, [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 10}, - [1184] = {.lex_state = 10}, - [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 10}, - [1187] = {.lex_state = 10}, + [1183] = {.lex_state = 18}, + [1184] = {.lex_state = 18}, + [1185] = {.lex_state = 18}, + [1186] = {.lex_state = 7}, + [1187] = {.lex_state = 7}, [1188] = {.lex_state = 10}, [1189] = {.lex_state = 10}, [1190] = {.lex_state = 10}, [1191] = {.lex_state = 10}, [1192] = {.lex_state = 10}, [1193] = {.lex_state = 10}, - [1194] = {.lex_state = 10}, + [1194] = {.lex_state = 14}, [1195] = {.lex_state = 10}, [1196] = {.lex_state = 10}, [1197] = {.lex_state = 10}, @@ -11310,23 +11348,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1200] = {.lex_state = 10}, [1201] = {.lex_state = 10}, [1202] = {.lex_state = 10}, - [1203] = {.lex_state = 10}, - [1204] = {.lex_state = 10}, + [1203] = {.lex_state = 14}, + [1204] = {.lex_state = 14}, [1205] = {.lex_state = 10}, [1206] = {.lex_state = 10}, [1207] = {.lex_state = 10}, [1208] = {.lex_state = 10}, [1209] = {.lex_state = 10}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 18}, + [1210] = {.lex_state = 14}, + [1211] = {.lex_state = 14}, [1212] = {.lex_state = 10}, [1213] = {.lex_state = 10}, - [1214] = {.lex_state = 10}, + [1214] = {.lex_state = 14}, [1215] = {.lex_state = 10}, [1216] = {.lex_state = 10}, [1217] = {.lex_state = 10}, - [1218] = {.lex_state = 10}, - [1219] = {.lex_state = 10}, + [1218] = {.lex_state = 14}, + [1219] = {.lex_state = 14}, [1220] = {.lex_state = 10}, [1221] = {.lex_state = 10}, [1222] = {.lex_state = 10}, @@ -11334,27 +11372,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1224] = {.lex_state = 10}, [1225] = {.lex_state = 10}, [1226] = {.lex_state = 10}, - [1227] = {.lex_state = 10}, + [1227] = {.lex_state = 7}, [1228] = {.lex_state = 10}, - [1229] = {.lex_state = 10}, - [1230] = {.lex_state = 14}, + [1229] = {.lex_state = 11, .external_lex_state = 2}, + [1230] = {.lex_state = 10}, [1231] = {.lex_state = 10}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, [1234] = {.lex_state = 10}, - [1235] = {.lex_state = 10}, + [1235] = {.lex_state = 14}, [1236] = {.lex_state = 10}, [1237] = {.lex_state = 10}, - [1238] = {.lex_state = 10}, - [1239] = {.lex_state = 10}, + [1238] = {.lex_state = 7}, + [1239] = {.lex_state = 14}, [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 10}, + [1241] = {.lex_state = 18}, [1242] = {.lex_state = 10}, - [1243] = {.lex_state = 10}, + [1243] = {.lex_state = 7}, [1244] = {.lex_state = 10}, - [1245] = {.lex_state = 10}, + [1245] = {.lex_state = 7}, [1246] = {.lex_state = 10}, - [1247] = {.lex_state = 10}, + [1247] = {.lex_state = 18}, [1248] = {.lex_state = 10}, [1249] = {.lex_state = 10}, [1250] = {.lex_state = 10}, @@ -11369,8 +11407,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1259] = {.lex_state = 10}, [1260] = {.lex_state = 10}, [1261] = {.lex_state = 10}, - [1262] = {.lex_state = 7}, - [1263] = {.lex_state = 18}, + [1262] = {.lex_state = 10}, + [1263] = {.lex_state = 10}, [1264] = {.lex_state = 10}, [1265] = {.lex_state = 10}, [1266] = {.lex_state = 10}, @@ -11395,7 +11433,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1285] = {.lex_state = 10}, [1286] = {.lex_state = 10}, [1287] = {.lex_state = 10}, - [1288] = {.lex_state = 10}, + [1288] = {.lex_state = 7}, [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, [1291] = {.lex_state = 10}, @@ -11403,29 +11441,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 10}, [1294] = {.lex_state = 10}, [1295] = {.lex_state = 10}, - [1296] = {.lex_state = 10}, + [1296] = {.lex_state = 7}, [1297] = {.lex_state = 10}, [1298] = {.lex_state = 10}, [1299] = {.lex_state = 10}, [1300] = {.lex_state = 10}, - [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 10}, + [1301] = {.lex_state = 19}, + [1302] = {.lex_state = 7}, [1303] = {.lex_state = 10}, [1304] = {.lex_state = 10}, - [1305] = {.lex_state = 10}, - [1306] = {.lex_state = 10}, - [1307] = {.lex_state = 10}, + [1305] = {.lex_state = 7}, + [1306] = {.lex_state = 7}, + [1307] = {.lex_state = 7}, [1308] = {.lex_state = 10}, - [1309] = {.lex_state = 10}, + [1309] = {.lex_state = 18}, [1310] = {.lex_state = 10}, - [1311] = {.lex_state = 10}, - [1312] = {.lex_state = 7}, - [1313] = {.lex_state = 18}, + [1311] = {.lex_state = 7}, + [1312] = {.lex_state = 10}, + [1313] = {.lex_state = 10}, [1314] = {.lex_state = 10}, - [1315] = {.lex_state = 10}, + [1315] = {.lex_state = 7}, [1316] = {.lex_state = 10}, - [1317] = {.lex_state = 10}, - [1318] = {.lex_state = 10}, + [1317] = {.lex_state = 7}, + [1318] = {.lex_state = 7}, [1319] = {.lex_state = 10}, [1320] = {.lex_state = 10}, [1321] = {.lex_state = 10}, @@ -11441,7 +11479,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1331] = {.lex_state = 10}, [1332] = {.lex_state = 10}, [1333] = {.lex_state = 10}, - [1334] = {.lex_state = 10}, + [1334] = {.lex_state = 7}, [1335] = {.lex_state = 10}, [1336] = {.lex_state = 10}, [1337] = {.lex_state = 10}, @@ -11471,24 +11509,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1361] = {.lex_state = 10}, [1362] = {.lex_state = 10}, [1363] = {.lex_state = 10}, - [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 7}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, - [1368] = {.lex_state = 10}, + [1364] = {.lex_state = 7}, + [1365] = {.lex_state = 10}, + [1366] = {.lex_state = 19}, + [1367] = {.lex_state = 12, .external_lex_state = 2}, + [1368] = {.lex_state = 7}, [1369] = {.lex_state = 7}, - [1370] = {.lex_state = 7}, - [1371] = {.lex_state = 7}, - [1372] = {.lex_state = 10}, + [1370] = {.lex_state = 10}, + [1371] = {.lex_state = 12, .external_lex_state = 2}, + [1372] = {.lex_state = 7}, [1373] = {.lex_state = 7}, - [1374] = {.lex_state = 7}, - [1375] = {.lex_state = 7}, - [1376] = {.lex_state = 7}, + [1374] = {.lex_state = 10}, + [1375] = {.lex_state = 10}, + [1376] = {.lex_state = 10}, [1377] = {.lex_state = 7}, [1378] = {.lex_state = 7}, [1379] = {.lex_state = 7}, [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 7}, + [1381] = {.lex_state = 14}, [1382] = {.lex_state = 7}, [1383] = {.lex_state = 7}, [1384] = {.lex_state = 7}, @@ -11496,23 +11534,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1386] = {.lex_state = 7}, [1387] = {.lex_state = 7}, [1388] = {.lex_state = 7}, - [1389] = {.lex_state = 7}, + [1389] = {.lex_state = 11, .external_lex_state = 2}, [1390] = {.lex_state = 7}, [1391] = {.lex_state = 7}, [1392] = {.lex_state = 7}, [1393] = {.lex_state = 7}, [1394] = {.lex_state = 7}, [1395] = {.lex_state = 7}, - [1396] = {.lex_state = 11, .external_lex_state = 2}, - [1397] = {.lex_state = 7}, + [1396] = {.lex_state = 7}, + [1397] = {.lex_state = 8}, [1398] = {.lex_state = 7}, [1399] = {.lex_state = 7}, [1400] = {.lex_state = 7}, - [1401] = {.lex_state = 11, .external_lex_state = 2}, + [1401] = {.lex_state = 7}, [1402] = {.lex_state = 7}, [1403] = {.lex_state = 7}, [1404] = {.lex_state = 7}, - [1405] = {.lex_state = 14}, + [1405] = {.lex_state = 7}, [1406] = {.lex_state = 7}, [1407] = {.lex_state = 7}, [1408] = {.lex_state = 7}, @@ -11530,12 +11568,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 7}, [1421] = {.lex_state = 7}, [1422] = {.lex_state = 7}, - [1423] = {.lex_state = 7}, - [1424] = {.lex_state = 7}, + [1423] = {.lex_state = 11, .external_lex_state = 2}, + [1424] = {.lex_state = 11, .external_lex_state = 2}, [1425] = {.lex_state = 7}, [1426] = {.lex_state = 7}, [1427] = {.lex_state = 7}, - [1428] = {.lex_state = 14}, + [1428] = {.lex_state = 11, .external_lex_state = 2}, [1429] = {.lex_state = 7}, [1430] = {.lex_state = 7}, [1431] = {.lex_state = 7}, @@ -11543,11 +11581,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1433] = {.lex_state = 7}, [1434] = {.lex_state = 7}, [1435] = {.lex_state = 7}, - [1436] = {.lex_state = 7}, + [1436] = {.lex_state = 14}, [1437] = {.lex_state = 7}, [1438] = {.lex_state = 7}, [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 7}, + [1440] = {.lex_state = 11, .external_lex_state = 2}, [1441] = {.lex_state = 7}, [1442] = {.lex_state = 7}, [1443] = {.lex_state = 7}, @@ -11569,14 +11607,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1459] = {.lex_state = 7}, [1460] = {.lex_state = 7}, [1461] = {.lex_state = 7}, - [1462] = {.lex_state = 14}, + [1462] = {.lex_state = 7}, [1463] = {.lex_state = 7}, - [1464] = {.lex_state = 11, .external_lex_state = 2}, - [1465] = {.lex_state = 8}, + [1464] = {.lex_state = 7}, + [1465] = {.lex_state = 7}, [1466] = {.lex_state = 7}, [1467] = {.lex_state = 7}, - [1468] = {.lex_state = 11, .external_lex_state = 2}, - [1469] = {.lex_state = 11, .external_lex_state = 2}, + [1468] = {.lex_state = 7}, + [1469] = {.lex_state = 7}, [1470] = {.lex_state = 7}, [1471] = {.lex_state = 7}, [1472] = {.lex_state = 7}, @@ -11598,28 +11636,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1488] = {.lex_state = 7}, [1489] = {.lex_state = 7}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 7}, + [1491] = {.lex_state = 14}, [1492] = {.lex_state = 7}, [1493] = {.lex_state = 7}, [1494] = {.lex_state = 7}, - [1495] = {.lex_state = 14}, + [1495] = {.lex_state = 7}, [1496] = {.lex_state = 7}, [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 14}, - [1499] = {.lex_state = 7}, - [1500] = {.lex_state = 14}, + [1498] = {.lex_state = 7}, + [1499] = {.lex_state = 14}, + [1500] = {.lex_state = 7}, [1501] = {.lex_state = 7}, [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 7}, - [1504] = {.lex_state = 11, .external_lex_state = 2}, + [1503] = {.lex_state = 14}, + [1504] = {.lex_state = 14}, [1505] = {.lex_state = 7}, [1506] = {.lex_state = 7}, - [1507] = {.lex_state = 7}, + [1507] = {.lex_state = 11, .external_lex_state = 2}, [1508] = {.lex_state = 7}, - [1509] = {.lex_state = 11, .external_lex_state = 2}, + [1509] = {.lex_state = 7}, [1510] = {.lex_state = 7}, [1511] = {.lex_state = 7}, - [1512] = {.lex_state = 9}, + [1512] = {.lex_state = 7}, [1513] = {.lex_state = 7}, [1514] = {.lex_state = 7}, [1515] = {.lex_state = 7}, @@ -11627,367 +11665,367 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1517] = {.lex_state = 7}, [1518] = {.lex_state = 7}, [1519] = {.lex_state = 7}, - [1520] = {.lex_state = 11, .external_lex_state = 2}, - [1521] = {.lex_state = 7}, + [1520] = {.lex_state = 7}, + [1521] = {.lex_state = 9}, [1522] = {.lex_state = 7}, - [1523] = {.lex_state = 11, .external_lex_state = 2}, - [1524] = {.lex_state = 7}, + [1523] = {.lex_state = 7}, + [1524] = {.lex_state = 11, .external_lex_state = 2}, [1525] = {.lex_state = 7}, - [1526] = {.lex_state = 7}, + [1526] = {.lex_state = 11, .external_lex_state = 2}, [1527] = {.lex_state = 7}, - [1528] = {.lex_state = 9}, - [1529] = {.lex_state = 14}, - [1530] = {.lex_state = 9}, + [1528] = {.lex_state = 11, .external_lex_state = 2}, + [1529] = {.lex_state = 7}, + [1530] = {.lex_state = 7}, [1531] = {.lex_state = 14}, - [1532] = {.lex_state = 14}, + [1532] = {.lex_state = 9}, [1533] = {.lex_state = 14}, [1534] = {.lex_state = 14}, [1535] = {.lex_state = 14}, - [1536] = {.lex_state = 9}, - [1537] = {.lex_state = 14}, - [1538] = {.lex_state = 7}, - [1539] = {.lex_state = 8}, - [1540] = {.lex_state = 9}, - [1541] = {.lex_state = 7}, - [1542] = {.lex_state = 8}, - [1543] = {.lex_state = 9}, - [1544] = {.lex_state = 9}, - [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 9}, - [1547] = {.lex_state = 7}, - [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 7}, + [1536] = {.lex_state = 14}, + [1537] = {.lex_state = 7}, + [1538] = {.lex_state = 14}, + [1539] = {.lex_state = 9}, + [1540] = {.lex_state = 7}, + [1541] = {.lex_state = 14}, + [1542] = {.lex_state = 9}, + [1543] = {.lex_state = 8}, + [1544] = {.lex_state = 8}, + [1545] = {.lex_state = 7}, + [1546] = {.lex_state = 8}, + [1547] = {.lex_state = 8}, + [1548] = {.lex_state = 7}, + [1549] = {.lex_state = 9}, [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 8}, + [1551] = {.lex_state = 9}, [1552] = {.lex_state = 7}, - [1553] = {.lex_state = 8}, - [1554] = {.lex_state = 7}, + [1553] = {.lex_state = 7}, + [1554] = {.lex_state = 9}, [1555] = {.lex_state = 7}, [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 7}, + [1558] = {.lex_state = 9}, [1559] = {.lex_state = 7}, [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 7}, - [1562] = {.lex_state = 7}, - [1563] = {.lex_state = 8}, + [1561] = {.lex_state = 9}, + [1562] = {.lex_state = 9}, + [1563] = {.lex_state = 7}, [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 14}, + [1565] = {.lex_state = 7}, [1566] = {.lex_state = 7}, [1567] = {.lex_state = 8}, [1568] = {.lex_state = 7}, [1569] = {.lex_state = 8}, [1570] = {.lex_state = 8}, - [1571] = {.lex_state = 8}, - [1572] = {.lex_state = 7}, - [1573] = {.lex_state = 8}, - [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 8}, - [1576] = {.lex_state = 7}, - [1577] = {.lex_state = 7}, - [1578] = {.lex_state = 8}, - [1579] = {.lex_state = 7}, - [1580] = {.lex_state = 7}, + [1571] = {.lex_state = 7}, + [1572] = {.lex_state = 8}, + [1573] = {.lex_state = 7}, + [1574] = {.lex_state = 8}, + [1575] = {.lex_state = 7}, + [1576] = {.lex_state = 8}, + [1577] = {.lex_state = 8}, + [1578] = {.lex_state = 14}, + [1579] = {.lex_state = 8}, + [1580] = {.lex_state = 8}, [1581] = {.lex_state = 7}, [1582] = {.lex_state = 7}, - [1583] = {.lex_state = 8}, - [1584] = {.lex_state = 14}, + [1583] = {.lex_state = 7}, + [1584] = {.lex_state = 7}, [1585] = {.lex_state = 8}, - [1586] = {.lex_state = 8}, - [1587] = {.lex_state = 8}, - [1588] = {.lex_state = 8}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 8}, - [1591] = {.lex_state = 14}, - [1592] = {.lex_state = 7}, - [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 8}, - [1595] = {.lex_state = 7}, + [1586] = {.lex_state = 7}, + [1587] = {.lex_state = 7}, + [1588] = {.lex_state = 14}, + [1589] = {.lex_state = 8}, + [1590] = {.lex_state = 7}, + [1591] = {.lex_state = 8}, + [1592] = {.lex_state = 8}, + [1593] = {.lex_state = 8}, + [1594] = {.lex_state = 7}, + [1595] = {.lex_state = 14}, [1596] = {.lex_state = 7}, [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 8}, - [1599] = {.lex_state = 7}, + [1598] = {.lex_state = 7}, + [1599] = {.lex_state = 20}, [1600] = {.lex_state = 7}, - [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 20}, - [1603] = {.lex_state = 20}, + [1601] = {.lex_state = 20}, + [1602] = {.lex_state = 8}, + [1603] = {.lex_state = 14}, [1604] = {.lex_state = 7}, [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 7}, - [1609] = {.lex_state = 7}, - [1610] = {.lex_state = 20}, - [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 8}, + [1606] = {.lex_state = 8}, + [1607] = {.lex_state = 8}, + [1608] = {.lex_state = 8}, + [1609] = {.lex_state = 8}, + [1610] = {.lex_state = 8}, + [1611] = {.lex_state = 8}, + [1612] = {.lex_state = 7}, [1613] = {.lex_state = 7}, - [1614] = {.lex_state = 7}, - [1615] = {.lex_state = 8}, - [1616] = {.lex_state = 20}, + [1614] = {.lex_state = 20}, + [1615] = {.lex_state = 7}, + [1616] = {.lex_state = 7}, [1617] = {.lex_state = 7}, - [1618] = {.lex_state = 8}, - [1619] = {.lex_state = 8}, - [1620] = {.lex_state = 8}, + [1618] = {.lex_state = 7}, + [1619] = {.lex_state = 20}, + [1620] = {.lex_state = 7}, [1621] = {.lex_state = 7}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 7}, + [1622] = {.lex_state = 8}, + [1623] = {.lex_state = 20}, [1624] = {.lex_state = 7}, [1625] = {.lex_state = 20}, - [1626] = {.lex_state = 8}, + [1626] = {.lex_state = 7}, [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 8}, - [1629] = {.lex_state = 20}, - [1630] = {.lex_state = 7}, + [1628] = {.lex_state = 20}, + [1629] = {.lex_state = 7}, + [1630] = {.lex_state = 20}, [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 20}, + [1632] = {.lex_state = 8}, + [1633] = {.lex_state = 7}, + [1634] = {.lex_state = 8}, [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 20}, - [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 7}, - [1639] = {.lex_state = 7}, - [1640] = {.lex_state = 7}, - [1641] = {.lex_state = 7}, - [1642] = {.lex_state = 20}, - [1643] = {.lex_state = 14}, + [1636] = {.lex_state = 8}, + [1637] = {.lex_state = 7}, + [1638] = {.lex_state = 20}, + [1639] = {.lex_state = 8}, + [1640] = {.lex_state = 8}, + [1641] = {.lex_state = 8}, + [1642] = {.lex_state = 8}, + [1643] = {.lex_state = 8}, [1644] = {.lex_state = 8}, - [1645] = {.lex_state = 7}, + [1645] = {.lex_state = 20}, [1646] = {.lex_state = 20}, - [1647] = {.lex_state = 8}, - [1648] = {.lex_state = 8}, - [1649] = {.lex_state = 8}, - [1650] = {.lex_state = 8}, - [1651] = {.lex_state = 8}, - [1652] = {.lex_state = 8}, + [1647] = {.lex_state = 20}, + [1648] = {.lex_state = 7}, + [1649] = {.lex_state = 7}, + [1650] = {.lex_state = 7}, + [1651] = {.lex_state = 7}, + [1652] = {.lex_state = 7}, [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 7}, - [1655] = {.lex_state = 8}, + [1654] = {.lex_state = 9}, + [1655] = {.lex_state = 7}, [1656] = {.lex_state = 7}, [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 7}, - [1659] = {.lex_state = 8}, + [1658] = {.lex_state = 8}, + [1659] = {.lex_state = 7}, [1660] = {.lex_state = 8}, [1661] = {.lex_state = 8}, - [1662] = {.lex_state = 7}, + [1662] = {.lex_state = 8}, [1663] = {.lex_state = 8}, [1664] = {.lex_state = 8}, [1665] = {.lex_state = 7}, [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 8}, - [1669] = {.lex_state = 8}, - [1670] = {.lex_state = 8}, + [1667] = {.lex_state = 7}, + [1668] = {.lex_state = 7}, + [1669] = {.lex_state = 7}, + [1670] = {.lex_state = 7}, [1671] = {.lex_state = 8}, [1672] = {.lex_state = 8}, [1673] = {.lex_state = 8}, [1674] = {.lex_state = 8}, [1675] = {.lex_state = 8}, - [1676] = {.lex_state = 8}, - [1677] = {.lex_state = 8}, + [1676] = {.lex_state = 7}, + [1677] = {.lex_state = 7}, [1678] = {.lex_state = 7}, [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 8}, - [1681] = {.lex_state = 8}, + [1680] = {.lex_state = 7}, + [1681] = {.lex_state = 7}, [1682] = {.lex_state = 8}, [1683] = {.lex_state = 8}, [1684] = {.lex_state = 8}, [1685] = {.lex_state = 8}, [1686] = {.lex_state = 8}, - [1687] = {.lex_state = 7}, + [1687] = {.lex_state = 8}, [1688] = {.lex_state = 7}, [1689] = {.lex_state = 8}, [1690] = {.lex_state = 7}, [1691] = {.lex_state = 8}, - [1692] = {.lex_state = 8}, + [1692] = {.lex_state = 7}, [1693] = {.lex_state = 8}, [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 7}, - [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 8}, + [1695] = {.lex_state = 8}, + [1696] = {.lex_state = 7}, + [1697] = {.lex_state = 7}, [1698] = {.lex_state = 8}, [1699] = {.lex_state = 8}, - [1700] = {.lex_state = 8}, + [1700] = {.lex_state = 7}, [1701] = {.lex_state = 8}, [1702] = {.lex_state = 7}, [1703] = {.lex_state = 7}, - [1704] = {.lex_state = 7}, + [1704] = {.lex_state = 8}, [1705] = {.lex_state = 7}, [1706] = {.lex_state = 8}, [1707] = {.lex_state = 8}, [1708] = {.lex_state = 7}, [1709] = {.lex_state = 7}, - [1710] = {.lex_state = 7}, + [1710] = {.lex_state = 8}, [1711] = {.lex_state = 7}, [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 7}, - [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 7}, + [1713] = {.lex_state = 8}, + [1714] = {.lex_state = 8}, + [1715] = {.lex_state = 8}, [1716] = {.lex_state = 7}, - [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 7}, + [1717] = {.lex_state = 8}, + [1718] = {.lex_state = 8}, [1719] = {.lex_state = 8}, [1720] = {.lex_state = 8}, [1721] = {.lex_state = 8}, - [1722] = {.lex_state = 8}, + [1722] = {.lex_state = 7}, [1723] = {.lex_state = 8}, [1724] = {.lex_state = 8}, - [1725] = {.lex_state = 8}, - [1726] = {.lex_state = 7}, + [1725] = {.lex_state = 7}, + [1726] = {.lex_state = 8}, [1727] = {.lex_state = 8}, [1728] = {.lex_state = 8}, [1729] = {.lex_state = 8}, - [1730] = {.lex_state = 8}, + [1730] = {.lex_state = 7}, [1731] = {.lex_state = 8}, - [1732] = {.lex_state = 14}, + [1732] = {.lex_state = 7}, [1733] = {.lex_state = 8}, [1734] = {.lex_state = 8}, [1735] = {.lex_state = 8}, [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 8}, - [1738] = {.lex_state = 8}, + [1737] = {.lex_state = 7}, + [1738] = {.lex_state = 7}, [1739] = {.lex_state = 8}, [1740] = {.lex_state = 7}, [1741] = {.lex_state = 8}, [1742] = {.lex_state = 7}, [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, + [1744] = {.lex_state = 7}, [1745] = {.lex_state = 8}, - [1746] = {.lex_state = 8}, + [1746] = {.lex_state = 7}, [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 8}, + [1748] = {.lex_state = 7}, [1749] = {.lex_state = 8}, [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 7}, + [1751] = {.lex_state = 8}, [1752] = {.lex_state = 8}, [1753] = {.lex_state = 8}, - [1754] = {.lex_state = 8}, + [1754] = {.lex_state = 7}, [1755] = {.lex_state = 7}, - [1756] = {.lex_state = 8}, + [1756] = {.lex_state = 7}, [1757] = {.lex_state = 8}, [1758] = {.lex_state = 7}, [1759] = {.lex_state = 8}, - [1760] = {.lex_state = 8}, + [1760] = {.lex_state = 7}, [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 8}, - [1763] = {.lex_state = 8}, - [1764] = {.lex_state = 8}, + [1762] = {.lex_state = 7}, + [1763] = {.lex_state = 14}, + [1764] = {.lex_state = 7}, [1765] = {.lex_state = 8}, - [1766] = {.lex_state = 8}, + [1766] = {.lex_state = 7}, [1767] = {.lex_state = 8}, [1768] = {.lex_state = 8}, [1769] = {.lex_state = 8}, [1770] = {.lex_state = 8}, [1771] = {.lex_state = 8}, [1772] = {.lex_state = 8}, - [1773] = {.lex_state = 8}, + [1773] = {.lex_state = 7}, [1774] = {.lex_state = 8}, - [1775] = {.lex_state = 7}, - [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 8}, + [1775] = {.lex_state = 8}, + [1776] = {.lex_state = 7}, + [1777] = {.lex_state = 7}, [1778] = {.lex_state = 8}, [1779] = {.lex_state = 8}, [1780] = {.lex_state = 8}, [1781] = {.lex_state = 8}, [1782] = {.lex_state = 8}, [1783] = {.lex_state = 8}, - [1784] = {.lex_state = 7}, - [1785] = {.lex_state = 8}, - [1786] = {.lex_state = 8}, + [1784] = {.lex_state = 8}, + [1785] = {.lex_state = 7}, + [1786] = {.lex_state = 14}, [1787] = {.lex_state = 8}, - [1788] = {.lex_state = 8}, + [1788] = {.lex_state = 7}, [1789] = {.lex_state = 8}, [1790] = {.lex_state = 8}, [1791] = {.lex_state = 8}, [1792] = {.lex_state = 8}, - [1793] = {.lex_state = 8}, - [1794] = {.lex_state = 8}, + [1793] = {.lex_state = 7}, + [1794] = {.lex_state = 7}, [1795] = {.lex_state = 8}, - [1796] = {.lex_state = 8}, + [1796] = {.lex_state = 7}, [1797] = {.lex_state = 8}, [1798] = {.lex_state = 8}, [1799] = {.lex_state = 7}, - [1800] = {.lex_state = 7}, - [1801] = {.lex_state = 7}, + [1800] = {.lex_state = 8}, + [1801] = {.lex_state = 8}, [1802] = {.lex_state = 7}, [1803] = {.lex_state = 8}, - [1804] = {.lex_state = 7}, + [1804] = {.lex_state = 8}, [1805] = {.lex_state = 8}, - [1806] = {.lex_state = 7}, + [1806] = {.lex_state = 8}, [1807] = {.lex_state = 7}, [1808] = {.lex_state = 7}, - [1809] = {.lex_state = 8}, - [1810] = {.lex_state = 7}, - [1811] = {.lex_state = 14}, - [1812] = {.lex_state = 7}, + [1809] = {.lex_state = 7}, + [1810] = {.lex_state = 8}, + [1811] = {.lex_state = 8}, + [1812] = {.lex_state = 8}, [1813] = {.lex_state = 7}, [1814] = {.lex_state = 7}, [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 7}, - [1817] = {.lex_state = 7}, - [1818] = {.lex_state = 7}, + [1816] = {.lex_state = 8}, + [1817] = {.lex_state = 8}, + [1818] = {.lex_state = 8}, [1819] = {.lex_state = 7}, [1820] = {.lex_state = 7}, - [1821] = {.lex_state = 8}, - [1822] = {.lex_state = 7}, - [1823] = {.lex_state = 7}, - [1824] = {.lex_state = 7}, - [1825] = {.lex_state = 7}, - [1826] = {.lex_state = 7}, + [1821] = {.lex_state = 7}, + [1822] = {.lex_state = 8}, + [1823] = {.lex_state = 8}, + [1824] = {.lex_state = 8}, + [1825] = {.lex_state = 8}, + [1826] = {.lex_state = 8}, [1827] = {.lex_state = 7}, - [1828] = {.lex_state = 7}, - [1829] = {.lex_state = 7}, - [1830] = {.lex_state = 8}, + [1828] = {.lex_state = 8}, + [1829] = {.lex_state = 8}, + [1830] = {.lex_state = 7}, [1831] = {.lex_state = 7}, [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 7}, + [1833] = {.lex_state = 8}, [1834] = {.lex_state = 7}, - [1835] = {.lex_state = 8}, + [1835] = {.lex_state = 7}, [1836] = {.lex_state = 8}, [1837] = {.lex_state = 7}, [1838] = {.lex_state = 7}, - [1839] = {.lex_state = 7}, - [1840] = {.lex_state = 7}, + [1839] = {.lex_state = 8}, + [1840] = {.lex_state = 8}, [1841] = {.lex_state = 7}, - [1842] = {.lex_state = 7}, + [1842] = {.lex_state = 8}, [1843] = {.lex_state = 7}, - [1844] = {.lex_state = 7}, - [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 7}, + [1844] = {.lex_state = 8}, + [1845] = {.lex_state = 8}, + [1846] = {.lex_state = 8}, [1847] = {.lex_state = 7}, [1848] = {.lex_state = 7}, [1849] = {.lex_state = 7}, - [1850] = {.lex_state = 7}, - [1851] = {.lex_state = 7}, + [1850] = {.lex_state = 8}, + [1851] = {.lex_state = 8}, [1852] = {.lex_state = 7}, [1853] = {.lex_state = 7}, - [1854] = {.lex_state = 7}, + [1854] = {.lex_state = 8}, [1855] = {.lex_state = 7}, [1856] = {.lex_state = 8}, [1857] = {.lex_state = 8}, - [1858] = {.lex_state = 8}, + [1858] = {.lex_state = 7}, [1859] = {.lex_state = 8}, - [1860] = {.lex_state = 8}, + [1860] = {.lex_state = 7}, [1861] = {.lex_state = 8}, [1862] = {.lex_state = 7}, [1863] = {.lex_state = 8}, - [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 7}, - [1866] = {.lex_state = 8}, + [1864] = {.lex_state = 8}, + [1865] = {.lex_state = 8}, + [1866] = {.lex_state = 7}, [1867] = {.lex_state = 8}, - [1868] = {.lex_state = 8}, + [1868] = {.lex_state = 14}, [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 14}, + [1870] = {.lex_state = 8}, [1871] = {.lex_state = 7}, [1872] = {.lex_state = 7}, [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 7}, + [1874] = {.lex_state = 8}, [1875] = {.lex_state = 7}, [1876] = {.lex_state = 7}, [1877] = {.lex_state = 7}, - [1878] = {.lex_state = 14}, - [1879] = {.lex_state = 7}, - [1880] = {.lex_state = 7}, + [1878] = {.lex_state = 7}, + [1879] = {.lex_state = 14}, + [1880] = {.lex_state = 14}, [1881] = {.lex_state = 7}, [1882] = {.lex_state = 7}, [1883] = {.lex_state = 7}, @@ -11998,20 +12036,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1888] = {.lex_state = 7}, [1889] = {.lex_state = 7}, [1890] = {.lex_state = 7}, - [1891] = {.lex_state = 14}, + [1891] = {.lex_state = 7}, [1892] = {.lex_state = 7}, - [1893] = {.lex_state = 14}, + [1893] = {.lex_state = 7}, [1894] = {.lex_state = 7}, [1895] = {.lex_state = 7}, [1896] = {.lex_state = 7}, [1897] = {.lex_state = 7}, - [1898] = {.lex_state = 14}, - [1899] = {.lex_state = 7}, - [1900] = {.lex_state = 7}, + [1898] = {.lex_state = 7}, + [1899] = {.lex_state = 8}, + [1900] = {.lex_state = 14}, [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 14}, - [1903] = {.lex_state = 14}, - [1904] = {.lex_state = 14}, + [1902] = {.lex_state = 7}, + [1903] = {.lex_state = 7}, + [1904] = {.lex_state = 7}, [1905] = {.lex_state = 14}, [1906] = {.lex_state = 14}, [1907] = {.lex_state = 14}, @@ -12029,85 +12067,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1919] = {.lex_state = 14}, [1920] = {.lex_state = 14}, [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 16}, - [1923] = {.lex_state = 27}, - [1924] = {.lex_state = 27}, - [1925] = {.lex_state = 16}, + [1922] = {.lex_state = 14}, + [1923] = {.lex_state = 14}, + [1924] = {.lex_state = 14}, + [1925] = {.lex_state = 14}, [1926] = {.lex_state = 16}, - [1927] = {.lex_state = 16}, - [1928] = {.lex_state = 16}, + [1927] = {.lex_state = 27}, + [1928] = {.lex_state = 27}, [1929] = {.lex_state = 16}, [1930] = {.lex_state = 16}, [1931] = {.lex_state = 16}, [1932] = {.lex_state = 16}, - [1933] = {.lex_state = 27}, + [1933] = {.lex_state = 16}, [1934] = {.lex_state = 16}, - [1935] = {.lex_state = 27}, - [1936] = {.lex_state = 27}, - [1937] = {.lex_state = 16}, - [1938] = {.lex_state = 27}, - [1939] = {.lex_state = 16}, - [1940] = {.lex_state = 16}, - [1941] = {.lex_state = 14}, + [1935] = {.lex_state = 16}, + [1936] = {.lex_state = 16}, + [1937] = {.lex_state = 27}, + [1938] = {.lex_state = 16}, + [1939] = {.lex_state = 27}, + [1940] = {.lex_state = 14}, + [1941] = {.lex_state = 16}, [1942] = {.lex_state = 14}, - [1943] = {.lex_state = 14}, + [1943] = {.lex_state = 16}, [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 14}, - [1946] = {.lex_state = 14}, + [1945] = {.lex_state = 16}, + [1946] = {.lex_state = 27}, [1947] = {.lex_state = 14}, [1948] = {.lex_state = 27}, [1949] = {.lex_state = 14}, [1950] = {.lex_state = 14}, - [1951] = {.lex_state = 16}, + [1951] = {.lex_state = 27}, [1952] = {.lex_state = 14}, [1953] = {.lex_state = 14}, - [1954] = {.lex_state = 14}, + [1954] = {.lex_state = 16}, [1955] = {.lex_state = 14}, - [1956] = {.lex_state = 16}, + [1956] = {.lex_state = 14}, [1957] = {.lex_state = 14}, - [1958] = {.lex_state = 27}, - [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 27}, + [1958] = {.lex_state = 14}, + [1959] = {.lex_state = 14}, + [1960] = {.lex_state = 16}, [1961] = {.lex_state = 27}, [1962] = {.lex_state = 14}, - [1963] = {.lex_state = 14}, + [1963] = {.lex_state = 27}, [1964] = {.lex_state = 27}, [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 14}, - [1967] = {.lex_state = 16}, - [1968] = {.lex_state = 16}, + [1966] = {.lex_state = 16}, + [1967] = {.lex_state = 27}, + [1968] = {.lex_state = 27}, [1969] = {.lex_state = 27}, - [1970] = {.lex_state = 14}, - [1971] = {.lex_state = 27}, + [1970] = {.lex_state = 27}, + [1971] = {.lex_state = 14}, [1972] = {.lex_state = 14}, - [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 16}, + [1973] = {.lex_state = 16}, + [1974] = {.lex_state = 27}, [1975] = {.lex_state = 27}, [1976] = {.lex_state = 27}, [1977] = {.lex_state = 27}, - [1978] = {.lex_state = 14}, - [1979] = {.lex_state = 27}, + [1978] = {.lex_state = 27}, + [1979] = {.lex_state = 14}, [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 27}, - [1982] = {.lex_state = 27}, - [1983] = {.lex_state = 16}, - [1984] = {.lex_state = 27}, - [1985] = {.lex_state = 27}, + [1981] = {.lex_state = 14}, + [1982] = {.lex_state = 14}, + [1983] = {.lex_state = 14}, + [1984] = {.lex_state = 16}, + [1985] = {.lex_state = 16}, [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 14}, - [1988] = {.lex_state = 14}, - [1989] = {.lex_state = 27}, - [1990] = {.lex_state = 16}, + [1987] = {.lex_state = 27}, + [1988] = {.lex_state = 27}, + [1989] = {.lex_state = 14}, + [1990] = {.lex_state = 27}, [1991] = {.lex_state = 27}, [1992] = {.lex_state = 27}, [1993] = {.lex_state = 27}, [1994] = {.lex_state = 27}, [1995] = {.lex_state = 27}, - [1996] = {.lex_state = 27}, + [1996] = {.lex_state = 16}, [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 27}, + [1998] = {.lex_state = 14}, [1999] = {.lex_state = 27}, - [2000] = {.lex_state = 14}, + [2000] = {.lex_state = 27}, [2001] = {.lex_state = 27}, [2002] = {.lex_state = 27}, [2003] = {.lex_state = 27}, @@ -12115,40 +12153,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2005] = {.lex_state = 27}, [2006] = {.lex_state = 27}, [2007] = {.lex_state = 27}, - [2008] = {.lex_state = 27}, - [2009] = {.lex_state = 27}, + [2008] = {.lex_state = 14}, + [2009] = {.lex_state = 14}, [2010] = {.lex_state = 27}, - [2011] = {.lex_state = 27}, + [2011] = {.lex_state = 14}, [2012] = {.lex_state = 27}, - [2013] = {.lex_state = 14}, + [2013] = {.lex_state = 27}, [2014] = {.lex_state = 27}, - [2015] = {.lex_state = 14}, + [2015] = {.lex_state = 27}, [2016] = {.lex_state = 27}, - [2017] = {.lex_state = 14}, - [2018] = {.lex_state = 16}, + [2017] = {.lex_state = 27}, + [2018] = {.lex_state = 27}, [2019] = {.lex_state = 27}, [2020] = {.lex_state = 27}, - [2021] = {.lex_state = 14}, - [2022] = {.lex_state = 16}, - [2023] = {.lex_state = 16}, - [2024] = {.lex_state = 16}, - [2025] = {.lex_state = 27}, + [2021] = {.lex_state = 27}, + [2022] = {.lex_state = 14}, + [2023] = {.lex_state = 27}, + [2024] = {.lex_state = 14}, + [2025] = {.lex_state = 16}, [2026] = {.lex_state = 16}, - [2027] = {.lex_state = 16}, + [2027] = {.lex_state = 27}, [2028] = {.lex_state = 16}, [2029] = {.lex_state = 16}, - [2030] = {.lex_state = 16}, - [2031] = {.lex_state = 16}, - [2032] = {.lex_state = 17}, + [2030] = {.lex_state = 27}, + [2031] = {.lex_state = 17}, + [2032] = {.lex_state = 16}, [2033] = {.lex_state = 16}, - [2034] = {.lex_state = 27}, + [2034] = {.lex_state = 16}, [2035] = {.lex_state = 16}, - [2036] = {.lex_state = 16}, - [2037] = {.lex_state = 27}, - [2038] = {.lex_state = 14}, - [2039] = {.lex_state = 14}, - [2040] = {.lex_state = 14}, - [2041] = {.lex_state = 14}, + [2036] = {.lex_state = 27}, + [2037] = {.lex_state = 16}, + [2038] = {.lex_state = 16}, + [2039] = {.lex_state = 16}, + [2040] = {.lex_state = 16}, + [2041] = {.lex_state = 16}, [2042] = {.lex_state = 14}, [2043] = {.lex_state = 14}, [2044] = {.lex_state = 14}, @@ -12161,186 +12199,186 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2051] = {.lex_state = 14}, [2052] = {.lex_state = 14}, [2053] = {.lex_state = 14}, - [2054] = {.lex_state = 16}, - [2055] = {.lex_state = 16}, + [2054] = {.lex_state = 14}, + [2055] = {.lex_state = 14}, [2056] = {.lex_state = 14}, - [2057] = {.lex_state = 21}, + [2057] = {.lex_state = 14}, [2058] = {.lex_state = 14}, [2059] = {.lex_state = 14}, - [2060] = {.lex_state = 14}, - [2061] = {.lex_state = 14}, + [2060] = {.lex_state = 16}, + [2061] = {.lex_state = 23}, [2062] = {.lex_state = 16}, - [2063] = {.lex_state = 16}, + [2063] = {.lex_state = 14}, [2064] = {.lex_state = 27}, - [2065] = {.lex_state = 27}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 17}, - [2069] = {.lex_state = 17}, + [2065] = {.lex_state = 14}, + [2066] = {.lex_state = 14}, + [2067] = {.lex_state = 14}, + [2068] = {.lex_state = 14}, + [2069] = {.lex_state = 14}, [2070] = {.lex_state = 14}, [2071] = {.lex_state = 14}, - [2072] = {.lex_state = 21}, + [2072] = {.lex_state = 14}, [2073] = {.lex_state = 14}, - [2074] = {.lex_state = 14}, - [2075] = {.lex_state = 14}, + [2074] = {.lex_state = 23}, + [2075] = {.lex_state = 27}, [2076] = {.lex_state = 14}, - [2077] = {.lex_state = 14}, - [2078] = {.lex_state = 27}, - [2079] = {.lex_state = 14}, - [2080] = {.lex_state = 14}, + [2077] = {.lex_state = 27}, + [2078] = {.lex_state = 16}, + [2079] = {.lex_state = 21}, + [2080] = {.lex_state = 17}, [2081] = {.lex_state = 14}, - [2082] = {.lex_state = 23}, + [2082] = {.lex_state = 14}, [2083] = {.lex_state = 14}, [2084] = {.lex_state = 16}, - [2085] = {.lex_state = 23}, - [2086] = {.lex_state = 16}, - [2087] = {.lex_state = 27}, - [2088] = {.lex_state = 21}, - [2089] = {.lex_state = 21}, + [2085] = {.lex_state = 14}, + [2086] = {.lex_state = 14}, + [2087] = {.lex_state = 14}, + [2088] = {.lex_state = 16}, + [2089] = {.lex_state = 16}, [2090] = {.lex_state = 16}, - [2091] = {.lex_state = 16}, - [2092] = {.lex_state = 16}, - [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 16}, - [2095] = {.lex_state = 14}, - [2096] = {.lex_state = 27}, - [2097] = {.lex_state = 16}, - [2098] = {.lex_state = 27}, + [2091] = {.lex_state = 27}, + [2092] = {.lex_state = 21}, + [2093] = {.lex_state = 16}, + [2094] = {.lex_state = 21}, + [2095] = {.lex_state = 16}, + [2096] = {.lex_state = 16}, + [2097] = {.lex_state = 17}, + [2098] = {.lex_state = 17}, [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 27}, + [2100] = {.lex_state = 17}, + [2101] = {.lex_state = 21}, + [2102] = {.lex_state = 16}, [2103] = {.lex_state = 27}, [2104] = {.lex_state = 27}, [2105] = {.lex_state = 27}, [2106] = {.lex_state = 27}, [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 27}, - [2109] = {.lex_state = 23}, - [2110] = {.lex_state = 16}, + [2108] = {.lex_state = 14}, + [2109] = {.lex_state = 16}, + [2110] = {.lex_state = 14}, [2111] = {.lex_state = 27}, - [2112] = {.lex_state = 16}, + [2112] = {.lex_state = 17}, [2113] = {.lex_state = 27}, [2114] = {.lex_state = 27}, [2115] = {.lex_state = 27}, [2116] = {.lex_state = 27}, - [2117] = {.lex_state = 23}, - [2118] = {.lex_state = 16}, + [2117] = {.lex_state = 27}, + [2118] = {.lex_state = 27}, [2119] = {.lex_state = 27}, [2120] = {.lex_state = 27}, - [2121] = {.lex_state = 27}, + [2121] = {.lex_state = 14}, [2122] = {.lex_state = 27}, [2123] = {.lex_state = 23}, [2124] = {.lex_state = 27}, - [2125] = {.lex_state = 10}, + [2125] = {.lex_state = 27}, [2126] = {.lex_state = 27}, - [2127] = {.lex_state = 14}, + [2127] = {.lex_state = 16}, [2128] = {.lex_state = 27}, [2129] = {.lex_state = 27}, - [2130] = {.lex_state = 14}, + [2130] = {.lex_state = 23}, [2131] = {.lex_state = 27}, - [2132] = {.lex_state = 16}, - [2133] = {.lex_state = 14}, + [2132] = {.lex_state = 27}, + [2133] = {.lex_state = 23}, [2134] = {.lex_state = 27}, [2135] = {.lex_state = 27}, - [2136] = {.lex_state = 27}, + [2136] = {.lex_state = 10}, [2137] = {.lex_state = 27}, - [2138] = {.lex_state = 23}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 27}, - [2141] = {.lex_state = 14}, + [2138] = {.lex_state = 27}, + [2139] = {.lex_state = 27}, + [2140] = {.lex_state = 16}, + [2141] = {.lex_state = 27}, [2142] = {.lex_state = 27}, [2143] = {.lex_state = 27}, [2144] = {.lex_state = 27}, - [2145] = {.lex_state = 27}, - [2146] = {.lex_state = 14}, + [2145] = {.lex_state = 14}, + [2146] = {.lex_state = 27}, [2147] = {.lex_state = 27}, - [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 14}, - [2150] = {.lex_state = 14}, - [2151] = {.lex_state = 17}, - [2152] = {.lex_state = 16}, - [2153] = {.lex_state = 10}, + [2148] = {.lex_state = 16}, + [2149] = {.lex_state = 27}, + [2150] = {.lex_state = 27}, + [2151] = {.lex_state = 23}, + [2152] = {.lex_state = 14}, + [2153] = {.lex_state = 27}, [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 16}, - [2156] = {.lex_state = 23}, + [2155] = {.lex_state = 14}, + [2156] = {.lex_state = 6}, [2157] = {.lex_state = 14}, - [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 17}, + [2158] = {.lex_state = 14}, + [2159] = {.lex_state = 14}, [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 17}, + [2161] = {.lex_state = 16}, [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 10}, - [2164] = {.lex_state = 6}, - [2165] = {.lex_state = 14}, + [2163] = {.lex_state = 17}, + [2164] = {.lex_state = 14}, + [2165] = {.lex_state = 16}, [2166] = {.lex_state = 14}, [2167] = {.lex_state = 16}, - [2168] = {.lex_state = 16}, - [2169] = {.lex_state = 14}, + [2168] = {.lex_state = 17}, + [2169] = {.lex_state = 23}, [2170] = {.lex_state = 14}, [2171] = {.lex_state = 14}, [2172] = {.lex_state = 14}, [2173] = {.lex_state = 6}, - [2174] = {.lex_state = 14}, - [2175] = {.lex_state = 16}, - [2176] = {.lex_state = 14}, - [2177] = {.lex_state = 10}, + [2174] = {.lex_state = 17}, + [2175] = {.lex_state = 17}, + [2176] = {.lex_state = 6}, + [2177] = {.lex_state = 14}, [2178] = {.lex_state = 14}, - [2179] = {.lex_state = 14}, + [2179] = {.lex_state = 10}, [2180] = {.lex_state = 14}, [2181] = {.lex_state = 14}, [2182] = {.lex_state = 14}, - [2183] = {.lex_state = 14}, - [2184] = {.lex_state = 6}, + [2183] = {.lex_state = 10}, + [2184] = {.lex_state = 10}, [2185] = {.lex_state = 14}, - [2186] = {.lex_state = 70}, + [2186] = {.lex_state = 16}, [2187] = {.lex_state = 14}, - [2188] = {.lex_state = 16}, - [2189] = {.lex_state = 14}, - [2190] = {.lex_state = 14}, - [2191] = {.lex_state = 10}, - [2192] = {.lex_state = 16}, + [2188] = {.lex_state = 14}, + [2189] = {.lex_state = 16}, + [2190] = {.lex_state = 16}, + [2191] = {.lex_state = 16}, + [2192] = {.lex_state = 14}, [2193] = {.lex_state = 16}, - [2194] = {.lex_state = 16}, - [2195] = {.lex_state = 14}, - [2196] = {.lex_state = 14}, + [2194] = {.lex_state = 14}, + [2195] = {.lex_state = 70}, + [2196] = {.lex_state = 10}, [2197] = {.lex_state = 14}, [2198] = {.lex_state = 14}, [2199] = {.lex_state = 14}, - [2200] = {.lex_state = 14}, + [2200] = {.lex_state = 16}, [2201] = {.lex_state = 14}, [2202] = {.lex_state = 14}, - [2203] = {.lex_state = 23}, - [2204] = {.lex_state = 23}, - [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 23}, + [2203] = {.lex_state = 14}, + [2204] = {.lex_state = 14}, + [2205] = {.lex_state = 23}, + [2206] = {.lex_state = 14}, [2207] = {.lex_state = 14}, - [2208] = {.lex_state = 23}, + [2208] = {.lex_state = 14}, [2209] = {.lex_state = 23}, [2210] = {.lex_state = 23}, [2211] = {.lex_state = 14}, [2212] = {.lex_state = 23}, - [2213] = {.lex_state = 14}, - [2214] = {.lex_state = 14}, - [2215] = {.lex_state = 14}, + [2213] = {.lex_state = 23}, + [2214] = {.lex_state = 23}, + [2215] = {.lex_state = 23}, [2216] = {.lex_state = 14}, [2217] = {.lex_state = 23}, [2218] = {.lex_state = 14}, [2219] = {.lex_state = 14}, [2220] = {.lex_state = 14}, [2221] = {.lex_state = 14}, - [2222] = {.lex_state = 14}, + [2222] = {.lex_state = 23}, [2223] = {.lex_state = 14}, [2224] = {.lex_state = 14}, [2225] = {.lex_state = 14}, - [2226] = {.lex_state = 14}, + [2226] = {.lex_state = 23}, [2227] = {.lex_state = 14}, [2228] = {.lex_state = 14}, [2229] = {.lex_state = 14}, [2230] = {.lex_state = 14}, [2231] = {.lex_state = 14}, - [2232] = {.lex_state = 23}, - [2233] = {.lex_state = 21}, + [2232] = {.lex_state = 14}, + [2233] = {.lex_state = 14}, [2234] = {.lex_state = 14}, [2235] = {.lex_state = 14}, [2236] = {.lex_state = 14}, @@ -12348,694 +12386,694 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2238] = {.lex_state = 14}, [2239] = {.lex_state = 14}, [2240] = {.lex_state = 14}, - [2241] = {.lex_state = 23}, - [2242] = {.lex_state = 10}, - [2243] = {.lex_state = 14}, + [2241] = {.lex_state = 14}, + [2242] = {.lex_state = 14}, + [2243] = {.lex_state = 10}, [2244] = {.lex_state = 14}, [2245] = {.lex_state = 14}, [2246] = {.lex_state = 14}, - [2247] = {.lex_state = 23}, + [2247] = {.lex_state = 14}, [2248] = {.lex_state = 14}, [2249] = {.lex_state = 23}, [2250] = {.lex_state = 14}, [2251] = {.lex_state = 14}, - [2252] = {.lex_state = 23}, - [2253] = {.lex_state = 70}, - [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 70}, + [2252] = {.lex_state = 14}, + [2253] = {.lex_state = 21}, + [2254] = {.lex_state = 23}, + [2255] = {.lex_state = 14}, [2256] = {.lex_state = 14}, - [2257] = {.lex_state = 70}, - [2258] = {.lex_state = 14}, + [2257] = {.lex_state = 14}, + [2258] = {.lex_state = 23}, [2259] = {.lex_state = 14}, - [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 70}, - [2262] = {.lex_state = 23}, - [2263] = {.lex_state = 23}, + [2260] = {.lex_state = 23}, + [2261] = {.lex_state = 23}, + [2262] = {.lex_state = 14}, + [2263] = {.lex_state = 70}, [2264] = {.lex_state = 70}, - [2265] = {.lex_state = 14}, - [2266] = {.lex_state = 16}, - [2267] = {.lex_state = 70}, - [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 23}, - [2270] = {.lex_state = 70}, + [2265] = {.lex_state = 70}, + [2266] = {.lex_state = 14}, + [2267] = {.lex_state = 23}, + [2268] = {.lex_state = 23}, + [2269] = {.lex_state = 70}, + [2270] = {.lex_state = 23}, [2271] = {.lex_state = 70}, - [2272] = {.lex_state = 14}, - [2273] = {.lex_state = 14}, - [2274] = {.lex_state = 70}, + [2272] = {.lex_state = 70}, + [2273] = {.lex_state = 16}, + [2274] = {.lex_state = 16}, [2275] = {.lex_state = 70}, [2276] = {.lex_state = 70}, [2277] = {.lex_state = 70}, [2278] = {.lex_state = 70}, - [2279] = {.lex_state = 16}, - [2280] = {.lex_state = 3}, - [2281] = {.lex_state = 70}, - [2282] = {.lex_state = 70}, - [2283] = {.lex_state = 70}, - [2284] = {.lex_state = 70}, - [2285] = {.lex_state = 3}, - [2286] = {.lex_state = 10}, - [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 14}, - [2289] = {.lex_state = 3}, - [2290] = {.lex_state = 23}, - [2291] = {.lex_state = 23}, + [2279] = {.lex_state = 70}, + [2280] = {.lex_state = 70}, + [2281] = {.lex_state = 17}, + [2282] = {.lex_state = 3}, + [2283] = {.lex_state = 23}, + [2284] = {.lex_state = 10}, + [2285] = {.lex_state = 167}, + [2286] = {.lex_state = 14}, + [2287] = {.lex_state = 70}, + [2288] = {.lex_state = 70}, + [2289] = {.lex_state = 70}, + [2290] = {.lex_state = 70}, + [2291] = {.lex_state = 70}, [2292] = {.lex_state = 70}, [2293] = {.lex_state = 70}, [2294] = {.lex_state = 70}, [2295] = {.lex_state = 70}, [2296] = {.lex_state = 70}, - [2297] = {.lex_state = 70}, - [2298] = {.lex_state = 70}, + [2297] = {.lex_state = 3}, + [2298] = {.lex_state = 10}, [2299] = {.lex_state = 70}, - [2300] = {.lex_state = 10}, - [2301] = {.lex_state = 70}, - [2302] = {.lex_state = 23}, - [2303] = {.lex_state = 167}, - [2304] = {.lex_state = 14}, - [2305] = {.lex_state = 70}, + [2300] = {.lex_state = 3}, + [2301] = {.lex_state = 14}, + [2302] = {.lex_state = 70}, + [2303] = {.lex_state = 23}, + [2304] = {.lex_state = 70}, + [2305] = {.lex_state = 14}, [2306] = {.lex_state = 70}, [2307] = {.lex_state = 10}, - [2308] = {.lex_state = 14}, - [2309] = {.lex_state = 23}, - [2310] = {.lex_state = 14}, - [2311] = {.lex_state = 19}, + [2308] = {.lex_state = 70}, + [2309] = {.lex_state = 14}, + [2310] = {.lex_state = 70}, + [2311] = {.lex_state = 70}, [2312] = {.lex_state = 14}, [2313] = {.lex_state = 14}, - [2314] = {.lex_state = 19}, - [2315] = {.lex_state = 14}, - [2316] = {.lex_state = 14}, - [2317] = {.lex_state = 14}, - [2318] = {.lex_state = 14}, + [2314] = {.lex_state = 14}, + [2315] = {.lex_state = 70}, + [2316] = {.lex_state = 27}, + [2317] = {.lex_state = 18}, + [2318] = {.lex_state = 23}, [2319] = {.lex_state = 14}, [2320] = {.lex_state = 14}, - [2321] = {.lex_state = 17}, - [2322] = {.lex_state = 14}, + [2321] = {.lex_state = 14}, + [2322] = {.lex_state = 27}, [2323] = {.lex_state = 14}, [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 14}, + [2325] = {.lex_state = 27}, [2326] = {.lex_state = 14}, [2327] = {.lex_state = 14}, [2328] = {.lex_state = 14}, - [2329] = {.lex_state = 13}, - [2330] = {.lex_state = 17}, + [2329] = {.lex_state = 27}, + [2330] = {.lex_state = 14}, [2331] = {.lex_state = 14}, [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 13}, + [2333] = {.lex_state = 14}, [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 14}, + [2335] = {.lex_state = 27}, [2336] = {.lex_state = 27}, [2337] = {.lex_state = 14}, [2338] = {.lex_state = 27}, - [2339] = {.lex_state = 27}, - [2340] = {.lex_state = 27}, + [2339] = {.lex_state = 14}, + [2340] = {.lex_state = 14}, [2341] = {.lex_state = 27}, [2342] = {.lex_state = 14}, - [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 27}, - [2345] = {.lex_state = 14}, - [2346] = {.lex_state = 14}, - [2347] = {.lex_state = 70}, - [2348] = {.lex_state = 14}, - [2349] = {.lex_state = 14}, - [2350] = {.lex_state = 14}, + [2343] = {.lex_state = 14}, + [2344] = {.lex_state = 17}, + [2345] = {.lex_state = 18}, + [2346] = {.lex_state = 27}, + [2347] = {.lex_state = 17}, + [2348] = {.lex_state = 27}, + [2349] = {.lex_state = 27}, + [2350] = {.lex_state = 27}, [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 19}, - [2353] = {.lex_state = 27}, + [2352] = {.lex_state = 14}, + [2353] = {.lex_state = 14}, [2354] = {.lex_state = 14}, [2355] = {.lex_state = 14}, [2356] = {.lex_state = 14}, - [2357] = {.lex_state = 14}, - [2358] = {.lex_state = 70}, - [2359] = {.lex_state = 14}, - [2360] = {.lex_state = 27}, - [2361] = {.lex_state = 14}, + [2357] = {.lex_state = 27}, + [2358] = {.lex_state = 14}, + [2359] = {.lex_state = 17}, + [2360] = {.lex_state = 14}, + [2361] = {.lex_state = 18}, [2362] = {.lex_state = 27}, [2363] = {.lex_state = 14}, - [2364] = {.lex_state = 17}, + [2364] = {.lex_state = 27}, [2365] = {.lex_state = 14}, - [2366] = {.lex_state = 14}, - [2367] = {.lex_state = 27}, - [2368] = {.lex_state = 14}, - [2369] = {.lex_state = 27}, - [2370] = {.lex_state = 27}, + [2366] = {.lex_state = 17}, + [2367] = {.lex_state = 14}, + [2368] = {.lex_state = 27}, + [2369] = {.lex_state = 17}, + [2370] = {.lex_state = 14}, [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 27}, + [2372] = {.lex_state = 14}, [2373] = {.lex_state = 14}, - [2374] = {.lex_state = 19}, - [2375] = {.lex_state = 27}, - [2376] = {.lex_state = 19}, - [2377] = {.lex_state = 3}, + [2374] = {.lex_state = 17}, + [2375] = {.lex_state = 17}, + [2376] = {.lex_state = 14}, + [2377] = {.lex_state = 18}, [2378] = {.lex_state = 14}, - [2379] = {.lex_state = 27}, + [2379] = {.lex_state = 14}, [2380] = {.lex_state = 14}, - [2381] = {.lex_state = 3}, - [2382] = {.lex_state = 27}, - [2383] = {.lex_state = 14}, - [2384] = {.lex_state = 3}, + [2381] = {.lex_state = 14}, + [2382] = {.lex_state = 14}, + [2383] = {.lex_state = 3}, + [2384] = {.lex_state = 18}, [2385] = {.lex_state = 14}, - [2386] = {.lex_state = 19}, + [2386] = {.lex_state = 3}, [2387] = {.lex_state = 14}, - [2388] = {.lex_state = 27}, - [2389] = {.lex_state = 17}, - [2390] = {.lex_state = 14}, - [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 17}, - [2393] = {.lex_state = 17}, + [2388] = {.lex_state = 14}, + [2389] = {.lex_state = 27}, + [2390] = {.lex_state = 70}, + [2391] = {.lex_state = 27}, + [2392] = {.lex_state = 27}, + [2393] = {.lex_state = 14}, [2394] = {.lex_state = 14}, - [2395] = {.lex_state = 23}, + [2395] = {.lex_state = 3}, [2396] = {.lex_state = 14}, - [2397] = {.lex_state = 14}, + [2397] = {.lex_state = 13}, [2398] = {.lex_state = 14}, [2399] = {.lex_state = 14}, [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 14}, - [2402] = {.lex_state = 14}, - [2403] = {.lex_state = 14}, + [2401] = {.lex_state = 3}, + [2402] = {.lex_state = 70}, + [2403] = {.lex_state = 13}, [2404] = {.lex_state = 14}, [2405] = {.lex_state = 14}, - [2406] = {.lex_state = 3}, + [2406] = {.lex_state = 14}, [2407] = {.lex_state = 14}, [2408] = {.lex_state = 14}, - [2409] = {.lex_state = 6}, - [2410] = {.lex_state = 27}, - [2411] = {.lex_state = 27}, + [2409] = {.lex_state = 14}, + [2410] = {.lex_state = 14}, + [2411] = {.lex_state = 14}, [2412] = {.lex_state = 27}, - [2413] = {.lex_state = 10}, - [2414] = {.lex_state = 14}, - [2415] = {.lex_state = 10}, - [2416] = {.lex_state = 10}, - [2417] = {.lex_state = 27}, - [2418] = {.lex_state = 10}, + [2413] = {.lex_state = 14}, + [2414] = {.lex_state = 18}, + [2415] = {.lex_state = 14}, + [2416] = {.lex_state = 14}, + [2417] = {.lex_state = 17}, + [2418] = {.lex_state = 14}, [2419] = {.lex_state = 27}, [2420] = {.lex_state = 27}, - [2421] = {.lex_state = 14}, - [2422] = {.lex_state = 27}, - [2423] = {.lex_state = 10}, - [2424] = {.lex_state = 10}, + [2421] = {.lex_state = 27}, + [2422] = {.lex_state = 6}, + [2423] = {.lex_state = 14}, + [2424] = {.lex_state = 17}, [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 10}, + [2426] = {.lex_state = 10}, + [2427] = {.lex_state = 27}, [2428] = {.lex_state = 27}, - [2429] = {.lex_state = 14}, + [2429] = {.lex_state = 10}, [2430] = {.lex_state = 27}, [2431] = {.lex_state = 27}, - [2432] = {.lex_state = 27}, - [2433] = {.lex_state = 27}, - [2434] = {.lex_state = 10}, - [2435] = {.lex_state = 14}, - [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 10}, - [2438] = {.lex_state = 10}, - [2439] = {.lex_state = 27}, - [2440] = {.lex_state = 14}, + [2432] = {.lex_state = 14}, + [2433] = {.lex_state = 10}, + [2434] = {.lex_state = 27}, + [2435] = {.lex_state = 10}, + [2436] = {.lex_state = 10}, + [2437] = {.lex_state = 27}, + [2438] = {.lex_state = 27}, + [2439] = {.lex_state = 10}, + [2440] = {.lex_state = 6}, [2441] = {.lex_state = 10}, [2442] = {.lex_state = 10}, [2443] = {.lex_state = 10}, - [2444] = {.lex_state = 27}, + [2444] = {.lex_state = 10}, [2445] = {.lex_state = 14}, - [2446] = {.lex_state = 27}, - [2447] = {.lex_state = 14}, + [2446] = {.lex_state = 17}, + [2447] = {.lex_state = 27}, [2448] = {.lex_state = 10}, - [2449] = {.lex_state = 10}, + [2449] = {.lex_state = 27}, [2450] = {.lex_state = 10}, [2451] = {.lex_state = 10}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 14}, - [2454] = {.lex_state = 10}, - [2455] = {.lex_state = 10}, - [2456] = {.lex_state = 10}, + [2452] = {.lex_state = 17}, + [2453] = {.lex_state = 10}, + [2454] = {.lex_state = 27}, + [2455] = {.lex_state = 17}, + [2456] = {.lex_state = 27}, [2457] = {.lex_state = 10}, [2458] = {.lex_state = 10}, [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 27}, - [2461] = {.lex_state = 14}, - [2462] = {.lex_state = 27}, - [2463] = {.lex_state = 27}, + [2460] = {.lex_state = 10}, + [2461] = {.lex_state = 10}, + [2462] = {.lex_state = 10}, + [2463] = {.lex_state = 14}, [2464] = {.lex_state = 14}, [2465] = {.lex_state = 10}, - [2466] = {.lex_state = 14}, + [2466] = {.lex_state = 10, .external_lex_state = 3}, [2467] = {.lex_state = 27}, - [2468] = {.lex_state = 14}, - [2469] = {.lex_state = 14}, - [2470] = {.lex_state = 6}, - [2471] = {.lex_state = 14}, - [2472] = {.lex_state = 27}, - [2473] = {.lex_state = 14}, - [2474] = {.lex_state = 14}, - [2475] = {.lex_state = 27}, + [2468] = {.lex_state = 10}, + [2469] = {.lex_state = 27}, + [2470] = {.lex_state = 27}, + [2471] = {.lex_state = 17}, + [2472] = {.lex_state = 6}, + [2473] = {.lex_state = 27}, + [2474] = {.lex_state = 3}, + [2475] = {.lex_state = 10}, [2476] = {.lex_state = 27}, - [2477] = {.lex_state = 14}, - [2478] = {.lex_state = 10}, + [2477] = {.lex_state = 27}, + [2478] = {.lex_state = 14}, [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 14}, - [2481] = {.lex_state = 10, .external_lex_state = 3}, + [2480] = {.lex_state = 27}, + [2481] = {.lex_state = 27}, [2482] = {.lex_state = 27}, - [2483] = {.lex_state = 14}, - [2484] = {.lex_state = 10}, - [2485] = {.lex_state = 14}, - [2486] = {.lex_state = 27}, - [2487] = {.lex_state = 10}, + [2483] = {.lex_state = 10}, + [2484] = {.lex_state = 27}, + [2485] = {.lex_state = 27}, + [2486] = {.lex_state = 14}, + [2487] = {.lex_state = 14}, [2488] = {.lex_state = 10}, - [2489] = {.lex_state = 70}, + [2489] = {.lex_state = 14}, [2490] = {.lex_state = 6}, - [2491] = {.lex_state = 27}, - [2492] = {.lex_state = 10}, - [2493] = {.lex_state = 27}, + [2491] = {.lex_state = 14}, + [2492] = {.lex_state = 14}, + [2493] = {.lex_state = 14}, [2494] = {.lex_state = 10}, [2495] = {.lex_state = 27}, - [2496] = {.lex_state = 27}, + [2496] = {.lex_state = 70}, [2497] = {.lex_state = 27}, [2498] = {.lex_state = 27}, - [2499] = {.lex_state = 27}, - [2500] = {.lex_state = 70}, + [2499] = {.lex_state = 3}, + [2500] = {.lex_state = 14}, [2501] = {.lex_state = 27}, [2502] = {.lex_state = 27}, [2503] = {.lex_state = 27}, - [2504] = {.lex_state = 10}, - [2505] = {.lex_state = 14}, - [2506] = {.lex_state = 14}, + [2504] = {.lex_state = 27}, + [2505] = {.lex_state = 27}, + [2506] = {.lex_state = 70}, [2507] = {.lex_state = 10}, - [2508] = {.lex_state = 14}, - [2509] = {.lex_state = 3}, - [2510] = {.lex_state = 3}, + [2508] = {.lex_state = 27}, + [2509] = {.lex_state = 14}, + [2510] = {.lex_state = 14}, [2511] = {.lex_state = 10}, - [2512] = {.lex_state = 6}, - [2513] = {.lex_state = 27}, - [2514] = {.lex_state = 70}, - [2515] = {.lex_state = 6}, - [2516] = {.lex_state = 6}, + [2512] = {.lex_state = 27}, + [2513] = {.lex_state = 14}, + [2514] = {.lex_state = 27}, + [2515] = {.lex_state = 27}, + [2516] = {.lex_state = 10}, [2517] = {.lex_state = 14}, - [2518] = {.lex_state = 29}, + [2518] = {.lex_state = 27}, [2519] = {.lex_state = 10}, - [2520] = {.lex_state = 6}, + [2520] = {.lex_state = 14}, [2521] = {.lex_state = 14}, [2522] = {.lex_state = 14}, - [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 10, .external_lex_state = 4}, - [2525] = {.lex_state = 10}, + [2523] = {.lex_state = 27}, + [2524] = {.lex_state = 10}, + [2525] = {.lex_state = 14}, [2526] = {.lex_state = 10}, [2527] = {.lex_state = 10}, - [2528] = {.lex_state = 6}, - [2529] = {.lex_state = 6}, - [2530] = {.lex_state = 27}, + [2528] = {.lex_state = 14}, + [2529] = {.lex_state = 10, .external_lex_state = 4}, + [2530] = {.lex_state = 10}, [2531] = {.lex_state = 10}, - [2532] = {.lex_state = 70}, + [2532] = {.lex_state = 27}, [2533] = {.lex_state = 70}, [2534] = {.lex_state = 10}, [2535] = {.lex_state = 10}, - [2536] = {.lex_state = 70}, - [2537] = {.lex_state = 3}, - [2538] = {.lex_state = 6}, - [2539] = {.lex_state = 70}, + [2536] = {.lex_state = 17}, + [2537] = {.lex_state = 6}, + [2538] = {.lex_state = 10}, + [2539] = {.lex_state = 10, .external_lex_state = 4}, [2540] = {.lex_state = 70}, - [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 10}, - [2543] = {.lex_state = 6}, - [2544] = {.lex_state = 10}, - [2545] = {.lex_state = 10}, - [2546] = {.lex_state = 10, .external_lex_state = 4}, - [2547] = {.lex_state = 14}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 10}, - [2550] = {.lex_state = 14}, + [2541] = {.lex_state = 6}, + [2542] = {.lex_state = 6}, + [2543] = {.lex_state = 14}, + [2544] = {.lex_state = 6}, + [2545] = {.lex_state = 6}, + [2546] = {.lex_state = 70}, + [2547] = {.lex_state = 29}, + [2548] = {.lex_state = 70}, + [2549] = {.lex_state = 70}, + [2550] = {.lex_state = 6}, [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 10}, - [2553] = {.lex_state = 16}, - [2554] = {.lex_state = 14}, + [2552] = {.lex_state = 6}, + [2553] = {.lex_state = 6}, + [2554] = {.lex_state = 6}, [2555] = {.lex_state = 10}, - [2556] = {.lex_state = 10}, + [2556] = {.lex_state = 14}, [2557] = {.lex_state = 10}, - [2558] = {.lex_state = 70}, - [2559] = {.lex_state = 10}, - [2560] = {.lex_state = 10}, - [2561] = {.lex_state = 6}, - [2562] = {.lex_state = 10}, - [2563] = {.lex_state = 14}, - [2564] = {.lex_state = 10, .external_lex_state = 4}, - [2565] = {.lex_state = 70}, - [2566] = {.lex_state = 6}, - [2567] = {.lex_state = 6}, - [2568] = {.lex_state = 6}, - [2569] = {.lex_state = 6}, - [2570] = {.lex_state = 6}, - [2571] = {.lex_state = 70}, - [2572] = {.lex_state = 27}, - [2573] = {.lex_state = 14}, - [2574] = {.lex_state = 6}, - [2575] = {.lex_state = 70}, - [2576] = {.lex_state = 14}, + [2558] = {.lex_state = 6}, + [2559] = {.lex_state = 70}, + [2560] = {.lex_state = 14}, + [2561] = {.lex_state = 16}, + [2562] = {.lex_state = 70}, + [2563] = {.lex_state = 10}, + [2564] = {.lex_state = 14}, + [2565] = {.lex_state = 3}, + [2566] = {.lex_state = 70}, + [2567] = {.lex_state = 70}, + [2568] = {.lex_state = 10}, + [2569] = {.lex_state = 70}, + [2570] = {.lex_state = 27}, + [2571] = {.lex_state = 10}, + [2572] = {.lex_state = 10}, + [2573] = {.lex_state = 70}, + [2574] = {.lex_state = 70}, + [2575] = {.lex_state = 6}, + [2576] = {.lex_state = 10}, [2577] = {.lex_state = 10}, - [2578] = {.lex_state = 27}, - [2579] = {.lex_state = 14}, + [2578] = {.lex_state = 10}, + [2579] = {.lex_state = 10, .external_lex_state = 4}, [2580] = {.lex_state = 10}, - [2581] = {.lex_state = 70}, - [2582] = {.lex_state = 10}, - [2583] = {.lex_state = 14}, - [2584] = {.lex_state = 70}, - [2585] = {.lex_state = 70}, - [2586] = {.lex_state = 14}, - [2587] = {.lex_state = 10}, - [2588] = {.lex_state = 10}, - [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 10}, + [2581] = {.lex_state = 10}, + [2582] = {.lex_state = 70}, + [2583] = {.lex_state = 10}, + [2584] = {.lex_state = 10}, + [2585] = {.lex_state = 10}, + [2586] = {.lex_state = 10, .external_lex_state = 4}, + [2587] = {.lex_state = 70}, + [2588] = {.lex_state = 6}, + [2589] = {.lex_state = 6}, + [2590] = {.lex_state = 6}, [2591] = {.lex_state = 6}, - [2592] = {.lex_state = 70}, - [2593] = {.lex_state = 27}, - [2594] = {.lex_state = 17}, - [2595] = {.lex_state = 14}, + [2592] = {.lex_state = 10, .external_lex_state = 4}, + [2593] = {.lex_state = 10, .external_lex_state = 4}, + [2594] = {.lex_state = 27}, + [2595] = {.lex_state = 10}, [2596] = {.lex_state = 10}, - [2597] = {.lex_state = 10}, - [2598] = {.lex_state = 10, .external_lex_state = 4}, + [2597] = {.lex_state = 6}, + [2598] = {.lex_state = 6}, [2599] = {.lex_state = 10}, - [2600] = {.lex_state = 70}, + [2600] = {.lex_state = 14}, [2601] = {.lex_state = 10}, [2602] = {.lex_state = 70}, - [2603] = {.lex_state = 10}, + [2603] = {.lex_state = 70}, [2604] = {.lex_state = 10}, [2605] = {.lex_state = 10}, - [2606] = {.lex_state = 10, .external_lex_state = 4}, - [2607] = {.lex_state = 70}, - [2608] = {.lex_state = 6}, - [2609] = {.lex_state = 6}, - [2610] = {.lex_state = 70}, - [2611] = {.lex_state = 70}, + [2606] = {.lex_state = 10}, + [2607] = {.lex_state = 14}, + [2608] = {.lex_state = 10}, + [2609] = {.lex_state = 10, .external_lex_state = 4}, + [2610] = {.lex_state = 10}, + [2611] = {.lex_state = 29}, [2612] = {.lex_state = 27}, - [2613] = {.lex_state = 10}, - [2614] = {.lex_state = 17}, - [2615] = {.lex_state = 10}, + [2613] = {.lex_state = 70}, + [2614] = {.lex_state = 10, .external_lex_state = 4}, + [2615] = {.lex_state = 70}, [2616] = {.lex_state = 6}, - [2617] = {.lex_state = 10}, - [2618] = {.lex_state = 70}, - [2619] = {.lex_state = 10, .external_lex_state = 4}, - [2620] = {.lex_state = 10}, - [2621] = {.lex_state = 14}, - [2622] = {.lex_state = 70}, + [2617] = {.lex_state = 6}, + [2618] = {.lex_state = 6}, + [2619] = {.lex_state = 6}, + [2620] = {.lex_state = 6}, + [2621] = {.lex_state = 70}, + [2622] = {.lex_state = 10}, [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 70}, - [2625] = {.lex_state = 6}, + [2624] = {.lex_state = 10, .external_lex_state = 4}, + [2625] = {.lex_state = 70}, [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 10}, + [2627] = {.lex_state = 6}, [2628] = {.lex_state = 17}, - [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 10, .external_lex_state = 4}, - [2631] = {.lex_state = 10, .external_lex_state = 4}, - [2632] = {.lex_state = 17}, - [2633] = {.lex_state = 6}, - [2634] = {.lex_state = 6}, - [2635] = {.lex_state = 10, .external_lex_state = 4}, + [2629] = {.lex_state = 14}, + [2630] = {.lex_state = 14}, + [2631] = {.lex_state = 14}, + [2632] = {.lex_state = 70}, + [2633] = {.lex_state = 14}, + [2634] = {.lex_state = 70}, + [2635] = {.lex_state = 70}, [2636] = {.lex_state = 70}, - [2637] = {.lex_state = 10}, - [2638] = {.lex_state = 70}, + [2637] = {.lex_state = 6}, + [2638] = {.lex_state = 6}, [2639] = {.lex_state = 6}, - [2640] = {.lex_state = 6}, - [2641] = {.lex_state = 70}, - [2642] = {.lex_state = 14}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 6}, - [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 6}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 6}, - [2651] = {.lex_state = 6}, - [2652] = {.lex_state = 6}, - [2653] = {.lex_state = 27}, - [2654] = {.lex_state = 10}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 10}, - [2657] = {.lex_state = 3}, - [2658] = {.lex_state = 70}, - [2659] = {.lex_state = 16}, - [2660] = {.lex_state = 70}, - [2661] = {.lex_state = 70}, - [2662] = {.lex_state = 14}, - [2663] = {.lex_state = 14}, - [2664] = {.lex_state = 10}, - [2665] = {.lex_state = 3}, - [2666] = {.lex_state = 14}, - [2667] = {.lex_state = 27}, - [2668] = {.lex_state = 16}, - [2669] = {.lex_state = 70}, - [2670] = {.lex_state = 70}, - [2671] = {.lex_state = 70}, - [2672] = {.lex_state = 10}, - [2673] = {.lex_state = 29}, - [2674] = {.lex_state = 70}, - [2675] = {.lex_state = 70}, + [2640] = {.lex_state = 14}, + [2641] = {.lex_state = 6}, + [2642] = {.lex_state = 6}, + [2643] = {.lex_state = 70}, + [2644] = {.lex_state = 70}, + [2645] = {.lex_state = 29}, + [2646] = {.lex_state = 27}, + [2647] = {.lex_state = 70}, + [2648] = {.lex_state = 70}, + [2649] = {.lex_state = 10}, + [2650] = {.lex_state = 3}, + [2651] = {.lex_state = 27}, + [2652] = {.lex_state = 27}, + [2653] = {.lex_state = 14}, + [2654] = {.lex_state = 70}, + [2655] = {.lex_state = 17}, + [2656] = {.lex_state = 14}, + [2657] = {.lex_state = 14}, + [2658] = {.lex_state = 10}, + [2659] = {.lex_state = 14}, + [2660] = {.lex_state = 14}, + [2661] = {.lex_state = 14}, + [2662] = {.lex_state = 10}, + [2663] = {.lex_state = 70}, + [2664] = {.lex_state = 70}, + [2665] = {.lex_state = 70}, + [2666] = {.lex_state = 10}, + [2667] = {.lex_state = 14}, + [2668] = {.lex_state = 14}, + [2669] = {.lex_state = 6}, + [2670] = {.lex_state = 27}, + [2671] = {.lex_state = 14}, + [2672] = {.lex_state = 14}, + [2673] = {.lex_state = 10}, + [2674] = {.lex_state = 14}, + [2675] = {.lex_state = 10}, [2676] = {.lex_state = 10}, - [2677] = {.lex_state = 70}, - [2678] = {.lex_state = 14}, - [2679] = {.lex_state = 10}, - [2680] = {.lex_state = 14}, - [2681] = {.lex_state = 10}, - [2682] = {.lex_state = 14}, - [2683] = {.lex_state = 17}, - [2684] = {.lex_state = 14}, - [2685] = {.lex_state = 29}, - [2686] = {.lex_state = 14}, - [2687] = {.lex_state = 6}, + [2677] = {.lex_state = 14}, + [2678] = {.lex_state = 6}, + [2679] = {.lex_state = 70}, + [2680] = {.lex_state = 10}, + [2681] = {.lex_state = 27}, + [2682] = {.lex_state = 27}, + [2683] = {.lex_state = 70}, + [2684] = {.lex_state = 70}, + [2685] = {.lex_state = 10}, + [2686] = {.lex_state = 17}, + [2687] = {.lex_state = 70}, [2688] = {.lex_state = 10}, - [2689] = {.lex_state = 27}, - [2690] = {.lex_state = 27}, - [2691] = {.lex_state = 29}, + [2689] = {.lex_state = 10}, + [2690] = {.lex_state = 6}, + [2691] = {.lex_state = 70}, [2692] = {.lex_state = 14}, - [2693] = {.lex_state = 70}, - [2694] = {.lex_state = 70}, + [2693] = {.lex_state = 14}, + [2694] = {.lex_state = 10}, [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 10}, - [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 27}, - [2699] = {.lex_state = 17}, - [2700] = {.lex_state = 70}, + [2696] = {.lex_state = 10, .external_lex_state = 4}, + [2697] = {.lex_state = 27}, + [2698] = {.lex_state = 6}, + [2699] = {.lex_state = 70}, + [2700] = {.lex_state = 10}, [2701] = {.lex_state = 14}, - [2702] = {.lex_state = 10, .external_lex_state = 4}, - [2703] = {.lex_state = 70}, + [2702] = {.lex_state = 27}, + [2703] = {.lex_state = 14}, [2704] = {.lex_state = 10}, [2705] = {.lex_state = 10}, - [2706] = {.lex_state = 27}, - [2707] = {.lex_state = 10}, - [2708] = {.lex_state = 6}, - [2709] = {.lex_state = 70}, - [2710] = {.lex_state = 10}, - [2711] = {.lex_state = 14}, - [2712] = {.lex_state = 17}, - [2713] = {.lex_state = 10, .external_lex_state = 4}, - [2714] = {.lex_state = 6}, - [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 10}, + [2706] = {.lex_state = 16}, + [2707] = {.lex_state = 14}, + [2708] = {.lex_state = 10}, + [2709] = {.lex_state = 10}, + [2710] = {.lex_state = 17}, + [2711] = {.lex_state = 70}, + [2712] = {.lex_state = 70}, + [2713] = {.lex_state = 10}, + [2714] = {.lex_state = 10}, + [2715] = {.lex_state = 6}, + [2716] = {.lex_state = 6}, [2717] = {.lex_state = 3}, - [2718] = {.lex_state = 17}, - [2719] = {.lex_state = 14}, - [2720] = {.lex_state = 14}, - [2721] = {.lex_state = 27}, - [2722] = {.lex_state = 27}, + [2718] = {.lex_state = 6}, + [2719] = {.lex_state = 6}, + [2720] = {.lex_state = 70}, + [2721] = {.lex_state = 14}, + [2722] = {.lex_state = 14}, [2723] = {.lex_state = 70}, - [2724] = {.lex_state = 70}, - [2725] = {.lex_state = 10}, + [2724] = {.lex_state = 10}, + [2725] = {.lex_state = 6}, [2726] = {.lex_state = 10}, - [2727] = {.lex_state = 14}, - [2728] = {.lex_state = 70}, - [2729] = {.lex_state = 3}, - [2730] = {.lex_state = 70}, - [2731] = {.lex_state = 14}, + [2727] = {.lex_state = 6}, + [2728] = {.lex_state = 10, .external_lex_state = 4}, + [2729] = {.lex_state = 6}, + [2730] = {.lex_state = 10, .external_lex_state = 4}, + [2731] = {.lex_state = 70}, [2732] = {.lex_state = 10}, - [2733] = {.lex_state = 14}, - [2734] = {.lex_state = 10, .external_lex_state = 4}, - [2735] = {.lex_state = 14}, + [2733] = {.lex_state = 3}, + [2734] = {.lex_state = 10}, + [2735] = {.lex_state = 17}, [2736] = {.lex_state = 14}, - [2737] = {.lex_state = 70}, - [2738] = {.lex_state = 70}, - [2739] = {.lex_state = 6}, - [2740] = {.lex_state = 6}, - [2741] = {.lex_state = 6}, - [2742] = {.lex_state = 6}, - [2743] = {.lex_state = 14}, - [2744] = {.lex_state = 6}, - [2745] = {.lex_state = 14}, + [2737] = {.lex_state = 10}, + [2738] = {.lex_state = 3}, + [2739] = {.lex_state = 27}, + [2740] = {.lex_state = 14}, + [2741] = {.lex_state = 14}, + [2742] = {.lex_state = 14}, + [2743] = {.lex_state = 10}, + [2744] = {.lex_state = 10}, + [2745] = {.lex_state = 70}, [2746] = {.lex_state = 70}, [2747] = {.lex_state = 70}, [2748] = {.lex_state = 6}, - [2749] = {.lex_state = 6}, - [2750] = {.lex_state = 14}, - [2751] = {.lex_state = 6}, - [2752] = {.lex_state = 6}, + [2749] = {.lex_state = 14}, + [2750] = {.lex_state = 6}, + [2751] = {.lex_state = 14}, + [2752] = {.lex_state = 10}, [2753] = {.lex_state = 14}, [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 10}, + [2755] = {.lex_state = 6}, [2756] = {.lex_state = 6}, - [2757] = {.lex_state = 17}, - [2758] = {.lex_state = 70}, + [2757] = {.lex_state = 6}, + [2758] = {.lex_state = 16}, [2759] = {.lex_state = 6}, - [2760] = {.lex_state = 70}, - [2761] = {.lex_state = 70}, - [2762] = {.lex_state = 70}, - [2763] = {.lex_state = 70}, - [2764] = {.lex_state = 6}, - [2765] = {.lex_state = 70}, + [2760] = {.lex_state = 6}, + [2761] = {.lex_state = 14}, + [2762] = {.lex_state = 10}, + [2763] = {.lex_state = 14}, + [2764] = {.lex_state = 29}, + [2765] = {.lex_state = 17}, [2766] = {.lex_state = 70}, - [2767] = {.lex_state = 70}, + [2767] = {.lex_state = 10}, [2768] = {.lex_state = 70}, - [2769] = {.lex_state = 70}, - [2770] = {.lex_state = 17}, - [2771] = {.lex_state = 70}, - [2772] = {.lex_state = 17}, + [2769] = {.lex_state = 17}, + [2770] = {.lex_state = 10}, + [2771] = {.lex_state = 14}, + [2772] = {.lex_state = 70}, [2773] = {.lex_state = 70}, [2774] = {.lex_state = 70}, - [2775] = {.lex_state = 70}, + [2775] = {.lex_state = 17}, [2776] = {.lex_state = 70}, [2777] = {.lex_state = 70}, [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 70}, - [2780] = {.lex_state = 70}, + [2779] = {.lex_state = 27}, + [2780] = {.lex_state = 14}, [2781] = {.lex_state = 70}, [2782] = {.lex_state = 70}, [2783] = {.lex_state = 70}, [2784] = {.lex_state = 70}, [2785] = {.lex_state = 70}, - [2786] = {.lex_state = 17}, - [2787] = {.lex_state = 70}, + [2786] = {.lex_state = 6}, + [2787] = {.lex_state = 17}, [2788] = {.lex_state = 70}, - [2789] = {.lex_state = 14}, - [2790] = {.lex_state = 6}, - [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 17}, + [2789] = {.lex_state = 70}, + [2790] = {.lex_state = 17}, + [2791] = {.lex_state = 70}, + [2792] = {.lex_state = 18}, [2793] = {.lex_state = 70}, - [2794] = {.lex_state = 17}, + [2794] = {.lex_state = 70}, [2795] = {.lex_state = 70}, [2796] = {.lex_state = 70}, [2797] = {.lex_state = 70}, [2798] = {.lex_state = 70}, [2799] = {.lex_state = 70}, - [2800] = {.lex_state = 14}, + [2800] = {.lex_state = 70}, [2801] = {.lex_state = 70}, [2802] = {.lex_state = 70}, - [2803] = {.lex_state = 14}, + [2803] = {.lex_state = 70}, [2804] = {.lex_state = 70}, - [2805] = {.lex_state = 14}, + [2805] = {.lex_state = 27}, [2806] = {.lex_state = 70}, - [2807] = {.lex_state = 70}, + [2807] = {.lex_state = 14}, [2808] = {.lex_state = 70}, - [2809] = {.lex_state = 70}, - [2810] = {.lex_state = 14}, + [2809] = {.lex_state = 17}, + [2810] = {.lex_state = 70}, [2811] = {.lex_state = 70}, - [2812] = {.lex_state = 70}, + [2812] = {.lex_state = 17}, [2813] = {.lex_state = 70}, - [2814] = {.lex_state = 27}, + [2814] = {.lex_state = 70}, [2815] = {.lex_state = 70}, [2816] = {.lex_state = 70}, - [2817] = {.lex_state = 70}, + [2817] = {.lex_state = 17}, [2818] = {.lex_state = 70}, [2819] = {.lex_state = 70}, [2820] = {.lex_state = 70}, [2821] = {.lex_state = 70}, [2822] = {.lex_state = 70}, [2823] = {.lex_state = 70}, - [2824] = {.lex_state = 70}, + [2824] = {.lex_state = 17}, [2825] = {.lex_state = 70}, [2826] = {.lex_state = 70}, [2827] = {.lex_state = 70}, [2828] = {.lex_state = 70}, - [2829] = {.lex_state = 70}, + [2829] = {.lex_state = 6}, [2830] = {.lex_state = 70}, - [2831] = {.lex_state = 14}, - [2832] = {.lex_state = 70}, + [2831] = {.lex_state = 70}, + [2832] = {.lex_state = 17}, [2833] = {.lex_state = 70}, - [2834] = {.lex_state = 70}, - [2835] = {.lex_state = 70}, + [2834] = {.lex_state = 10}, + [2835] = {.lex_state = 14}, [2836] = {.lex_state = 70}, [2837] = {.lex_state = 70}, [2838] = {.lex_state = 70}, [2839] = {.lex_state = 70}, [2840] = {.lex_state = 70}, - [2841] = {.lex_state = 6}, + [2841] = {.lex_state = 70}, [2842] = {.lex_state = 70}, [2843] = {.lex_state = 70}, [2844] = {.lex_state = 70}, [2845] = {.lex_state = 70}, [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 70}, + [2847] = {.lex_state = 6}, [2848] = {.lex_state = 70}, [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 70}, + [2850] = {.lex_state = 18}, [2851] = {.lex_state = 70}, - [2852] = {.lex_state = 17}, - [2853] = {.lex_state = 70}, - [2854] = {.lex_state = 14}, - [2855] = {.lex_state = 17}, - [2856] = {.lex_state = 19}, + [2852] = {.lex_state = 6}, + [2853] = {.lex_state = 14}, + [2854] = {.lex_state = 17}, + [2855] = {.lex_state = 70}, + [2856] = {.lex_state = 14}, [2857] = {.lex_state = 70}, [2858] = {.lex_state = 70}, - [2859] = {.lex_state = 19}, + [2859] = {.lex_state = 70}, [2860] = {.lex_state = 70}, [2861] = {.lex_state = 70}, [2862] = {.lex_state = 70}, [2863] = {.lex_state = 70}, - [2864] = {.lex_state = 17}, - [2865] = {.lex_state = 70}, + [2864] = {.lex_state = 70}, + [2865] = {.lex_state = 14}, [2866] = {.lex_state = 70}, [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 70}, - [2869] = {.lex_state = 70}, + [2868] = {.lex_state = 17}, + [2869] = {.lex_state = 17}, [2870] = {.lex_state = 70}, [2871] = {.lex_state = 70}, - [2872] = {.lex_state = 17}, - [2873] = {.lex_state = 17}, - [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 70}, - [2876] = {.lex_state = 17}, - [2877] = {.lex_state = 17}, - [2878] = {.lex_state = 70}, + [2872] = {.lex_state = 70}, + [2873] = {.lex_state = 70}, + [2874] = {.lex_state = 6}, + [2875] = {.lex_state = 14}, + [2876] = {.lex_state = 70}, + [2877] = {.lex_state = 70}, + [2878] = {.lex_state = 10}, [2879] = {.lex_state = 70}, - [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 70}, - [2882] = {.lex_state = 17}, - [2883] = {.lex_state = 10}, - [2884] = {.lex_state = 17}, + [2880] = {.lex_state = 10}, + [2881] = {.lex_state = 17}, + [2882] = {.lex_state = 70}, + [2883] = {.lex_state = 70}, + [2884] = {.lex_state = 70}, [2885] = {.lex_state = 17}, - [2886] = {.lex_state = 17}, - [2887] = {.lex_state = 10}, - [2888] = {.lex_state = 14}, + [2886] = {.lex_state = 70}, + [2887] = {.lex_state = 70}, + [2888] = {.lex_state = 70}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, - [2891] = {.lex_state = 14}, + [2891] = {.lex_state = 70}, [2892] = {.lex_state = 70}, [2893] = {.lex_state = 70}, [2894] = {.lex_state = 70}, [2895] = {.lex_state = 70}, - [2896] = {.lex_state = 70}, + [2896] = {.lex_state = 17}, [2897] = {.lex_state = 70}, [2898] = {.lex_state = 70}, [2899] = {.lex_state = 70}, - [2900] = {.lex_state = 70}, + [2900] = {.lex_state = 14}, [2901] = {.lex_state = 70}, - [2902] = {.lex_state = 19}, - [2903] = {.lex_state = 14}, - [2904] = {.lex_state = 70}, + [2902] = {.lex_state = 70}, + [2903] = {.lex_state = 70}, + [2904] = {.lex_state = 14}, [2905] = {.lex_state = 70}, - [2906] = {.lex_state = 70}, - [2907] = {.lex_state = 17}, + [2906] = {.lex_state = 14}, + [2907] = {.lex_state = 70}, [2908] = {.lex_state = 70}, [2909] = {.lex_state = 70}, [2910] = {.lex_state = 70}, - [2911] = {.lex_state = 14}, + [2911] = {.lex_state = 70}, [2912] = {.lex_state = 70}, [2913] = {.lex_state = 70}, - [2914] = {.lex_state = 6}, - [2915] = {.lex_state = 17}, - [2916] = {.lex_state = 70}, - [2917] = {.lex_state = 70}, - [2918] = {.lex_state = 17}, - [2919] = {.lex_state = 17}, + [2914] = {.lex_state = 70}, + [2915] = {.lex_state = 14}, + [2916] = {.lex_state = 6}, + [2917] = {.lex_state = 14}, + [2918] = {.lex_state = 70}, + [2919] = {.lex_state = 70}, [2920] = {.lex_state = 70}, [2921] = {.lex_state = 70}, [2922] = {.lex_state = 70}, - [2923] = {.lex_state = 70}, - [2924] = {.lex_state = 14}, + [2923] = {.lex_state = 14}, + [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 70}, + [2926] = {.lex_state = 6}, [2927] = {.lex_state = 70}, - [2928] = {.lex_state = 70}, + [2928] = {.lex_state = 10}, [2929] = {.lex_state = 70}, [2930] = {.lex_state = 70}, [2931] = {.lex_state = 70}, @@ -13043,65 +13081,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2933] = {.lex_state = 70}, [2934] = {.lex_state = 70}, [2935] = {.lex_state = 17}, - [2936] = {.lex_state = 17}, - [2937] = {.lex_state = 6}, - [2938] = {.lex_state = 14}, - [2939] = {.lex_state = 6}, - [2940] = {.lex_state = 70}, + [2936] = {.lex_state = 18}, + [2937] = {.lex_state = 70}, + [2938] = {.lex_state = 70}, + [2939] = {.lex_state = 70}, + [2940] = {.lex_state = 6}, [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 17}, - [2943] = {.lex_state = 70}, - [2944] = {.lex_state = 14}, - [2945] = {.lex_state = 70}, - [2946] = {.lex_state = 6}, - [2947] = {.lex_state = 70}, + [2942] = {.lex_state = 70}, + [2943] = {.lex_state = 17}, + [2944] = {.lex_state = 70}, + [2945] = {.lex_state = 14}, + [2946] = {.lex_state = 70}, + [2947] = {.lex_state = 17}, [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 70}, + [2949] = {.lex_state = 17}, [2950] = {.lex_state = 14}, - [2951] = {.lex_state = 70}, - [2952] = {.lex_state = 14}, + [2951] = {.lex_state = 17}, + [2952] = {.lex_state = 70}, [2953] = {.lex_state = 70}, - [2954] = {.lex_state = 70}, + [2954] = {.lex_state = 17}, [2955] = {.lex_state = 70}, - [2956] = {.lex_state = 70}, + [2956] = {.lex_state = 17}, [2957] = {.lex_state = 70}, - [2958] = {.lex_state = 70}, - [2959] = {.lex_state = 14}, - [2960] = {.lex_state = 14}, + [2958] = {.lex_state = 17}, + [2959] = {.lex_state = 70}, + [2960] = {.lex_state = 70}, [2961] = {.lex_state = 70}, [2962] = {.lex_state = 70}, - [2963] = {.lex_state = 70}, - [2964] = {.lex_state = 70}, - [2965] = {.lex_state = 70}, - [2966] = {.lex_state = 14}, + [2963] = {.lex_state = 17}, + [2964] = {.lex_state = 17}, + [2965] = {.lex_state = 14}, + [2966] = {.lex_state = 70}, [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 10, .external_lex_state = 4}, + [2968] = {.lex_state = 17}, [2969] = {.lex_state = 70}, [2970] = {.lex_state = 70}, - [2971] = {.lex_state = 14}, - [2972] = {.lex_state = 17}, - [2973] = {.lex_state = 70}, + [2971] = {.lex_state = 17}, + [2972] = {.lex_state = 6}, + [2973] = {.lex_state = 17}, [2974] = {.lex_state = 70}, - [2975] = {.lex_state = 17}, + [2975] = {.lex_state = 70}, [2976] = {.lex_state = 70}, [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 17}, - [2979] = {.lex_state = 70}, - [2980] = {.lex_state = 27}, - [2981] = {.lex_state = 70}, - [2982] = {.lex_state = 6}, + [2978] = {.lex_state = 14}, + [2979] = {.lex_state = 14}, + [2980] = {.lex_state = 70}, + [2981] = {.lex_state = 17}, + [2982] = {.lex_state = 70}, [2983] = {.lex_state = 70}, - [2984] = {.lex_state = 17}, - [2985] = {.lex_state = 17}, - [2986] = {.lex_state = 17}, + [2984] = {.lex_state = 70}, + [2985] = {.lex_state = 70}, + [2986] = {.lex_state = 70}, [2987] = {.lex_state = 70}, - [2988] = {.lex_state = 17}, + [2988] = {.lex_state = 70}, [2989] = {.lex_state = 70}, [2990] = {.lex_state = 70}, [2991] = {.lex_state = 70}, - [2992] = {.lex_state = 19}, + [2992] = {.lex_state = 70}, [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 14}, + [2994] = {.lex_state = 70}, [2995] = {.lex_state = 70}, [2996] = {.lex_state = 70}, [2997] = {.lex_state = 70}, @@ -13110,245 +13148,245 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3000] = {.lex_state = 70}, [3001] = {.lex_state = 70}, [3002] = {.lex_state = 70}, - [3003] = {.lex_state = 70}, + [3003] = {.lex_state = 17}, [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 17}, - [3006] = {.lex_state = 17}, + [3005] = {.lex_state = 70}, + [3006] = {.lex_state = 70}, [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 17}, - [3009] = {.lex_state = 70}, - [3010] = {.lex_state = 14}, - [3011] = {.lex_state = 17}, + [3008] = {.lex_state = 18}, + [3009] = {.lex_state = 14}, + [3010] = {.lex_state = 70}, + [3011] = {.lex_state = 70}, [3012] = {.lex_state = 70}, [3013] = {.lex_state = 70}, [3014] = {.lex_state = 70}, [3015] = {.lex_state = 70}, [3016] = {.lex_state = 70}, - [3017] = {.lex_state = 10}, + [3017] = {.lex_state = 70}, [3018] = {.lex_state = 70}, [3019] = {.lex_state = 70}, [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 17}, + [3021] = {.lex_state = 70}, [3022] = {.lex_state = 70}, [3023] = {.lex_state = 70}, - [3024] = {.lex_state = 70}, - [3025] = {.lex_state = 70}, + [3024] = {.lex_state = 17}, + [3025] = {.lex_state = 14}, [3026] = {.lex_state = 70}, [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 70}, - [3029] = {.lex_state = 70}, + [3028] = {.lex_state = 6}, + [3029] = {.lex_state = 17}, [3030] = {.lex_state = 70}, [3031] = {.lex_state = 70}, - [3032] = {.lex_state = 6}, - [3033] = {.lex_state = 70}, + [3032] = {.lex_state = 70}, + [3033] = {.lex_state = 17}, [3034] = {.lex_state = 70}, [3035] = {.lex_state = 70}, - [3036] = {.lex_state = 14}, + [3036] = {.lex_state = 70}, [3037] = {.lex_state = 70}, [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 70}, - [3040] = {.lex_state = 70}, + [3039] = {.lex_state = 17}, + [3040] = {.lex_state = 17}, [3041] = {.lex_state = 70}, - [3042] = {.lex_state = 6}, - [3043] = {.lex_state = 19}, + [3042] = {.lex_state = 17}, + [3043] = {.lex_state = 17}, [3044] = {.lex_state = 70}, [3045] = {.lex_state = 70}, - [3046] = {.lex_state = 70}, - [3047] = {.lex_state = 70}, - [3048] = {.lex_state = 6}, - [3049] = {.lex_state = 14}, - [3050] = {.lex_state = 6}, - [3051] = {.lex_state = 70}, - [3052] = {.lex_state = 6}, - [3053] = {.lex_state = 14}, - [3054] = {.lex_state = 70}, - [3055] = {.lex_state = 70}, - [3056] = {.lex_state = 10}, - [3057] = {.lex_state = 14}, + [3046] = {.lex_state = 6}, + [3047] = {.lex_state = 14}, + [3048] = {.lex_state = 70}, + [3049] = {.lex_state = 70}, + [3050] = {.lex_state = 70}, + [3051] = {.lex_state = 14}, + [3052] = {.lex_state = 70}, + [3053] = {.lex_state = 70}, + [3054] = {.lex_state = 14}, + [3055] = {.lex_state = 6}, + [3056] = {.lex_state = 70}, + [3057] = {.lex_state = 6}, [3058] = {.lex_state = 70}, - [3059] = {.lex_state = 70}, - [3060] = {.lex_state = 70}, + [3059] = {.lex_state = 18}, + [3060] = {.lex_state = 14}, [3061] = {.lex_state = 70}, - [3062] = {.lex_state = 70}, + [3062] = {.lex_state = 6}, [3063] = {.lex_state = 70}, - [3064] = {.lex_state = 70}, + [3064] = {.lex_state = 17}, [3065] = {.lex_state = 70}, [3066] = {.lex_state = 14}, - [3067] = {.lex_state = 14}, - [3068] = {.lex_state = 14}, + [3067] = {.lex_state = 70}, + [3068] = {.lex_state = 10, .external_lex_state = 4}, [3069] = {.lex_state = 70}, [3070] = {.lex_state = 70}, [3071] = {.lex_state = 70}, [3072] = {.lex_state = 70}, - [3073] = {.lex_state = 14}, - [3074] = {.lex_state = 14}, + [3073] = {.lex_state = 70}, + [3074] = {.lex_state = 70}, [3075] = {.lex_state = 14}, - [3076] = {.lex_state = 14}, + [3076] = {.lex_state = 70}, [3077] = {.lex_state = 70}, [3078] = {.lex_state = 70}, [3079] = {.lex_state = 14}, - [3080] = {.lex_state = 70}, + [3080] = {.lex_state = 14}, [3081] = {.lex_state = 14}, - [3082] = {.lex_state = 70}, - [3083] = {.lex_state = 70}, + [3082] = {.lex_state = 14}, + [3083] = {.lex_state = 14}, [3084] = {.lex_state = 14}, - [3085] = {.lex_state = 14}, - [3086] = {.lex_state = 14}, - [3087] = {.lex_state = 14}, - [3088] = {.lex_state = 14}, + [3085] = {.lex_state = 70}, + [3086] = {.lex_state = 70}, + [3087] = {.lex_state = 70}, + [3088] = {.lex_state = 70}, [3089] = {.lex_state = 70}, - [3090] = {.lex_state = 14}, - [3091] = {.lex_state = 70}, + [3090] = {.lex_state = 27}, + [3091] = {.lex_state = 14}, [3092] = {.lex_state = 14}, [3093] = {.lex_state = 14}, - [3094] = {.lex_state = 70}, + [3094] = {.lex_state = 14}, [3095] = {.lex_state = 70}, [3096] = {.lex_state = 70}, [3097] = {.lex_state = 70}, - [3098] = {.lex_state = 14}, - [3099] = {.lex_state = 70}, + [3098] = {.lex_state = 70}, + [3099] = {.lex_state = 10}, [3100] = {.lex_state = 70}, [3101] = {.lex_state = 70}, - [3102] = {.lex_state = 70}, - [3103] = {.lex_state = 10}, + [3102] = {.lex_state = 14}, + [3103] = {.lex_state = 14}, [3104] = {.lex_state = 14}, - [3105] = {.lex_state = 70}, - [3106] = {.lex_state = 70}, + [3105] = {.lex_state = 14}, + [3106] = {.lex_state = 14}, [3107] = {.lex_state = 14}, - [3108] = {.lex_state = 70}, + [3108] = {.lex_state = 10, .external_lex_state = 5}, [3109] = {.lex_state = 14}, [3110] = {.lex_state = 14}, - [3111] = {.lex_state = 14}, - [3112] = {.lex_state = 70}, + [3111] = {.lex_state = 70}, + [3112] = {.lex_state = 14}, [3113] = {.lex_state = 14}, - [3114] = {.lex_state = 14}, + [3114] = {.lex_state = 70}, [3115] = {.lex_state = 70}, [3116] = {.lex_state = 70}, - [3117] = {.lex_state = 27}, - [3118] = {.lex_state = 70}, - [3119] = {.lex_state = 70}, - [3120] = {.lex_state = 14}, + [3117] = {.lex_state = 70}, + [3118] = {.lex_state = 14}, + [3119] = {.lex_state = 14}, + [3120] = {.lex_state = 70}, [3121] = {.lex_state = 70}, - [3122] = {.lex_state = 14}, + [3122] = {.lex_state = 70, .external_lex_state = 6}, [3123] = {.lex_state = 14}, [3124] = {.lex_state = 70}, - [3125] = {.lex_state = 14}, - [3126] = {.lex_state = 14}, + [3125] = {.lex_state = 70}, + [3126] = {.lex_state = 70}, [3127] = {.lex_state = 70}, - [3128] = {.lex_state = 14}, - [3129] = {.lex_state = 27}, + [3128] = {.lex_state = 70}, + [3129] = {.lex_state = 70}, [3130] = {.lex_state = 70}, - [3131] = {.lex_state = 70}, + [3131] = {.lex_state = 14}, [3132] = {.lex_state = 14}, - [3133] = {.lex_state = 14}, + [3133] = {.lex_state = 70}, [3134] = {.lex_state = 70}, - [3135] = {.lex_state = 70}, - [3136] = {.lex_state = 70}, - [3137] = {.lex_state = 70}, + [3135] = {.lex_state = 14}, + [3136] = {.lex_state = 14}, + [3137] = {.lex_state = 14}, [3138] = {.lex_state = 14}, - [3139] = {.lex_state = 14}, + [3139] = {.lex_state = 70}, [3140] = {.lex_state = 70}, - [3141] = {.lex_state = 14}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 70}, + [3141] = {.lex_state = 10}, + [3142] = {.lex_state = 70}, + [3143] = {.lex_state = 14}, [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 70}, - [3146] = {.lex_state = 70}, - [3147] = {.lex_state = 70}, - [3148] = {.lex_state = 14}, + [3145] = {.lex_state = 14}, + [3146] = {.lex_state = 14}, + [3147] = {.lex_state = 14}, + [3148] = {.lex_state = 10, .external_lex_state = 5}, [3149] = {.lex_state = 14}, - [3150] = {.lex_state = 70}, - [3151] = {.lex_state = 70}, + [3150] = {.lex_state = 27}, + [3151] = {.lex_state = 27}, [3152] = {.lex_state = 70}, [3153] = {.lex_state = 70}, - [3154] = {.lex_state = 70}, - [3155] = {.lex_state = 14}, + [3154] = {.lex_state = 14}, + [3155] = {.lex_state = 70}, [3156] = {.lex_state = 70}, [3157] = {.lex_state = 70}, [3158] = {.lex_state = 70}, - [3159] = {.lex_state = 14}, - [3160] = {.lex_state = 14}, + [3159] = {.lex_state = 70}, + [3160] = {.lex_state = 70}, [3161] = {.lex_state = 14}, - [3162] = {.lex_state = 14}, - [3163] = {.lex_state = 70}, + [3162] = {.lex_state = 70}, + [3163] = {.lex_state = 14}, [3164] = {.lex_state = 70}, [3165] = {.lex_state = 70}, [3166] = {.lex_state = 70}, [3167] = {.lex_state = 70}, [3168] = {.lex_state = 70}, - [3169] = {.lex_state = 70}, + [3169] = {.lex_state = 10, .external_lex_state = 5}, [3170] = {.lex_state = 14}, [3171] = {.lex_state = 70}, [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 14}, + [3173] = {.lex_state = 70}, [3174] = {.lex_state = 14}, - [3175] = {.lex_state = 70}, + [3175] = {.lex_state = 14}, [3176] = {.lex_state = 70}, - [3177] = {.lex_state = 70}, - [3178] = {.lex_state = 14}, + [3177] = {.lex_state = 14}, + [3178] = {.lex_state = 70}, [3179] = {.lex_state = 70}, [3180] = {.lex_state = 70}, - [3181] = {.lex_state = 14}, - [3182] = {.lex_state = 14}, - [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 14}, - [3185] = {.lex_state = 14}, + [3181] = {.lex_state = 70}, + [3182] = {.lex_state = 70}, + [3183] = {.lex_state = 70}, + [3184] = {.lex_state = 70}, + [3185] = {.lex_state = 70}, [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 10}, + [3187] = {.lex_state = 14}, [3188] = {.lex_state = 70}, - [3189] = {.lex_state = 70, .external_lex_state = 5}, - [3190] = {.lex_state = 14}, + [3189] = {.lex_state = 14}, + [3190] = {.lex_state = 70}, [3191] = {.lex_state = 14}, [3192] = {.lex_state = 14}, [3193] = {.lex_state = 14}, - [3194] = {.lex_state = 14}, + [3194] = {.lex_state = 70}, [3195] = {.lex_state = 70}, - [3196] = {.lex_state = 14}, - [3197] = {.lex_state = 70}, + [3196] = {.lex_state = 27}, + [3197] = {.lex_state = 27}, [3198] = {.lex_state = 14}, [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 14}, - [3201] = {.lex_state = 14}, + [3200] = {.lex_state = 70}, + [3201] = {.lex_state = 70}, [3202] = {.lex_state = 70}, [3203] = {.lex_state = 14}, [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 70}, + [3205] = {.lex_state = 14}, [3206] = {.lex_state = 14}, [3207] = {.lex_state = 14}, [3208] = {.lex_state = 14}, [3209] = {.lex_state = 14}, - [3210] = {.lex_state = 70}, + [3210] = {.lex_state = 14}, [3211] = {.lex_state = 14}, [3212] = {.lex_state = 14}, - [3213] = {.lex_state = 70}, - [3214] = {.lex_state = 70}, + [3213] = {.lex_state = 14}, + [3214] = {.lex_state = 14}, [3215] = {.lex_state = 14}, - [3216] = {.lex_state = 70}, - [3217] = {.lex_state = 70}, + [3216] = {.lex_state = 14}, + [3217] = {.lex_state = 14}, [3218] = {.lex_state = 14}, - [3219] = {.lex_state = 70}, - [3220] = {.lex_state = 70}, - [3221] = {.lex_state = 70}, + [3219] = {.lex_state = 14}, + [3220] = {.lex_state = 14}, + [3221] = {.lex_state = 14}, [3222] = {.lex_state = 14}, - [3223] = {.lex_state = 70}, - [3224] = {.lex_state = 70}, - [3225] = {.lex_state = 70}, - [3226] = {.lex_state = 5}, + [3223] = {.lex_state = 14}, + [3224] = {.lex_state = 14}, + [3225] = {.lex_state = 14}, + [3226] = {.lex_state = 70}, [3227] = {.lex_state = 70}, - [3228] = {.lex_state = 5}, + [3228] = {.lex_state = 70}, [3229] = {.lex_state = 70}, [3230] = {.lex_state = 70}, - [3231] = {.lex_state = 70}, - [3232] = {.lex_state = 14}, + [3231] = {.lex_state = 6}, + [3232] = {.lex_state = 70}, [3233] = {.lex_state = 70}, - [3234] = {.lex_state = 70}, + [3234] = {.lex_state = 14}, [3235] = {.lex_state = 70}, [3236] = {.lex_state = 70}, - [3237] = {.lex_state = 14}, - [3238] = {.lex_state = 70}, + [3237] = {.lex_state = 70}, + [3238] = {.lex_state = 14}, [3239] = {.lex_state = 70}, [3240] = {.lex_state = 70}, - [3241] = {.lex_state = 14}, + [3241] = {.lex_state = 70}, [3242] = {.lex_state = 70}, [3243] = {.lex_state = 70}, [3244] = {.lex_state = 70}, @@ -13356,21 +13394,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3246] = {.lex_state = 70}, [3247] = {.lex_state = 70}, [3248] = {.lex_state = 70}, - [3249] = {.lex_state = 14}, + [3249] = {.lex_state = 70}, [3250] = {.lex_state = 14}, [3251] = {.lex_state = 14}, - [3252] = {.lex_state = 6}, - [3253] = {.lex_state = 14}, - [3254] = {.lex_state = 10, .external_lex_state = 6}, - [3255] = {.lex_state = 70}, - [3256] = {.lex_state = 27}, + [3252] = {.lex_state = 14}, + [3253] = {.lex_state = 70}, + [3254] = {.lex_state = 70, .external_lex_state = 6}, + [3255] = {.lex_state = 14}, + [3256] = {.lex_state = 70}, [3257] = {.lex_state = 70}, - [3258] = {.lex_state = 70}, - [3259] = {.lex_state = 6}, - [3260] = {.lex_state = 27}, + [3258] = {.lex_state = 14}, + [3259] = {.lex_state = 70}, + [3260] = {.lex_state = 14}, [3261] = {.lex_state = 70}, - [3262] = {.lex_state = 27}, - [3263] = {.lex_state = 14}, + [3262] = {.lex_state = 70}, + [3263] = {.lex_state = 70}, [3264] = {.lex_state = 70}, [3265] = {.lex_state = 70}, [3266] = {.lex_state = 70}, @@ -13378,285 +13416,285 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3268] = {.lex_state = 70}, [3269] = {.lex_state = 70}, [3270] = {.lex_state = 70}, - [3271] = {.lex_state = 70}, - [3272] = {.lex_state = 14}, + [3271] = {.lex_state = 14}, + [3272] = {.lex_state = 70}, [3273] = {.lex_state = 70}, [3274] = {.lex_state = 70}, [3275] = {.lex_state = 70}, [3276] = {.lex_state = 70}, [3277] = {.lex_state = 70}, [3278] = {.lex_state = 70}, - [3279] = {.lex_state = 14}, - [3280] = {.lex_state = 14}, + [3279] = {.lex_state = 70}, + [3280] = {.lex_state = 70}, [3281] = {.lex_state = 70}, - [3282] = {.lex_state = 70}, - [3283] = {.lex_state = 14}, + [3282] = {.lex_state = 5}, + [3283] = {.lex_state = 70}, [3284] = {.lex_state = 70}, - [3285] = {.lex_state = 14}, - [3286] = {.lex_state = 70}, + [3285] = {.lex_state = 70}, + [3286] = {.lex_state = 5}, [3287] = {.lex_state = 70}, [3288] = {.lex_state = 70}, [3289] = {.lex_state = 70}, [3290] = {.lex_state = 70}, [3291] = {.lex_state = 70}, - [3292] = {.lex_state = 70}, - [3293] = {.lex_state = 19}, + [3292] = {.lex_state = 14}, + [3293] = {.lex_state = 70}, [3294] = {.lex_state = 70}, - [3295] = {.lex_state = 70}, - [3296] = {.lex_state = 10, .external_lex_state = 6}, + [3295] = {.lex_state = 14}, + [3296] = {.lex_state = 70}, [3297] = {.lex_state = 70}, - [3298] = {.lex_state = 14}, - [3299] = {.lex_state = 14}, + [3298] = {.lex_state = 70}, + [3299] = {.lex_state = 18}, [3300] = {.lex_state = 70}, [3301] = {.lex_state = 70}, - [3302] = {.lex_state = 14}, + [3302] = {.lex_state = 70}, [3303] = {.lex_state = 14}, - [3304] = {.lex_state = 70}, - [3305] = {.lex_state = 14}, + [3304] = {.lex_state = 14}, + [3305] = {.lex_state = 70}, [3306] = {.lex_state = 70}, - [3307] = {.lex_state = 14}, + [3307] = {.lex_state = 70}, [3308] = {.lex_state = 14}, - [3309] = {.lex_state = 70}, + [3309] = {.lex_state = 14}, [3310] = {.lex_state = 70}, [3311] = {.lex_state = 70}, [3312] = {.lex_state = 14}, - [3313] = {.lex_state = 70}, - [3314] = {.lex_state = 70}, - [3315] = {.lex_state = 14}, - [3316] = {.lex_state = 14}, + [3313] = {.lex_state = 14}, + [3314] = {.lex_state = 6}, + [3315] = {.lex_state = 27}, + [3316] = {.lex_state = 70}, [3317] = {.lex_state = 70}, - [3318] = {.lex_state = 14}, - [3319] = {.lex_state = 14}, + [3318] = {.lex_state = 70}, + [3319] = {.lex_state = 70}, [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 14}, + [3321] = {.lex_state = 70}, [3322] = {.lex_state = 70}, [3323] = {.lex_state = 70}, [3324] = {.lex_state = 70}, - [3325] = {.lex_state = 27}, + [3325] = {.lex_state = 14}, [3326] = {.lex_state = 14}, [3327] = {.lex_state = 70}, - [3328] = {.lex_state = 14}, - [3329] = {.lex_state = 70}, + [3328] = {.lex_state = 70}, + [3329] = {.lex_state = 14}, [3330] = {.lex_state = 14}, [3331] = {.lex_state = 14}, - [3332] = {.lex_state = 14}, + [3332] = {.lex_state = 70}, [3333] = {.lex_state = 14}, - [3334] = {.lex_state = 10, .external_lex_state = 6}, + [3334] = {.lex_state = 14}, [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 70, .external_lex_state = 5}, - [3337] = {.lex_state = 70}, - [3338] = {.lex_state = 14}, - [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 14}, - [3341] = {.lex_state = 14}, - [3342] = {.lex_state = 70}, + [3336] = {.lex_state = 14}, + [3337] = {.lex_state = 14}, + [3338] = {.lex_state = 70}, + [3339] = {.lex_state = 14}, + [3340] = {.lex_state = 70}, + [3341] = {.lex_state = 70}, + [3342] = {.lex_state = 14}, [3343] = {.lex_state = 14}, [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 14}, + [3345] = {.lex_state = 70}, [3346] = {.lex_state = 14}, - [3347] = {.lex_state = 70}, - [3348] = {.lex_state = 70}, + [3347] = {.lex_state = 14}, + [3348] = {.lex_state = 14}, [3349] = {.lex_state = 14}, [3350] = {.lex_state = 14}, [3351] = {.lex_state = 70}, - [3352] = {.lex_state = 71}, - [3353] = {.lex_state = 70}, + [3352] = {.lex_state = 14}, + [3353] = {.lex_state = 14}, [3354] = {.lex_state = 70}, - [3355] = {.lex_state = 19}, + [3355] = {.lex_state = 70}, [3356] = {.lex_state = 70}, - [3357] = {.lex_state = 19}, - [3358] = {.lex_state = 70}, - [3359] = {.lex_state = 70}, - [3360] = {.lex_state = 70}, - [3361] = {.lex_state = 70}, + [3357] = {.lex_state = 70}, + [3358] = {.lex_state = 70, .external_lex_state = 7}, + [3359] = {.lex_state = 18}, + [3360] = {.lex_state = 14}, + [3361] = {.lex_state = 14}, [3362] = {.lex_state = 14}, [3363] = {.lex_state = 14}, [3364] = {.lex_state = 14}, [3365] = {.lex_state = 70}, [3366] = {.lex_state = 14}, - [3367] = {.lex_state = 14}, + [3367] = {.lex_state = 70}, [3368] = {.lex_state = 70}, [3369] = {.lex_state = 70}, [3370] = {.lex_state = 70}, [3371] = {.lex_state = 70}, - [3372] = {.lex_state = 70}, - [3373] = {.lex_state = 19}, + [3372] = {.lex_state = 71}, + [3373] = {.lex_state = 70}, [3374] = {.lex_state = 70}, - [3375] = {.lex_state = 14}, + [3375] = {.lex_state = 70}, [3376] = {.lex_state = 70}, [3377] = {.lex_state = 14}, - [3378] = {.lex_state = 14}, - [3379] = {.lex_state = 70}, + [3378] = {.lex_state = 70}, + [3379] = {.lex_state = 14}, [3380] = {.lex_state = 14}, - [3381] = {.lex_state = 14}, - [3382] = {.lex_state = 14}, + [3381] = {.lex_state = 70}, + [3382] = {.lex_state = 70}, [3383] = {.lex_state = 14}, [3384] = {.lex_state = 14}, [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 14}, - [3387] = {.lex_state = 14}, - [3388] = {.lex_state = 71}, - [3389] = {.lex_state = 70}, - [3390] = {.lex_state = 19}, + [3386] = {.lex_state = 70}, + [3387] = {.lex_state = 70}, + [3388] = {.lex_state = 70}, + [3389] = {.lex_state = 71}, + [3390] = {.lex_state = 70}, [3391] = {.lex_state = 70}, [3392] = {.lex_state = 70}, [3393] = {.lex_state = 70}, - [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 70, .external_lex_state = 7}, - [3396] = {.lex_state = 19}, - [3397] = {.lex_state = 70}, - [3398] = {.lex_state = 19}, - [3399] = {.lex_state = 70}, + [3394] = {.lex_state = 14}, + [3395] = {.lex_state = 70}, + [3396] = {.lex_state = 14}, + [3397] = {.lex_state = 14}, + [3398] = {.lex_state = 14}, + [3399] = {.lex_state = 14}, [3400] = {.lex_state = 14}, [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 70}, - [3403] = {.lex_state = 70}, - [3404] = {.lex_state = 70}, - [3405] = {.lex_state = 70}, - [3406] = {.lex_state = 70}, - [3407] = {.lex_state = 14}, + [3402] = {.lex_state = 70, .external_lex_state = 7}, + [3403] = {.lex_state = 70, .external_lex_state = 8}, + [3404] = {.lex_state = 14}, + [3405] = {.lex_state = 14}, + [3406] = {.lex_state = 10}, + [3407] = {.lex_state = 70}, [3408] = {.lex_state = 70}, [3409] = {.lex_state = 70}, [3410] = {.lex_state = 70}, [3411] = {.lex_state = 14}, [3412] = {.lex_state = 70}, [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70}, - [3415] = {.lex_state = 14}, - [3416] = {.lex_state = 70}, + [3414] = {.lex_state = 70, .external_lex_state = 7}, + [3415] = {.lex_state = 70}, + [3416] = {.lex_state = 14}, [3417] = {.lex_state = 70}, - [3418] = {.lex_state = 14}, + [3418] = {.lex_state = 70}, [3419] = {.lex_state = 14}, - [3420] = {.lex_state = 14}, - [3421] = {.lex_state = 14}, + [3420] = {.lex_state = 71}, + [3421] = {.lex_state = 70}, [3422] = {.lex_state = 70}, [3423] = {.lex_state = 70}, - [3424] = {.lex_state = 19}, + [3424] = {.lex_state = 70}, [3425] = {.lex_state = 70}, [3426] = {.lex_state = 70}, - [3427] = {.lex_state = 70}, - [3428] = {.lex_state = 70, .external_lex_state = 8}, - [3429] = {.lex_state = 14}, - [3430] = {.lex_state = 14}, - [3431] = {.lex_state = 70}, + [3427] = {.lex_state = 165}, + [3428] = {.lex_state = 70}, + [3429] = {.lex_state = 70}, + [3430] = {.lex_state = 70}, + [3431] = {.lex_state = 18}, [3432] = {.lex_state = 70}, - [3433] = {.lex_state = 14}, - [3434] = {.lex_state = 14}, + [3433] = {.lex_state = 70}, + [3434] = {.lex_state = 71}, [3435] = {.lex_state = 14}, - [3436] = {.lex_state = 70}, + [3436] = {.lex_state = 14}, [3437] = {.lex_state = 70}, - [3438] = {.lex_state = 70}, + [3438] = {.lex_state = 70, .external_lex_state = 8}, [3439] = {.lex_state = 70}, [3440] = {.lex_state = 70}, - [3441] = {.lex_state = 70}, - [3442] = {.lex_state = 70}, + [3441] = {.lex_state = 14}, + [3442] = {.lex_state = 14}, [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 71}, + [3444] = {.lex_state = 14}, [3445] = {.lex_state = 70}, - [3446] = {.lex_state = 70}, - [3447] = {.lex_state = 70}, + [3446] = {.lex_state = 14}, + [3447] = {.lex_state = 14}, [3448] = {.lex_state = 70}, [3449] = {.lex_state = 70}, - [3450] = {.lex_state = 14}, + [3450] = {.lex_state = 70}, [3451] = {.lex_state = 70}, [3452] = {.lex_state = 70}, [3453] = {.lex_state = 70}, - [3454] = {.lex_state = 14}, - [3455] = {.lex_state = 70}, + [3454] = {.lex_state = 70}, + [3455] = {.lex_state = 14}, [3456] = {.lex_state = 70, .external_lex_state = 8}, [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 165}, - [3459] = {.lex_state = 14}, - [3460] = {.lex_state = 70}, - [3461] = {.lex_state = 70}, - [3462] = {.lex_state = 70}, + [3458] = {.lex_state = 14}, + [3459] = {.lex_state = 70}, + [3460] = {.lex_state = 14}, + [3461] = {.lex_state = 14}, + [3462] = {.lex_state = 14}, [3463] = {.lex_state = 70}, [3464] = {.lex_state = 70}, [3465] = {.lex_state = 70}, [3466] = {.lex_state = 70}, - [3467] = {.lex_state = 70}, + [3467] = {.lex_state = 14}, [3468] = {.lex_state = 70}, - [3469] = {.lex_state = 70, .external_lex_state = 8}, - [3470] = {.lex_state = 70}, + [3469] = {.lex_state = 70}, + [3470] = {.lex_state = 14}, [3471] = {.lex_state = 70}, - [3472] = {.lex_state = 14}, - [3473] = {.lex_state = 14}, - [3474] = {.lex_state = 70, .external_lex_state = 8}, + [3472] = {.lex_state = 70}, + [3473] = {.lex_state = 70}, + [3474] = {.lex_state = 70}, [3475] = {.lex_state = 70}, - [3476] = {.lex_state = 19}, + [3476] = {.lex_state = 70}, [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 70, .external_lex_state = 7}, - [3479] = {.lex_state = 10}, - [3480] = {.lex_state = 19}, + [3478] = {.lex_state = 14}, + [3479] = {.lex_state = 70}, + [3480] = {.lex_state = 70}, [3481] = {.lex_state = 14}, - [3482] = {.lex_state = 19}, - [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 71}, - [3485] = {.lex_state = 70}, - [3486] = {.lex_state = 70}, - [3487] = {.lex_state = 71}, + [3482] = {.lex_state = 70}, + [3483] = {.lex_state = 14}, + [3484] = {.lex_state = 70}, + [3485] = {.lex_state = 14}, + [3486] = {.lex_state = 70, .external_lex_state = 9}, + [3487] = {.lex_state = 70}, [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 14}, - [3490] = {.lex_state = 70, .external_lex_state = 9}, - [3491] = {.lex_state = 70}, + [3489] = {.lex_state = 70}, + [3490] = {.lex_state = 71}, + [3491] = {.lex_state = 14}, [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 70}, + [3493] = {.lex_state = 70, .external_lex_state = 7}, [3494] = {.lex_state = 70}, - [3495] = {.lex_state = 70}, - [3496] = {.lex_state = 14}, + [3495] = {.lex_state = 14}, + [3496] = {.lex_state = 71}, [3497] = {.lex_state = 70}, [3498] = {.lex_state = 70}, - [3499] = {.lex_state = 70}, - [3500] = {.lex_state = 70}, + [3499] = {.lex_state = 14}, + [3500] = {.lex_state = 71}, [3501] = {.lex_state = 70}, [3502] = {.lex_state = 70}, [3503] = {.lex_state = 70}, - [3504] = {.lex_state = 14}, + [3504] = {.lex_state = 70}, [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 70}, + [3506] = {.lex_state = 18}, [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 70}, + [3508] = {.lex_state = 18}, [3509] = {.lex_state = 70}, - [3510] = {.lex_state = 70}, - [3511] = {.lex_state = 70}, - [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70}, - [3514] = {.lex_state = 14}, + [3510] = {.lex_state = 70, .external_lex_state = 9}, + [3511] = {.lex_state = 70, .external_lex_state = 8}, + [3512] = {.lex_state = 14}, + [3513] = {.lex_state = 14}, + [3514] = {.lex_state = 70}, [3515] = {.lex_state = 70}, [3516] = {.lex_state = 70}, - [3517] = {.lex_state = 70}, - [3518] = {.lex_state = 70, .external_lex_state = 7}, + [3517] = {.lex_state = 14}, + [3518] = {.lex_state = 70}, [3519] = {.lex_state = 70}, - [3520] = {.lex_state = 14}, - [3521] = {.lex_state = 70}, + [3520] = {.lex_state = 18}, + [3521] = {.lex_state = 18}, [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 14}, + [3523] = {.lex_state = 70}, [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 70, .external_lex_state = 9}, - [3526] = {.lex_state = 70, .external_lex_state = 8}, + [3525] = {.lex_state = 70}, + [3526] = {.lex_state = 18}, [3527] = {.lex_state = 70}, [3528] = {.lex_state = 70}, [3529] = {.lex_state = 70}, [3530] = {.lex_state = 70}, [3531] = {.lex_state = 70}, [3532] = {.lex_state = 70}, - [3533] = {.lex_state = 70}, + [3533] = {.lex_state = 14}, [3534] = {.lex_state = 70}, [3535] = {.lex_state = 70}, - [3536] = {.lex_state = 71}, - [3537] = {.lex_state = 70}, - [3538] = {.lex_state = 70}, + [3536] = {.lex_state = 70}, + [3537] = {.lex_state = 14}, + [3538] = {.lex_state = 14}, [3539] = {.lex_state = 70}, - [3540] = {.lex_state = 10}, + [3540] = {.lex_state = 70}, [3541] = {.lex_state = 70}, [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 70, .external_lex_state = 9}, - [3544] = {.lex_state = 70}, - [3545] = {.lex_state = 70}, + [3543] = {.lex_state = 18}, + [3544] = {.lex_state = 70, .external_lex_state = 9}, + [3545] = {.lex_state = 18}, [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 14}, + [3547] = {.lex_state = 18}, [3548] = {.lex_state = 70}, - [3549] = {.lex_state = 70, .external_lex_state = 9}, + [3549] = {.lex_state = 14}, [3550] = {.lex_state = 70}, [3551] = {.lex_state = 70}, [3552] = {.lex_state = 70}, @@ -13669,97 +13707,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3559] = {.lex_state = 70}, [3560] = {.lex_state = 70}, [3561] = {.lex_state = 70}, - [3562] = {.lex_state = 70, .external_lex_state = 7}, + [3562] = {.lex_state = 70}, [3563] = {.lex_state = 70, .external_lex_state = 9}, - [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 19}, + [3564] = {.lex_state = 70}, + [3565] = {.lex_state = 70}, [3566] = {.lex_state = 70}, - [3567] = {.lex_state = 70}, + [3567] = {.lex_state = 18}, [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 19}, - [3570] = {.lex_state = 19}, + [3569] = {.lex_state = 70, .external_lex_state = 9}, + [3570] = {.lex_state = 70}, [3571] = {.lex_state = 70}, [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 14}, + [3573] = {.lex_state = 70}, [3574] = {.lex_state = 70}, - [3575] = {.lex_state = 19}, + [3575] = {.lex_state = 70}, [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 19}, - [3578] = {.lex_state = 14}, + [3577] = {.lex_state = 70}, + [3578] = {.lex_state = 70}, [3579] = {.lex_state = 70}, [3580] = {.lex_state = 70}, [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 14}, + [3582] = {.lex_state = 70}, [3583] = {.lex_state = 70}, [3584] = {.lex_state = 70}, - [3585] = {.lex_state = 19}, - [3586] = {.lex_state = 14}, + [3585] = {.lex_state = 18}, + [3586] = {.lex_state = 70}, [3587] = {.lex_state = 70}, [3588] = {.lex_state = 70}, - [3589] = {.lex_state = 19}, - [3590] = {.lex_state = 70}, + [3589] = {.lex_state = 18}, + [3590] = {.lex_state = 18}, [3591] = {.lex_state = 70}, [3592] = {.lex_state = 70}, - [3593] = {.lex_state = 70, .external_lex_state = 8}, + [3593] = {.lex_state = 10}, [3594] = {.lex_state = 70}, - [3595] = {.lex_state = 19}, - [3596] = {.lex_state = 71}, - [3597] = {.lex_state = 14}, - [3598] = {.lex_state = 19}, - [3599] = {.lex_state = 70}, - [3600] = {.lex_state = 19}, + [3595] = {.lex_state = 18}, + [3596] = {.lex_state = 70}, + [3597] = {.lex_state = 70}, + [3598] = {.lex_state = 70}, + [3599] = {.lex_state = 14}, + [3600] = {.lex_state = 18}, [3601] = {.lex_state = 70}, - [3602] = {.lex_state = 70}, - [3603] = {.lex_state = 14}, - [3604] = {.lex_state = 14}, - [3605] = {.lex_state = 70}, - [3606] = {.lex_state = 19}, - [3607] = {.lex_state = 14}, - [3608] = {.lex_state = 19}, - [3609] = {.lex_state = 70}, + [3602] = {.lex_state = 18}, + [3603] = {.lex_state = 70, .external_lex_state = 7}, + [3604] = {.lex_state = 70}, + [3605] = {.lex_state = 18}, + [3606] = {.lex_state = 70}, + [3607] = {.lex_state = 18}, + [3608] = {.lex_state = 14}, + [3609] = {.lex_state = 14}, [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 19}, + [3611] = {.lex_state = 70}, [3612] = {.lex_state = 14}, - [3613] = {.lex_state = 70}, - [3614] = {.lex_state = 19}, - [3615] = {.lex_state = 19}, - [3616] = {.lex_state = 71}, - [3617] = {.lex_state = 14}, - [3618] = {.lex_state = 19}, - [3619] = {.lex_state = 19}, - [3620] = {.lex_state = 19}, + [3613] = {.lex_state = 18}, + [3614] = {.lex_state = 70}, + [3615] = {.lex_state = 70, .external_lex_state = 8}, + [3616] = {.lex_state = 70, .external_lex_state = 8}, + [3617] = {.lex_state = 70}, + [3618] = {.lex_state = 70}, + [3619] = {.lex_state = 71}, + [3620] = {.lex_state = 70}, [3621] = {.lex_state = 70}, - [3622] = {.lex_state = 14}, - [3623] = {.lex_state = 70}, - [3624] = {.lex_state = 70}, - [3625] = {.lex_state = 14}, - [3626] = {.lex_state = 14}, + [3622] = {.lex_state = 70}, + [3623] = {.lex_state = 14}, + [3624] = {.lex_state = 14}, + [3625] = {.lex_state = 18}, + [3626] = {.lex_state = 18}, [3627] = {.lex_state = 70}, - [3628] = {.lex_state = 14}, - [3629] = {.lex_state = 14}, - [3630] = {.lex_state = 70, .external_lex_state = 9}, + [3628] = {.lex_state = 70}, + [3629] = {.lex_state = 18}, + [3630] = {.lex_state = 14}, [3631] = {.lex_state = 14}, - [3632] = {.lex_state = 14}, - [3633] = {.lex_state = 14}, - [3634] = {.lex_state = 14}, + [3632] = {.lex_state = 18}, + [3633] = {.lex_state = 18}, + [3634] = {.lex_state = 70}, [3635] = {.lex_state = 70}, - [3636] = {.lex_state = 14}, - [3637] = {.lex_state = 70}, - [3638] = {.lex_state = 70, .external_lex_state = 7}, - [3639] = {.lex_state = 70}, - [3640] = {.lex_state = 70}, + [3636] = {.lex_state = 18}, + [3637] = {.lex_state = 18}, + [3638] = {.lex_state = 18}, + [3639] = {.lex_state = 14}, + [3640] = {.lex_state = 14}, [3641] = {.lex_state = 70}, - [3642] = {(TSStateId)(-1)}, - [3643] = {(TSStateId)(-1)}, - [3644] = {(TSStateId)(-1)}, - [3645] = {(TSStateId)(-1)}, - [3646] = {(TSStateId)(-1)}, - [3647] = {(TSStateId)(-1)}, - [3648] = {(TSStateId)(-1)}, + [3642] = {.lex_state = 70}, + [3643] = {.lex_state = 14}, + [3644] = {.lex_state = 70}, + [3645] = {.lex_state = 70}, + [3646] = {.lex_state = 14}, + [3647] = {.lex_state = 14}, + [3648] = {.lex_state = 70}, + [3649] = {.lex_state = 14}, + [3650] = {.lex_state = 70}, + [3651] = {.lex_state = 70}, + [3652] = {.lex_state = 14}, + [3653] = {.lex_state = 70}, + [3654] = {.lex_state = 14}, + [3655] = {.lex_state = 70, .external_lex_state = 9}, + [3656] = {.lex_state = 14}, + [3657] = {.lex_state = 70}, + [3658] = {.lex_state = 14}, + [3659] = {.lex_state = 14}, + [3660] = {(TSStateId)(-1),}, + [3661] = {(TSStateId)(-1),}, + [3662] = {(TSStateId)(-1),}, + [3663] = {(TSStateId)(-1),}, + [3664] = {(TSStateId)(-1),}, + [3665] = {(TSStateId)(-1),}, + [3666] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [sym_line_comment] = STATE(0), [sym_block_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), @@ -13913,84 +13969,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_doc_content] = ACTIONS(1), [sym__error_sentinel] = ACTIONS(1), }, - [1] = { - [sym_source_file] = STATE(3457), - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(1)] = { + [sym_source_file] = STATE(3610), + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14069,83 +14125,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [2] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(2)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14223,83 +14279,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [3] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(3)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14377,83 +14433,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [4] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(4)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14531,83 +14587,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [5] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(5)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [ts_builtin_sym_end] = ACTIONS(125), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(6)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(6), + [sym_block_comment] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14685,83 +14895,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [6] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(6), - [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(7)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(7), + [sym_block_comment] = STATE(7), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14839,83 +15049,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [7] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(7), - [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(8)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), @@ -14993,83 +15203,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(286), [sym_float_literal] = ACTIONS(265), }, - [8] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(9)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15147,83 +15357,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [9] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(9), - [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(10)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15301,83 +15511,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [10] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(10), - [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(11)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(11), + [sym_block_comment] = STATE(11), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15455,83 +15665,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [11] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(11), - [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(12)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15609,83 +15819,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [12] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(409), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(12), - [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(13)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(419), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), [anon_sym_macro_rules_BANG] = ACTIONS(139), @@ -15763,83 +15973,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(286), [sym_float_literal] = ACTIONS(265), }, - [13] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(14)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15917,83 +16127,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [14] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(15)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(15), + [sym_block_comment] = STATE(15), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16071,83 +16281,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [15] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(15), - [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(16)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(16), + [sym_block_comment] = STATE(16), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16225,83 +16435,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [16] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(16), - [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(17)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(17), + [sym_block_comment] = STATE(17), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16379,83 +16589,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [17] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(17), - [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(18)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(18), + [sym_block_comment] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16533,83 +16743,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [18] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(18), - [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(19)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(19), + [sym_block_comment] = STATE(19), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16687,83 +16897,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [19] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(19), - [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(20)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(20), + [sym_block_comment] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16841,83 +17051,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [20] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(20), - [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(21)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(21), + [sym_block_comment] = STATE(21), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16995,83 +17205,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [21] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(21), - [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(22)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(22), + [sym_block_comment] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17149,83 +17359,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [22] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(22), - [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(23)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(23), + [sym_block_comment] = STATE(23), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17303,83 +17513,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [23] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(23), - [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(24)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1730), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17457,83 +17667,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [24] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(24), - [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(25)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17611,83 +17821,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [25] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(25), - [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(26)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17765,83 +17975,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [26] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(26), - [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(27)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17919,83 +18129,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [27] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(27), - [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(28)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18073,83 +18283,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [28] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(28), - [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(29)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18227,83 +18437,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [29] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(30)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18381,83 +18591,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [30] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(31)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18535,83 +18745,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [31] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(31), - [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(32)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18689,83 +18899,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [32] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(32), - [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(33)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18843,83 +19053,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [33] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(33), - [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [STATE(34)] = { + [sym__statement] = STATE(690), + [sym_empty_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_macro_definition] = STATE(691), + [sym_attribute_item] = STATE(691), + [sym_inner_attribute_item] = STATE(691), + [sym_mod_item] = STATE(691), + [sym_foreign_mod_item] = STATE(691), + [sym_struct_item] = STATE(691), + [sym_union_item] = STATE(691), + [sym_enum_item] = STATE(691), + [sym_extern_crate_declaration] = STATE(691), + [sym_const_item] = STATE(691), + [sym_static_item] = STATE(691), + [sym_type_item] = STATE(691), + [sym_function_item] = STATE(691), + [sym_function_signature_item] = STATE(691), + [sym_function_modifiers] = STATE(3623), + [sym_impl_item] = STATE(691), + [sym_trait_item] = STATE(691), + [sym_associated_type] = STATE(691), + [sym_let_declaration] = STATE(691), + [sym_use_declaration] = STATE(691), + [sym_extern_modifier] = STATE(2187), + [sym_visibility_modifier] = STATE(1959), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(414), + [sym_scoped_identifier] = STATE(1559), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(408), + [sym_match_expression] = STATE(408), + [sym_while_expression] = STATE(408), + [sym_loop_expression] = STATE(408), + [sym_for_expression] = STATE(408), + [sym_const_block] = STATE(408), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3359), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(408), + [sym_async_block] = STATE(408), + [sym_gen_block] = STATE(408), + [sym_try_block] = STATE(408), + [sym_block] = STATE(408), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18997,208 +19207,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [34] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(34), - [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_gen] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_impl] = ACTIONS(59), - [anon_sym_let] = ACTIONS(61), - [anon_sym_loop] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_mod] = ACTIONS(67), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(73), - [anon_sym_struct] = ACTIONS(75), - [anon_sym_trait] = ACTIONS(77), - [anon_sym_type] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_unsafe] = ACTIONS(83), - [anon_sym_use] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [35] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1517), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(35)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1525), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19299,54 +19355,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [36] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(36)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1530), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), @@ -19446,59 +19502,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [37] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(37)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1519), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(387), [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_RBRACK] = ACTIONS(387), @@ -19593,59 +19649,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [38] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(38)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1506), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_RBRACK] = ACTIONS(391), @@ -19740,67 +19796,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [39] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(39)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1519), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19818,42 +19874,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19869,7 +19925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(397), + [anon_sym_else] = ACTIONS(389), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19887,59 +19943,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [40] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(40)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1506), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_RBRACK] = ACTIONS(391), @@ -20034,57 +20090,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [41] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1514), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(41)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1523), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(397), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(42)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1527), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(401), @@ -20181,201 +20384,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [42] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(42), - [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [43] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(43)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20471,54 +20527,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [44] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), + [STATE(44)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), @@ -20613,54 +20669,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [45] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(45)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(467), @@ -20755,54 +20811,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [46] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(46)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(405), @@ -20897,54 +20953,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [47] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1685), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(47)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), @@ -21039,54 +21095,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [48] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(48)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), @@ -21181,54 +21237,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [49] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(49)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), @@ -21323,54 +21379,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [50] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(50)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), @@ -21465,54 +21521,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [51] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(51)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), @@ -21607,54 +21663,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [52] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1621), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(52)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(467), @@ -21749,63 +21805,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [53] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(53)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -21823,41 +21879,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -21890,63 +21946,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [54] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(54)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -21964,41 +22020,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -22031,63 +22087,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [55] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(55)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22105,41 +22161,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -22172,63 +22228,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [56] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(56)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1616), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22246,58 +22302,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22313,54 +22369,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [57] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(57)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1613), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [sym_identifier] = ACTIONS(467), @@ -22391,7 +22447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(397), [anon_sym_PERCENT] = ACTIONS(397), [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(503), [anon_sym_AMP] = ACTIONS(397), [anon_sym_PIPE] = ACTIONS(397), [anon_sym_AMP_AMP] = ACTIONS(395), @@ -22420,25 +22476,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(395), [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(397), [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22454,58 +22510,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [58] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(58)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(391), [anon_sym_PLUS] = ACTIONS(393), @@ -22532,7 +22588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(393), [anon_sym_PERCENT] = ACTIONS(393), [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(503), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -22561,25 +22617,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(391), [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(393), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22595,63 +22651,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [59] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(59)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(471), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22669,58 +22725,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22736,54 +22792,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [60] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1608), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(60)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), [sym_identifier] = ACTIONS(467), @@ -22791,7 +22847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(471), [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), @@ -22810,12 +22866,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(471), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(523), [anon_sym_PIPE] = ACTIONS(381), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), @@ -22839,13 +22895,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(525), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(61)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(389), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), @@ -22877,56 +23074,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [61] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), + [STATE(62)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(391), @@ -22955,7 +23152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(393), [anon_sym_PERCENT] = ACTIONS(393), [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(471), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -22984,25 +23181,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(391), [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23018,56 +23215,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [62] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), + [STATE(63)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(387), @@ -23159,63 +23356,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [63] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), + [STATE(64)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23233,41 +23430,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23300,56 +23497,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [64] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), + [STATE(65)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), @@ -23378,7 +23575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(393), [anon_sym_PERCENT] = ACTIONS(393), [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(471), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -23407,149 +23604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(391), [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [65] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -23582,63 +23638,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [66] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(66)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23656,41 +23712,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -23723,15 +23779,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [67] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [STATE(67)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), @@ -23849,31 +23905,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(562), [sym_float_literal] = ACTIONS(550), }, - [68] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [STATE(68)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_EQ_GT] = ACTIONS(568), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(585), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_QMARK] = ACTIONS(568), [anon_sym_u8] = ACTIONS(565), [anon_sym_i8] = ACTIONS(565), [anon_sym_u16] = ACTIONS(565), @@ -23891,44 +23948,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(565), [anon_sym_str] = ACTIONS(565), [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_SLASH] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_CARET] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(582), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_GT_GT] = ACTIONS(582), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_AT] = ACTIONS(568), + [anon_sym__] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(568), + [anon_sym_DASH_GT] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(568), [anon_sym_SQUOTE] = ACTIONS(565), [anon_sym_as] = ACTIONS(565), [anon_sym_async] = ACTIONS(565), @@ -23959,1892 +24016,1891 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(565), [anon_sym_while] = ACTIONS(565), [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(588), + [aux_sym_string_literal_token1] = ACTIONS(591), + [sym_char_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(565), [sym_super] = ACTIONS(565), [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [69] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__raw_string_literal_start] = ACTIONS(597), + [sym_float_literal] = ACTIONS(588), + }, + [STATE(69)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [70] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_RBRACK] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_EQ_GT] = ACTIONS(603), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(603), + [anon_sym_u8] = ACTIONS(600), + [anon_sym_i8] = ACTIONS(600), + [anon_sym_u16] = ACTIONS(600), + [anon_sym_i16] = ACTIONS(600), + [anon_sym_u32] = ACTIONS(600), + [anon_sym_i32] = ACTIONS(600), + [anon_sym_u64] = ACTIONS(600), + [anon_sym_i64] = ACTIONS(600), + [anon_sym_u128] = ACTIONS(600), + [anon_sym_i128] = ACTIONS(600), + [anon_sym_isize] = ACTIONS(600), + [anon_sym_usize] = ACTIONS(600), + [anon_sym_f32] = ACTIONS(600), + [anon_sym_f64] = ACTIONS(600), + [anon_sym_bool] = ACTIONS(600), + [anon_sym_str] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_AT] = ACTIONS(603), + [anon_sym__] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_DOT_DOT] = ACTIONS(617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_COLON_COLON] = ACTIONS(603), + [anon_sym_DASH_GT] = ACTIONS(603), + [anon_sym_POUND] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(600), + [anon_sym_as] = ACTIONS(600), + [anon_sym_async] = ACTIONS(600), + [anon_sym_await] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_fn] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_gen] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_impl] = ACTIONS(600), + [anon_sym_let] = ACTIONS(600), + [anon_sym_loop] = ACTIONS(600), + [anon_sym_match] = ACTIONS(600), + [anon_sym_mod] = ACTIONS(600), + [anon_sym_pub] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_struct] = ACTIONS(600), + [anon_sym_trait] = ACTIONS(600), + [anon_sym_type] = ACTIONS(600), + [anon_sym_union] = ACTIONS(600), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_use] = ACTIONS(600), + [anon_sym_where] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [sym_mutable_specifier] = ACTIONS(600), + [sym_integer_literal] = ACTIONS(623), + [aux_sym_string_literal_token1] = ACTIONS(626), + [sym_char_literal] = ACTIONS(623), + [anon_sym_true] = ACTIONS(629), + [anon_sym_false] = ACTIONS(629), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_crate] = ACTIONS(600), + [sym_metavariable] = ACTIONS(632), + [sym__raw_string_literal_start] = ACTIONS(635), + [sym_float_literal] = ACTIONS(623), + }, + [STATE(70)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [71] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(71)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [72] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(72)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [73] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(73)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [74] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(74)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [75] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(75)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), + [aux_sym_token_tree_pattern_repeat1] = STATE(78), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [76] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(76)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym_token_tree_pattern_repeat1] = STATE(79), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [77] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(77)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [78] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(78)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [79] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(79)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [80] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(80)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [81] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(81)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [82] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(82)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_EQ_GT] = ACTIONS(604), - [anon_sym_COLON] = ACTIONS(618), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(601), - [anon_sym_i8] = ACTIONS(601), - [anon_sym_u16] = ACTIONS(601), - [anon_sym_i16] = ACTIONS(601), - [anon_sym_u32] = ACTIONS(601), - [anon_sym_i32] = ACTIONS(601), - [anon_sym_u64] = ACTIONS(601), - [anon_sym_i64] = ACTIONS(601), - [anon_sym_u128] = ACTIONS(601), - [anon_sym_i128] = ACTIONS(601), - [anon_sym_isize] = ACTIONS(601), - [anon_sym_usize] = ACTIONS(601), - [anon_sym_f32] = ACTIONS(601), - [anon_sym_f64] = ACTIONS(601), - [anon_sym_bool] = ACTIONS(601), - [anon_sym_str] = ACTIONS(601), - [anon_sym_char] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(604), - [anon_sym__] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_DASH_GT] = ACTIONS(604), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_async] = ACTIONS(601), - [anon_sym_await] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_default] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [anon_sym_gen] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_impl] = ACTIONS(601), - [anon_sym_let] = ACTIONS(601), - [anon_sym_loop] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_mod] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_static] = ACTIONS(601), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_trait] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_use] = ACTIONS(601), - [anon_sym_where] = ACTIONS(601), - [anon_sym_while] = ACTIONS(601), - [sym_mutable_specifier] = ACTIONS(601), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(627), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(601), - [sym_super] = ACTIONS(601), - [sym_crate] = ACTIONS(601), - [sym_metavariable] = ACTIONS(633), - [sym__raw_string_literal_start] = ACTIONS(636), - [sym_float_literal] = ACTIONS(624), - }, - [83] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(83)] = { + [sym__token_pattern] = STATE(152), + [sym_token_tree_pattern] = STATE(186), + [sym_token_binding_pattern] = STATE(186), + [sym_token_repetition_pattern] = STATE(186), + [sym__literal] = STATE(186), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_RBRACK] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(642), - [anon_sym_COLON] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_QMARK] = ACTIONS(642), - [anon_sym_u8] = ACTIONS(639), - [anon_sym_i8] = ACTIONS(639), - [anon_sym_u16] = ACTIONS(639), - [anon_sym_i16] = ACTIONS(639), - [anon_sym_u32] = ACTIONS(639), - [anon_sym_i32] = ACTIONS(639), - [anon_sym_u64] = ACTIONS(639), - [anon_sym_i64] = ACTIONS(639), - [anon_sym_u128] = ACTIONS(639), - [anon_sym_i128] = ACTIONS(639), - [anon_sym_isize] = ACTIONS(639), - [anon_sym_usize] = ACTIONS(639), - [anon_sym_f32] = ACTIONS(639), - [anon_sym_f64] = ACTIONS(639), - [anon_sym_bool] = ACTIONS(639), - [anon_sym_str] = ACTIONS(639), - [anon_sym_char] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_SLASH] = ACTIONS(656), - [anon_sym_PERCENT] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(642), - [anon_sym_PIPE_PIPE] = ACTIONS(642), - [anon_sym_LT_LT] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), - [anon_sym_AMP_EQ] = ACTIONS(642), - [anon_sym_PIPE_EQ] = ACTIONS(642), - [anon_sym_LT_LT_EQ] = ACTIONS(642), - [anon_sym_GT_GT_EQ] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(642), - [anon_sym__] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(642), - [anon_sym_DASH_GT] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_async] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_default] = ACTIONS(639), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_fn] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_gen] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_impl] = ACTIONS(639), - [anon_sym_let] = ACTIONS(639), - [anon_sym_loop] = ACTIONS(639), - [anon_sym_match] = ACTIONS(639), - [anon_sym_mod] = ACTIONS(639), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_static] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(639), - [anon_sym_trait] = ACTIONS(639), - [anon_sym_type] = ACTIONS(639), - [anon_sym_union] = ACTIONS(639), - [anon_sym_unsafe] = ACTIONS(639), - [anon_sym_use] = ACTIONS(639), - [anon_sym_where] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [sym_mutable_specifier] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(662), - [aux_sym_string_literal_token1] = ACTIONS(665), - [sym_char_literal] = ACTIONS(662), - [anon_sym_true] = ACTIONS(668), - [anon_sym_false] = ACTIONS(668), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(639), - [sym_super] = ACTIONS(639), - [sym_crate] = ACTIONS(639), - [sym__raw_string_literal_start] = ACTIONS(671), - [sym_float_literal] = ACTIONS(662), - }, - [84] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(638), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(638), + [anon_sym_i8] = ACTIONS(638), + [anon_sym_u16] = ACTIONS(638), + [anon_sym_i16] = ACTIONS(638), + [anon_sym_u32] = ACTIONS(638), + [anon_sym_i32] = ACTIONS(638), + [anon_sym_u64] = ACTIONS(638), + [anon_sym_i64] = ACTIONS(638), + [anon_sym_u128] = ACTIONS(638), + [anon_sym_i128] = ACTIONS(638), + [anon_sym_isize] = ACTIONS(638), + [anon_sym_usize] = ACTIONS(638), + [anon_sym_f32] = ACTIONS(638), + [anon_sym_f64] = ACTIONS(638), + [anon_sym_bool] = ACTIONS(638), + [anon_sym_str] = ACTIONS(638), + [anon_sym_char] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(638), + [anon_sym_as] = ACTIONS(638), + [anon_sym_async] = ACTIONS(638), + [anon_sym_await] = ACTIONS(638), + [anon_sym_break] = ACTIONS(638), + [anon_sym_const] = ACTIONS(638), + [anon_sym_continue] = ACTIONS(638), + [anon_sym_default] = ACTIONS(638), + [anon_sym_enum] = ACTIONS(638), + [anon_sym_fn] = ACTIONS(638), + [anon_sym_for] = ACTIONS(638), + [anon_sym_gen] = ACTIONS(638), + [anon_sym_if] = ACTIONS(638), + [anon_sym_impl] = ACTIONS(638), + [anon_sym_let] = ACTIONS(638), + [anon_sym_loop] = ACTIONS(638), + [anon_sym_match] = ACTIONS(638), + [anon_sym_mod] = ACTIONS(638), + [anon_sym_pub] = ACTIONS(638), + [anon_sym_return] = ACTIONS(638), + [anon_sym_static] = ACTIONS(638), + [anon_sym_struct] = ACTIONS(638), + [anon_sym_trait] = ACTIONS(638), + [anon_sym_type] = ACTIONS(638), + [anon_sym_union] = ACTIONS(638), + [anon_sym_unsafe] = ACTIONS(638), + [anon_sym_use] = ACTIONS(638), + [anon_sym_where] = ACTIONS(638), + [anon_sym_while] = ACTIONS(638), + [sym_mutable_specifier] = ACTIONS(638), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(638), + [sym_super] = ACTIONS(638), + [sym_crate] = ACTIONS(638), + [sym_metavariable] = ACTIONS(660), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(84)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -25955,22 +26011,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [85] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [STATE(85)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(86)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [aux_sym_token_tree_repeat1] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(87)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [aux_sym_token_tree_repeat1] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(88)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(127), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(714), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), @@ -26077,23 +26499,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [86] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(86), - [sym_block_comment] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(89)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(131), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -26199,24 +26621,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [87] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(90)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(132), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -26321,1122 +26743,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [88] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [89] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [90] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [91] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [STATE(91)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym_token_tree_repeat1] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [92] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [aux_sym_token_tree_repeat1] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [93] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [94] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [95] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [96] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [97] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(95), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27541,145 +26865,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [98] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [99] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(103), + [STATE(92)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(716), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -27785,24 +26987,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [100] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(104), + [STATE(93)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(724), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27907,24 +27109,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [101] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(105), + [STATE(94)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(95)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28029,23 +27353,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [102] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(132), + [STATE(96)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -28151,24 +27475,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [103] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(97)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(728), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28273,146 +27597,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [104] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [STATE(98)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(99)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(100)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym_token_tree_repeat1] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(101)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym_token_tree_repeat1] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(102)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym_token_tree_repeat1] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(103)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(104)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), - }, - [105] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(105)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(109), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28517,24 +28573,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [106] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [STATE(106)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(110), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(726), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28639,24 +28695,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [107] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [STATE(107)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(111), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28761,23 +28817,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [108] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [STATE(108)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(111), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(109)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(730), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -28883,24 +29061,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [109] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(112), + [STATE(110)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(730), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29005,24 +29183,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [110] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(111)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(732), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29127,23 +29305,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [111] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(112)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym_token_tree_repeat1] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(113)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(116), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(732), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(732), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -29249,24 +29549,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [112] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(114)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(117), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(732), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29371,24 +29671,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [113] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(120), + [STATE(115)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(118), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29493,18 +29793,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [114] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(117), + [STATE(116)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -29615,18 +29915,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [115] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(118), + [STATE(117)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -29737,18 +30037,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [116] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(119), + [STATE(118)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -29859,18 +30159,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [117] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(119)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(122), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -29981,18 +30281,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [118] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(120)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(123), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -30103,18 +30403,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [119] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(121)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(84), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -30225,22 +30525,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [120] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(122)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(684), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), @@ -30347,145 +30647,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [121] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym_token_tree_repeat1] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [122] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(125), + [STATE(123)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(684), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(684), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -30591,23 +30769,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [123] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(126), + [STATE(124)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(128), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(684), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -30713,23 +30891,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [124] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(85), + [STATE(125)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(129), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(738), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -30835,24 +31013,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [125] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(126)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(130), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30957,23 +31135,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [126] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(127)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(742), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -31079,24 +31257,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [127] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [STATE(128)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31201,23 +31379,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [128] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(86), + [STATE(129)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(742), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -31323,24 +31501,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [129] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(87), + [STATE(130)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31445,268 +31623,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [130] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [131] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [STATE(131)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(674), + [anon_sym_i8] = ACTIONS(674), + [anon_sym_u16] = ACTIONS(674), + [anon_sym_i16] = ACTIONS(674), + [anon_sym_u32] = ACTIONS(674), + [anon_sym_i32] = ACTIONS(674), + [anon_sym_u64] = ACTIONS(674), + [anon_sym_i64] = ACTIONS(674), + [anon_sym_u128] = ACTIONS(674), + [anon_sym_i128] = ACTIONS(674), + [anon_sym_isize] = ACTIONS(674), + [anon_sym_usize] = ACTIONS(674), + [anon_sym_f32] = ACTIONS(674), + [anon_sym_f64] = ACTIONS(674), + [anon_sym_bool] = ACTIONS(674), + [anon_sym_str] = ACTIONS(674), + [anon_sym_char] = ACTIONS(674), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_await] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_gen] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_where] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [sym_mutable_specifier] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(690), + [aux_sym_string_literal_token1] = ACTIONS(692), + [sym_char_literal] = ACTIONS(690), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, - [132] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [STATE(132)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(208), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(206), + [sym_string_literal] = STATE(209), + [sym_raw_string_literal] = STATE(209), + [sym_boolean_literal] = STATE(209), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31811,177 +31867,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [133] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [STATE(133)] = { + [sym_token_tree] = STATE(168), + [sym_token_repetition] = STATE(168), + [sym__literal] = STATE(168), + [sym_string_literal] = STATE(174), + [sym_raw_string_literal] = STATE(174), + [sym_boolean_literal] = STATE(174), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(706), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(700), [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [134] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(134)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), [aux_sym_enum_variant_list_repeat1] = STATE(139), @@ -32050,62 +32106,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [135] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(135)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1600), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(767), + [anon_sym_i8] = ACTIONS(767), + [anon_sym_u16] = ACTIONS(767), + [anon_sym_i16] = ACTIONS(767), + [anon_sym_u32] = ACTIONS(767), + [anon_sym_i32] = ACTIONS(767), + [anon_sym_u64] = ACTIONS(767), + [anon_sym_i64] = ACTIONS(767), + [anon_sym_u128] = ACTIONS(767), + [anon_sym_i128] = ACTIONS(767), + [anon_sym_isize] = ACTIONS(767), + [anon_sym_usize] = ACTIONS(767), + [anon_sym_f32] = ACTIONS(767), + [anon_sym_f64] = ACTIONS(767), + [anon_sym_bool] = ACTIONS(767), + [anon_sym_str] = ACTIONS(767), + [anon_sym_char] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_COLON_COLON] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(788), + [anon_sym_async] = ACTIONS(791), + [anon_sym_break] = ACTIONS(794), + [anon_sym_const] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_default] = ACTIONS(803), + [anon_sym_for] = ACTIONS(806), + [anon_sym_gen] = ACTIONS(809), + [anon_sym_if] = ACTIONS(812), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_match] = ACTIONS(818), + [anon_sym_return] = ACTIONS(821), + [anon_sym_static] = ACTIONS(824), + [anon_sym_union] = ACTIONS(803), + [anon_sym_unsafe] = ACTIONS(827), + [anon_sym_while] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(833), + [anon_sym_move] = ACTIONS(836), + [anon_sym_try] = ACTIONS(839), + [sym_integer_literal] = ACTIONS(842), + [aux_sym_string_literal_token1] = ACTIONS(845), + [sym_char_literal] = ACTIONS(842), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(851), + [sym_super] = ACTIONS(854), + [sym_crate] = ACTIONS(854), + [sym_metavariable] = ACTIONS(857), + [sym__raw_string_literal_start] = ACTIONS(860), + [sym_float_literal] = ACTIONS(842), + }, + [STATE(136)] = { + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(137)] = { + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_PERCENT_EQ] = ACTIONS(869), + [anon_sym_CARET_EQ] = ACTIONS(869), + [anon_sym_AMP_EQ] = ACTIONS(869), + [anon_sym_PIPE_EQ] = ACTIONS(869), + [anon_sym_LT_LT_EQ] = ACTIONS(869), + [anon_sym_GT_GT_EQ] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(869), + [anon_sym__] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym_metavariable] = ACTIONS(872), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), + }, + [STATE(138)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1621), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(877), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32131,7 +32538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(752), + [anon_sym_COMMA] = ACTIONS(879), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32167,296 +32574,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [136] = { - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(754), - [anon_sym_i8] = ACTIONS(754), - [anon_sym_u16] = ACTIONS(754), - [anon_sym_i16] = ACTIONS(754), - [anon_sym_u32] = ACTIONS(754), - [anon_sym_i32] = ACTIONS(754), - [anon_sym_u64] = ACTIONS(754), - [anon_sym_i64] = ACTIONS(754), - [anon_sym_u128] = ACTIONS(754), - [anon_sym_i128] = ACTIONS(754), - [anon_sym_isize] = ACTIONS(754), - [anon_sym_usize] = ACTIONS(754), - [anon_sym_f32] = ACTIONS(754), - [anon_sym_f64] = ACTIONS(754), - [anon_sym_bool] = ACTIONS(754), - [anon_sym_str] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_as] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_gen] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(754), - [anon_sym_match] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(754), - [anon_sym_pub] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_struct] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_union] = ACTIONS(754), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_use] = ACTIONS(754), - [anon_sym_where] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [sym_mutable_specifier] = ACTIONS(754), - [sym_integer_literal] = ACTIONS(756), - [aux_sym_string_literal_token1] = ACTIONS(756), - [sym_char_literal] = ACTIONS(756), - [anon_sym_true] = ACTIONS(754), - [anon_sym_false] = ACTIONS(754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_crate] = ACTIONS(754), - [sym_metavariable] = ACTIONS(756), - [sym__raw_string_literal_start] = ACTIONS(756), - [sym_float_literal] = ACTIONS(756), - }, - [137] = { - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_EQ_GT] = ACTIONS(760), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(758), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(760), - [anon_sym_u8] = ACTIONS(758), - [anon_sym_i8] = ACTIONS(758), - [anon_sym_u16] = ACTIONS(758), - [anon_sym_i16] = ACTIONS(758), - [anon_sym_u32] = ACTIONS(758), - [anon_sym_i32] = ACTIONS(758), - [anon_sym_u64] = ACTIONS(758), - [anon_sym_i64] = ACTIONS(758), - [anon_sym_u128] = ACTIONS(758), - [anon_sym_i128] = ACTIONS(758), - [anon_sym_isize] = ACTIONS(758), - [anon_sym_usize] = ACTIONS(758), - [anon_sym_f32] = ACTIONS(758), - [anon_sym_f64] = ACTIONS(758), - [anon_sym_bool] = ACTIONS(758), - [anon_sym_str] = ACTIONS(758), - [anon_sym_char] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT_LT] = ACTIONS(765), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_PLUS_EQ] = ACTIONS(760), - [anon_sym_DASH_EQ] = ACTIONS(760), - [anon_sym_STAR_EQ] = ACTIONS(760), - [anon_sym_SLASH_EQ] = ACTIONS(760), - [anon_sym_PERCENT_EQ] = ACTIONS(760), - [anon_sym_CARET_EQ] = ACTIONS(760), - [anon_sym_AMP_EQ] = ACTIONS(760), - [anon_sym_PIPE_EQ] = ACTIONS(760), - [anon_sym_LT_LT_EQ] = ACTIONS(760), - [anon_sym_GT_GT_EQ] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(760), - [anon_sym_BANG_EQ] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(760), - [anon_sym_AT] = ACTIONS(760), - [anon_sym__] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(765), - [anon_sym_DOT_DOT] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(760), - [anon_sym_DOT_DOT_EQ] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym_DASH_GT] = ACTIONS(760), - [anon_sym_POUND] = ACTIONS(760), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_as] = ACTIONS(758), - [anon_sym_async] = ACTIONS(758), - [anon_sym_await] = ACTIONS(758), - [anon_sym_break] = ACTIONS(758), - [anon_sym_const] = ACTIONS(758), - [anon_sym_continue] = ACTIONS(758), - [anon_sym_default] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_fn] = ACTIONS(758), - [anon_sym_for] = ACTIONS(758), - [anon_sym_gen] = ACTIONS(758), - [anon_sym_if] = ACTIONS(758), - [anon_sym_impl] = ACTIONS(758), - [anon_sym_let] = ACTIONS(758), - [anon_sym_loop] = ACTIONS(758), - [anon_sym_match] = ACTIONS(758), - [anon_sym_mod] = ACTIONS(758), - [anon_sym_pub] = ACTIONS(758), - [anon_sym_return] = ACTIONS(758), - [anon_sym_static] = ACTIONS(758), - [anon_sym_struct] = ACTIONS(758), - [anon_sym_trait] = ACTIONS(758), - [anon_sym_type] = ACTIONS(758), - [anon_sym_union] = ACTIONS(758), - [anon_sym_unsafe] = ACTIONS(758), - [anon_sym_use] = ACTIONS(758), - [anon_sym_where] = ACTIONS(758), - [anon_sym_while] = ACTIONS(758), - [sym_mutable_specifier] = ACTIONS(758), - [sym_integer_literal] = ACTIONS(763), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_char_literal] = ACTIONS(763), - [anon_sym_true] = ACTIONS(758), - [anon_sym_false] = ACTIONS(758), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(758), - [sym_super] = ACTIONS(758), - [sym_crate] = ACTIONS(758), - [sym_metavariable] = ACTIONS(763), - [sym__raw_string_literal_start] = ACTIONS(763), - [sym_float_literal] = ACTIONS(763), - }, - [138] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), + [STATE(139)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(881), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32482,7 +32655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(883), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32518,62 +32691,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [139] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(141), + [STATE(140)] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_gen] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [STATE(141)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1598), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(772), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32599,7 +32889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(891), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32635,62 +32925,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [140] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [STATE(142)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(767), + [anon_sym_i8] = ACTIONS(767), + [anon_sym_u16] = ACTIONS(767), + [anon_sym_i16] = ACTIONS(767), + [anon_sym_u32] = ACTIONS(767), + [anon_sym_i32] = ACTIONS(767), + [anon_sym_u64] = ACTIONS(767), + [anon_sym_i64] = ACTIONS(767), + [anon_sym_u128] = ACTIONS(767), + [anon_sym_i128] = ACTIONS(767), + [anon_sym_isize] = ACTIONS(767), + [anon_sym_usize] = ACTIONS(767), + [anon_sym_f32] = ACTIONS(767), + [anon_sym_f64] = ACTIONS(767), + [anon_sym_bool] = ACTIONS(767), + [anon_sym_str] = ACTIONS(767), + [anon_sym_char] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_COLON_COLON] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(788), + [anon_sym_async] = ACTIONS(791), + [anon_sym_break] = ACTIONS(794), + [anon_sym_const] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_default] = ACTIONS(803), + [anon_sym_for] = ACTIONS(806), + [anon_sym_gen] = ACTIONS(809), + [anon_sym_if] = ACTIONS(812), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_match] = ACTIONS(818), + [anon_sym_return] = ACTIONS(821), + [anon_sym_static] = ACTIONS(824), + [anon_sym_union] = ACTIONS(803), + [anon_sym_unsafe] = ACTIONS(827), + [anon_sym_while] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(833), + [anon_sym_move] = ACTIONS(836), + [anon_sym_try] = ACTIONS(839), + [sym_integer_literal] = ACTIONS(842), + [aux_sym_string_literal_token1] = ACTIONS(845), + [sym_char_literal] = ACTIONS(842), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(851), + [sym_super] = ACTIONS(854), + [sym_crate] = ACTIONS(854), + [sym_metavariable] = ACTIONS(857), + [sym__raw_string_literal_start] = ACTIONS(860), + [sym_float_literal] = ACTIONS(842), + }, + [STATE(143)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(142), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(776), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(893), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32716,7 +33123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32752,179 +33159,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [141] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1630), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_u8] = ACTIONS(797), - [anon_sym_i8] = ACTIONS(797), - [anon_sym_u16] = ACTIONS(797), - [anon_sym_i16] = ACTIONS(797), - [anon_sym_u32] = ACTIONS(797), - [anon_sym_i32] = ACTIONS(797), - [anon_sym_u64] = ACTIONS(797), - [anon_sym_i64] = ACTIONS(797), - [anon_sym_u128] = ACTIONS(797), - [anon_sym_i128] = ACTIONS(797), - [anon_sym_isize] = ACTIONS(797), - [anon_sym_usize] = ACTIONS(797), - [anon_sym_f32] = ACTIONS(797), - [anon_sym_f64] = ACTIONS(797), - [anon_sym_bool] = ACTIONS(797), - [anon_sym_str] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(818), - [anon_sym_async] = ACTIONS(821), - [anon_sym_break] = ACTIONS(824), - [anon_sym_const] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_default] = ACTIONS(833), - [anon_sym_for] = ACTIONS(836), - [anon_sym_gen] = ACTIONS(839), - [anon_sym_if] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(845), - [anon_sym_match] = ACTIONS(848), - [anon_sym_return] = ACTIONS(851), - [anon_sym_static] = ACTIONS(854), - [anon_sym_union] = ACTIONS(833), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_while] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_move] = ACTIONS(866), - [anon_sym_try] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(872), - [aux_sym_string_literal_token1] = ACTIONS(875), - [sym_char_literal] = ACTIONS(872), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(881), - [sym_super] = ACTIONS(884), - [sym_crate] = ACTIONS(884), - [sym_metavariable] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(890), - [sym_float_literal] = ACTIONS(872), - }, - [142] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1599), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(144)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(143), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(893), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32950,7 +33240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(899), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32986,292 +33276,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [143] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, - [144] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_u8] = ACTIONS(797), - [anon_sym_i8] = ACTIONS(797), - [anon_sym_u16] = ACTIONS(797), - [anon_sym_i16] = ACTIONS(797), - [anon_sym_u32] = ACTIONS(797), - [anon_sym_i32] = ACTIONS(797), - [anon_sym_u64] = ACTIONS(797), - [anon_sym_i64] = ACTIONS(797), - [anon_sym_u128] = ACTIONS(797), - [anon_sym_i128] = ACTIONS(797), - [anon_sym_isize] = ACTIONS(797), - [anon_sym_usize] = ACTIONS(797), - [anon_sym_f32] = ACTIONS(797), - [anon_sym_f64] = ACTIONS(797), - [anon_sym_bool] = ACTIONS(797), - [anon_sym_str] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(818), - [anon_sym_async] = ACTIONS(821), - [anon_sym_break] = ACTIONS(824), - [anon_sym_const] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_default] = ACTIONS(833), - [anon_sym_for] = ACTIONS(836), - [anon_sym_gen] = ACTIONS(839), - [anon_sym_if] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(845), - [anon_sym_match] = ACTIONS(848), - [anon_sym_return] = ACTIONS(851), - [anon_sym_static] = ACTIONS(854), - [anon_sym_union] = ACTIONS(833), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_while] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_move] = ACTIONS(866), - [anon_sym_try] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(872), - [aux_sym_string_literal_token1] = ACTIONS(875), - [sym_char_literal] = ACTIONS(872), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(881), - [sym_super] = ACTIONS(884), - [sym_crate] = ACTIONS(884), - [sym_metavariable] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(890), - [sym_float_literal] = ACTIONS(872), - }, - [145] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(145)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(901), @@ -33336,58 +33392,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [146] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(146)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33452,62 +33508,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [147] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(147)] = { [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_EQ_GT] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(905), + [anon_sym_i8] = ACTIONS(905), + [anon_sym_u16] = ACTIONS(905), + [anon_sym_i16] = ACTIONS(905), + [anon_sym_u32] = ACTIONS(905), + [anon_sym_i32] = ACTIONS(905), + [anon_sym_u64] = ACTIONS(905), + [anon_sym_i64] = ACTIONS(905), + [anon_sym_u128] = ACTIONS(905), + [anon_sym_i128] = ACTIONS(905), + [anon_sym_isize] = ACTIONS(905), + [anon_sym_usize] = ACTIONS(905), + [anon_sym_f32] = ACTIONS(905), + [anon_sym_f64] = ACTIONS(905), + [anon_sym_bool] = ACTIONS(905), + [anon_sym_str] = ACTIONS(905), + [anon_sym_char] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_AMP_EQ] = ACTIONS(907), + [anon_sym_PIPE_EQ] = ACTIONS(907), + [anon_sym_LT_LT_EQ] = ACTIONS(907), + [anon_sym_GT_GT_EQ] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym__] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(907), + [anon_sym_DASH_GT] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(905), + [anon_sym_as] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_await] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_fn] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_gen] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_impl] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_pub] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_static] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_trait] = ACTIONS(905), + [anon_sym_type] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_unsafe] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [sym_mutable_specifier] = ACTIONS(905), + [sym_integer_literal] = ACTIONS(907), + [aux_sym_string_literal_token1] = ACTIONS(907), + [sym_char_literal] = ACTIONS(907), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_crate] = ACTIONS(905), + [sym_metavariable] = ACTIONS(907), + [sym__raw_string_literal_start] = ACTIONS(907), + [sym_float_literal] = ACTIONS(907), + }, + [STATE(148)] = { + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_RBRACK] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_EQ_GT] = ACTIONS(911), + [anon_sym_COLON] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_QMARK] = ACTIONS(911), + [anon_sym_u8] = ACTIONS(909), + [anon_sym_i8] = ACTIONS(909), + [anon_sym_u16] = ACTIONS(909), + [anon_sym_i16] = ACTIONS(909), + [anon_sym_u32] = ACTIONS(909), + [anon_sym_i32] = ACTIONS(909), + [anon_sym_u64] = ACTIONS(909), + [anon_sym_i64] = ACTIONS(909), + [anon_sym_u128] = ACTIONS(909), + [anon_sym_i128] = ACTIONS(909), + [anon_sym_isize] = ACTIONS(909), + [anon_sym_usize] = ACTIONS(909), + [anon_sym_f32] = ACTIONS(909), + [anon_sym_f64] = ACTIONS(909), + [anon_sym_bool] = ACTIONS(909), + [anon_sym_str] = ACTIONS(909), + [anon_sym_char] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_PERCENT] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_AMP_AMP] = ACTIONS(911), + [anon_sym_PIPE_PIPE] = ACTIONS(911), + [anon_sym_LT_LT] = ACTIONS(909), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_PLUS_EQ] = ACTIONS(911), + [anon_sym_DASH_EQ] = ACTIONS(911), + [anon_sym_STAR_EQ] = ACTIONS(911), + [anon_sym_SLASH_EQ] = ACTIONS(911), + [anon_sym_PERCENT_EQ] = ACTIONS(911), + [anon_sym_CARET_EQ] = ACTIONS(911), + [anon_sym_AMP_EQ] = ACTIONS(911), + [anon_sym_PIPE_EQ] = ACTIONS(911), + [anon_sym_LT_LT_EQ] = ACTIONS(911), + [anon_sym_GT_GT_EQ] = ACTIONS(911), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(911), + [anon_sym_BANG_EQ] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [anon_sym__] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(911), + [anon_sym_COMMA] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(911), + [anon_sym_DASH_GT] = ACTIONS(911), + [anon_sym_POUND] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(909), + [anon_sym_as] = ACTIONS(909), + [anon_sym_async] = ACTIONS(909), + [anon_sym_await] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_default] = ACTIONS(909), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_fn] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_gen] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_impl] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_pub] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_static] = ACTIONS(909), + [anon_sym_struct] = ACTIONS(909), + [anon_sym_trait] = ACTIONS(909), + [anon_sym_type] = ACTIONS(909), + [anon_sym_union] = ACTIONS(909), + [anon_sym_unsafe] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [sym_mutable_specifier] = ACTIONS(909), + [sym_integer_literal] = ACTIONS(911), + [aux_sym_string_literal_token1] = ACTIONS(911), + [sym_char_literal] = ACTIONS(911), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(909), + [sym_super] = ACTIONS(909), + [sym_crate] = ACTIONS(909), + [sym_metavariable] = ACTIONS(911), + [sym__raw_string_literal_start] = ACTIONS(911), + [sym_float_literal] = ACTIONS(911), + }, + [STATE(149)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [aux_sym_enum_variant_list_repeat1] = STATE(212), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(913), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33568,62 +33856,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [148] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(150)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(907), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(915), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33684,61 +33972,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [149] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(208), + [STATE(151)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym_enum_variant_list_repeat1] = STATE(203), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(917), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -33800,410 +34088,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [150] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(913), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(913), - [anon_sym_RBRACK] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_QMARK] = ACTIONS(913), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PERCENT] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [anon_sym_LT_LT] = ACTIONS(911), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_PLUS_EQ] = ACTIONS(913), - [anon_sym_DASH_EQ] = ACTIONS(913), - [anon_sym_STAR_EQ] = ACTIONS(913), - [anon_sym_SLASH_EQ] = ACTIONS(913), - [anon_sym_PERCENT_EQ] = ACTIONS(913), - [anon_sym_CARET_EQ] = ACTIONS(913), - [anon_sym_AMP_EQ] = ACTIONS(913), - [anon_sym_PIPE_EQ] = ACTIONS(913), - [anon_sym_LT_LT_EQ] = ACTIONS(913), - [anon_sym_GT_GT_EQ] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(913), - [anon_sym_BANG_EQ] = ACTIONS(913), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(913), - [anon_sym_LT_EQ] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym__] = ACTIONS(911), - [anon_sym_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_COMMA] = ACTIONS(913), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym_DASH_GT] = ACTIONS(913), - [anon_sym_POUND] = ACTIONS(913), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_as] = ACTIONS(911), - [anon_sym_async] = ACTIONS(911), - [anon_sym_await] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_default] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_fn] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_gen] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_impl] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_pub] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_struct] = ACTIONS(911), - [anon_sym_trait] = ACTIONS(911), - [anon_sym_type] = ACTIONS(911), - [anon_sym_union] = ACTIONS(911), - [anon_sym_unsafe] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym_mutable_specifier] = ACTIONS(911), - [sym_integer_literal] = ACTIONS(913), - [aux_sym_string_literal_token1] = ACTIONS(913), - [sym_char_literal] = ACTIONS(913), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(911), - [sym_super] = ACTIONS(911), - [sym_crate] = ACTIONS(911), - [sym_metavariable] = ACTIONS(913), - [sym__raw_string_literal_start] = ACTIONS(913), - [sym_float_literal] = ACTIONS(913), - }, - [151] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym_metavariable] = ACTIONS(917), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [152] = { + [STATE(152)] = { [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, - [153] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u128] = ACTIONS(919), + [anon_sym_i128] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_str] = ACTIONS(919), + [anon_sym_char] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym__] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_COLON_COLON] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_SQUOTE] = ACTIONS(919), + [anon_sym_as] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_await] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_fn] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_gen] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_impl] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_loop] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mod] = ACTIONS(919), + [anon_sym_pub] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_static] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_trait] = ACTIONS(919), + [anon_sym_type] = ACTIONS(919), + [anon_sym_union] = ACTIONS(919), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_use] = ACTIONS(919), + [anon_sym_where] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [sym_mutable_specifier] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(921), + [aux_sym_string_literal_token1] = ACTIONS(921), + [sym_char_literal] = ACTIONS(921), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_crate] = ACTIONS(919), + [sym_metavariable] = ACTIONS(921), + [sym__raw_string_literal_start] = ACTIONS(921), + [sym_float_literal] = ACTIONS(921), + }, + [STATE(153)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(919), + [anon_sym_RBRACK] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34264,62 +34320,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [154] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(154)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2695), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(155)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(933), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34380,410 +34552,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [155] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_EQ_GT] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u128] = ACTIONS(923), - [anon_sym_i128] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_str] = ACTIONS(923), - [anon_sym_char] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_COLON_COLON] = ACTIONS(925), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_await] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_fn] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_gen] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_impl] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_trait] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [sym_mutable_specifier] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(925), - [aux_sym_string_literal_token1] = ACTIONS(925), - [sym_char_literal] = ACTIONS(925), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(923), - [sym_super] = ACTIONS(923), - [sym_crate] = ACTIONS(923), - [sym_metavariable] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(925), - [sym_float_literal] = ACTIONS(925), - }, - [156] = { + [STATE(156)] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u128] = ACTIONS(927), - [anon_sym_i128] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_str] = ACTIONS(927), - [anon_sym_char] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_CARET_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym__] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(929), - [anon_sym_DASH_GT] = ACTIONS(929), - [anon_sym_POUND] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(927), - [anon_sym_as] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_await] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_default] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [anon_sym_fn] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_gen] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_impl] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_pub] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_static] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(927), - [anon_sym_type] = ACTIONS(927), - [anon_sym_union] = ACTIONS(927), - [anon_sym_unsafe] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [sym_mutable_specifier] = ACTIONS(927), - [sym_integer_literal] = ACTIONS(929), - [aux_sym_string_literal_token1] = ACTIONS(929), - [sym_char_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_crate] = ACTIONS(927), - [sym_metavariable] = ACTIONS(929), - [sym__raw_string_literal_start] = ACTIONS(929), - [sym_float_literal] = ACTIONS(929), - }, - [157] = { + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_gen] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym_metavariable] = ACTIONS(937), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), + }, + [STATE(157)] = { [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [aux_sym__non_special_token_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u128] = ACTIONS(931), - [anon_sym_i128] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_str] = ACTIONS(931), - [anon_sym_char] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_async] = ACTIONS(931), - [anon_sym_await] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_gen] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_impl] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_pub] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_trait] = ACTIONS(931), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(931), - [anon_sym_unsafe] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [sym_mutable_specifier] = ACTIONS(931), - [sym_integer_literal] = ACTIONS(933), - [aux_sym_string_literal_token1] = ACTIONS(933), - [sym_char_literal] = ACTIONS(933), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(931), - [sym_super] = ACTIONS(931), - [sym_crate] = ACTIONS(931), - [sym__raw_string_literal_start] = ACTIONS(933), - [sym_float_literal] = ACTIONS(933), - }, - [158] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_identifier] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_EQ_GT] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_u8] = ACTIONS(939), + [anon_sym_i8] = ACTIONS(939), + [anon_sym_u16] = ACTIONS(939), + [anon_sym_i16] = ACTIONS(939), + [anon_sym_u32] = ACTIONS(939), + [anon_sym_i32] = ACTIONS(939), + [anon_sym_u64] = ACTIONS(939), + [anon_sym_i64] = ACTIONS(939), + [anon_sym_u128] = ACTIONS(939), + [anon_sym_i128] = ACTIONS(939), + [anon_sym_isize] = ACTIONS(939), + [anon_sym_usize] = ACTIONS(939), + [anon_sym_f32] = ACTIONS(939), + [anon_sym_f64] = ACTIONS(939), + [anon_sym_bool] = ACTIONS(939), + [anon_sym_str] = ACTIONS(939), + [anon_sym_char] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_PERCENT] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_AMP_EQ] = ACTIONS(941), + [anon_sym_PIPE_EQ] = ACTIONS(941), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_GT_GT_EQ] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(941), + [anon_sym__] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_COLON_COLON] = ACTIONS(941), + [anon_sym_DASH_GT] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_as] = ACTIONS(939), + [anon_sym_async] = ACTIONS(939), + [anon_sym_await] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_fn] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_gen] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_impl] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_pub] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_static] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(939), + [anon_sym_trait] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_union] = ACTIONS(939), + [anon_sym_unsafe] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [sym_mutable_specifier] = ACTIONS(939), + [sym_integer_literal] = ACTIONS(941), + [aux_sym_string_literal_token1] = ACTIONS(941), + [sym_char_literal] = ACTIONS(941), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_crate] = ACTIONS(939), + [sym_metavariable] = ACTIONS(941), + [sym__raw_string_literal_start] = ACTIONS(941), + [sym_float_literal] = ACTIONS(941), + }, + [STATE(158)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(935), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34844,241 +34900,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [159] = { + [STATE(159)] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), - }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(941), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_RBRACK] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_COLON] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_QMARK] = ACTIONS(943), - [anon_sym_u8] = ACTIONS(941), - [anon_sym_i8] = ACTIONS(941), - [anon_sym_u16] = ACTIONS(941), - [anon_sym_i16] = ACTIONS(941), - [anon_sym_u32] = ACTIONS(941), - [anon_sym_i32] = ACTIONS(941), - [anon_sym_u64] = ACTIONS(941), - [anon_sym_i64] = ACTIONS(941), - [anon_sym_u128] = ACTIONS(941), - [anon_sym_i128] = ACTIONS(941), - [anon_sym_isize] = ACTIONS(941), - [anon_sym_usize] = ACTIONS(941), - [anon_sym_f32] = ACTIONS(941), - [anon_sym_f64] = ACTIONS(941), - [anon_sym_bool] = ACTIONS(941), - [anon_sym_str] = ACTIONS(941), - [anon_sym_char] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_PERCENT] = ACTIONS(941), - [anon_sym_CARET] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_AMP] = ACTIONS(941), - [anon_sym_PIPE] = ACTIONS(941), - [anon_sym_AMP_AMP] = ACTIONS(943), - [anon_sym_PIPE_PIPE] = ACTIONS(943), - [anon_sym_LT_LT] = ACTIONS(941), - [anon_sym_GT_GT] = ACTIONS(941), - [anon_sym_PLUS_EQ] = ACTIONS(943), - [anon_sym_DASH_EQ] = ACTIONS(943), - [anon_sym_STAR_EQ] = ACTIONS(943), - [anon_sym_SLASH_EQ] = ACTIONS(943), - [anon_sym_PERCENT_EQ] = ACTIONS(943), - [anon_sym_CARET_EQ] = ACTIONS(943), - [anon_sym_AMP_EQ] = ACTIONS(943), - [anon_sym_PIPE_EQ] = ACTIONS(943), - [anon_sym_LT_LT_EQ] = ACTIONS(943), - [anon_sym_GT_GT_EQ] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(941), - [anon_sym_EQ_EQ] = ACTIONS(943), - [anon_sym_BANG_EQ] = ACTIONS(943), - [anon_sym_GT] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_GT_EQ] = ACTIONS(943), - [anon_sym_LT_EQ] = ACTIONS(943), - [anon_sym_AT] = ACTIONS(943), - [anon_sym__] = ACTIONS(941), - [anon_sym_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(943), - [anon_sym_COLON_COLON] = ACTIONS(943), - [anon_sym_DASH_GT] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(943), - [anon_sym_SQUOTE] = ACTIONS(941), - [anon_sym_as] = ACTIONS(941), - [anon_sym_async] = ACTIONS(941), - [anon_sym_await] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_const] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_default] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(941), - [anon_sym_fn] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_gen] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_impl] = ACTIONS(941), - [anon_sym_let] = ACTIONS(941), - [anon_sym_loop] = ACTIONS(941), - [anon_sym_match] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_pub] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_static] = ACTIONS(941), - [anon_sym_struct] = ACTIONS(941), - [anon_sym_trait] = ACTIONS(941), - [anon_sym_type] = ACTIONS(941), - [anon_sym_union] = ACTIONS(941), - [anon_sym_unsafe] = ACTIONS(941), - [anon_sym_use] = ACTIONS(941), - [anon_sym_where] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [sym_mutable_specifier] = ACTIONS(941), - [sym_integer_literal] = ACTIONS(943), - [aux_sym_string_literal_token1] = ACTIONS(943), - [sym_char_literal] = ACTIONS(943), - [anon_sym_true] = ACTIONS(941), - [anon_sym_false] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(941), - [sym_super] = ACTIONS(941), - [sym_crate] = ACTIONS(941), - [sym_metavariable] = ACTIONS(943), - [sym__raw_string_literal_start] = ACTIONS(943), - [sym_float_literal] = ACTIONS(943), - }, - [161] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), [sym_identifier] = ACTIONS(945), [anon_sym_SEMI] = ACTIONS(947), [anon_sym_LPAREN] = ACTIONS(947), @@ -35192,62 +35016,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(947), [sym_float_literal] = ACTIONS(947), }, - [162] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(160)] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(951), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u128] = ACTIONS(949), + [anon_sym_i128] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_str] = ACTIONS(949), + [anon_sym_char] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(951), + [anon_sym__] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_COLON_COLON] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_gen] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_pub] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_trait] = ACTIONS(949), + [anon_sym_type] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [sym_mutable_specifier] = ACTIONS(949), + [sym_integer_literal] = ACTIONS(951), + [aux_sym_string_literal_token1] = ACTIONS(951), + [sym_char_literal] = ACTIONS(951), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_crate] = ACTIONS(949), + [sym_metavariable] = ACTIONS(951), + [sym__raw_string_literal_start] = ACTIONS(951), + [sym_float_literal] = ACTIONS(951), + }, + [STATE(161)] = { + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_identifier] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(955), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_EQ_GT] = ACTIONS(955), + [anon_sym_COLON] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_u8] = ACTIONS(953), + [anon_sym_i8] = ACTIONS(953), + [anon_sym_u16] = ACTIONS(953), + [anon_sym_i16] = ACTIONS(953), + [anon_sym_u32] = ACTIONS(953), + [anon_sym_i32] = ACTIONS(953), + [anon_sym_u64] = ACTIONS(953), + [anon_sym_i64] = ACTIONS(953), + [anon_sym_u128] = ACTIONS(953), + [anon_sym_i128] = ACTIONS(953), + [anon_sym_isize] = ACTIONS(953), + [anon_sym_usize] = ACTIONS(953), + [anon_sym_f32] = ACTIONS(953), + [anon_sym_f64] = ACTIONS(953), + [anon_sym_bool] = ACTIONS(953), + [anon_sym_str] = ACTIONS(953), + [anon_sym_char] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_PERCENT] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_AMP_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(955), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(955), + [anon_sym_DASH_EQ] = ACTIONS(955), + [anon_sym_STAR_EQ] = ACTIONS(955), + [anon_sym_SLASH_EQ] = ACTIONS(955), + [anon_sym_PERCENT_EQ] = ACTIONS(955), + [anon_sym_CARET_EQ] = ACTIONS(955), + [anon_sym_AMP_EQ] = ACTIONS(955), + [anon_sym_PIPE_EQ] = ACTIONS(955), + [anon_sym_LT_LT_EQ] = ACTIONS(955), + [anon_sym_GT_GT_EQ] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_AT] = ACTIONS(955), + [anon_sym__] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_COLON_COLON] = ACTIONS(955), + [anon_sym_DASH_GT] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(953), + [anon_sym_as] = ACTIONS(953), + [anon_sym_async] = ACTIONS(953), + [anon_sym_await] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [anon_sym_fn] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_gen] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_impl] = ACTIONS(953), + [anon_sym_let] = ACTIONS(953), + [anon_sym_loop] = ACTIONS(953), + [anon_sym_match] = ACTIONS(953), + [anon_sym_mod] = ACTIONS(953), + [anon_sym_pub] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_static] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_trait] = ACTIONS(953), + [anon_sym_type] = ACTIONS(953), + [anon_sym_union] = ACTIONS(953), + [anon_sym_unsafe] = ACTIONS(953), + [anon_sym_use] = ACTIONS(953), + [anon_sym_where] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [sym_mutable_specifier] = ACTIONS(953), + [sym_integer_literal] = ACTIONS(955), + [aux_sym_string_literal_token1] = ACTIONS(955), + [sym_char_literal] = ACTIONS(955), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(953), + [sym_super] = ACTIONS(953), + [sym_crate] = ACTIONS(953), + [sym_metavariable] = ACTIONS(955), + [sym__raw_string_literal_start] = ACTIONS(955), + [sym_float_literal] = ACTIONS(955), + }, + [STATE(162)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(949), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35308,178 +35364,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [163] = { + [STATE(163)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_gen] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym_metavariable] = ACTIONS(953), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), - }, - [164] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(164)] = { [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym_metavariable] = ACTIONS(963), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), + }, + [STATE(165)] = { + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_gen] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym_metavariable] = ACTIONS(967), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), + }, + [STATE(166)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35540,61 +35828,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [165] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(167)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35656,177 +35944,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [166] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2615), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [STATE(168)] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_EQ_GT] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_u8] = ACTIONS(885), + [anon_sym_i8] = ACTIONS(885), + [anon_sym_u16] = ACTIONS(885), + [anon_sym_i16] = ACTIONS(885), + [anon_sym_u32] = ACTIONS(885), + [anon_sym_i32] = ACTIONS(885), + [anon_sym_u64] = ACTIONS(885), + [anon_sym_i64] = ACTIONS(885), + [anon_sym_u128] = ACTIONS(885), + [anon_sym_i128] = ACTIONS(885), + [anon_sym_isize] = ACTIONS(885), + [anon_sym_usize] = ACTIONS(885), + [anon_sym_f32] = ACTIONS(885), + [anon_sym_f64] = ACTIONS(885), + [anon_sym_bool] = ACTIONS(885), + [anon_sym_str] = ACTIONS(885), + [anon_sym_char] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_PERCENT] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(887), + [anon_sym_PIPE_PIPE] = ACTIONS(887), + [anon_sym_LT_LT] = ACTIONS(885), + [anon_sym_GT_GT] = ACTIONS(885), + [anon_sym_PLUS_EQ] = ACTIONS(887), + [anon_sym_DASH_EQ] = ACTIONS(887), + [anon_sym_STAR_EQ] = ACTIONS(887), + [anon_sym_SLASH_EQ] = ACTIONS(887), + [anon_sym_PERCENT_EQ] = ACTIONS(887), + [anon_sym_CARET_EQ] = ACTIONS(887), + [anon_sym_AMP_EQ] = ACTIONS(887), + [anon_sym_PIPE_EQ] = ACTIONS(887), + [anon_sym_LT_LT_EQ] = ACTIONS(887), + [anon_sym_GT_GT_EQ] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(887), + [anon_sym_BANG_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(887), + [anon_sym_LT_EQ] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym__] = ACTIONS(885), + [anon_sym_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_COLON_COLON] = ACTIONS(887), + [anon_sym_DASH_GT] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_SQUOTE] = ACTIONS(885), + [anon_sym_as] = ACTIONS(885), + [anon_sym_async] = ACTIONS(885), + [anon_sym_await] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_enum] = ACTIONS(885), + [anon_sym_fn] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_gen] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_impl] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_pub] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_static] = ACTIONS(885), + [anon_sym_struct] = ACTIONS(885), + [anon_sym_trait] = ACTIONS(885), + [anon_sym_type] = ACTIONS(885), + [anon_sym_union] = ACTIONS(885), + [anon_sym_unsafe] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [sym_mutable_specifier] = ACTIONS(885), + [sym_integer_literal] = ACTIONS(887), + [aux_sym_string_literal_token1] = ACTIONS(887), + [sym_char_literal] = ACTIONS(887), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(885), + [sym_crate] = ACTIONS(885), + [sym_metavariable] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(887), + [sym_float_literal] = ACTIONS(887), + }, + [STATE(169)] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_RBRACK] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(975), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_QMARK] = ACTIONS(975), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u128] = ACTIONS(973), + [anon_sym_i128] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_str] = ACTIONS(973), + [anon_sym_char] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(975), + [anon_sym_DASH_EQ] = ACTIONS(975), + [anon_sym_STAR_EQ] = ACTIONS(975), + [anon_sym_SLASH_EQ] = ACTIONS(975), + [anon_sym_PERCENT_EQ] = ACTIONS(975), + [anon_sym_CARET_EQ] = ACTIONS(975), + [anon_sym_AMP_EQ] = ACTIONS(975), + [anon_sym_PIPE_EQ] = ACTIONS(975), + [anon_sym_LT_LT_EQ] = ACTIONS(975), + [anon_sym_GT_GT_EQ] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_AT] = ACTIONS(975), + [anon_sym__] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_DASH_GT] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(975), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_as] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_default] = ACTIONS(973), + [anon_sym_enum] = ACTIONS(973), + [anon_sym_fn] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_gen] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_loop] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_mod] = ACTIONS(973), + [anon_sym_pub] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_trait] = ACTIONS(973), + [anon_sym_type] = ACTIONS(973), + [anon_sym_union] = ACTIONS(973), + [anon_sym_unsafe] = ACTIONS(973), + [anon_sym_use] = ACTIONS(973), + [anon_sym_where] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [sym_mutable_specifier] = ACTIONS(973), + [sym_integer_literal] = ACTIONS(975), + [aux_sym_string_literal_token1] = ACTIONS(975), + [sym_char_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_crate] = ACTIONS(973), + [sym_metavariable] = ACTIONS(975), + [sym__raw_string_literal_start] = ACTIONS(975), + [sym_float_literal] = ACTIONS(975), }, - [167] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(170)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(977), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35888,107 +36292,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [168] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), + [STATE(171)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2608), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -35997,69 +36401,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [169] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [STATE(172)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2673), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(173)] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(174)] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_EQ_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym__] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_DASH_GT] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_gen] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_where] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [sym_mutable_specifier] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym_metavariable] = ACTIONS(983), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [STATE(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_EQ_GT] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_DASH_GT] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_await] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_gen] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [sym_mutable_specifier] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym_metavariable] = ACTIONS(987), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), + }, + [STATE(176)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(989), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36120,705 +36988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [170] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_EQ_GT] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_u8] = ACTIONS(754), - [anon_sym_i8] = ACTIONS(754), - [anon_sym_u16] = ACTIONS(754), - [anon_sym_i16] = ACTIONS(754), - [anon_sym_u32] = ACTIONS(754), - [anon_sym_i32] = ACTIONS(754), - [anon_sym_u64] = ACTIONS(754), - [anon_sym_i64] = ACTIONS(754), - [anon_sym_u128] = ACTIONS(754), - [anon_sym_i128] = ACTIONS(754), - [anon_sym_isize] = ACTIONS(754), - [anon_sym_usize] = ACTIONS(754), - [anon_sym_f32] = ACTIONS(754), - [anon_sym_f64] = ACTIONS(754), - [anon_sym_bool] = ACTIONS(754), - [anon_sym_str] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_PERCENT] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(756), - [anon_sym_DASH_EQ] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(756), - [anon_sym_SLASH_EQ] = ACTIONS(756), - [anon_sym_PERCENT_EQ] = ACTIONS(756), - [anon_sym_CARET_EQ] = ACTIONS(756), - [anon_sym_AMP_EQ] = ACTIONS(756), - [anon_sym_PIPE_EQ] = ACTIONS(756), - [anon_sym_LT_LT_EQ] = ACTIONS(756), - [anon_sym_GT_GT_EQ] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym__] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(756), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_as] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_gen] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(754), - [anon_sym_match] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(754), - [anon_sym_pub] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_struct] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_union] = ACTIONS(754), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_use] = ACTIONS(754), - [anon_sym_where] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [sym_mutable_specifier] = ACTIONS(754), - [sym_integer_literal] = ACTIONS(756), - [aux_sym_string_literal_token1] = ACTIONS(756), - [sym_char_literal] = ACTIONS(756), - [anon_sym_true] = ACTIONS(754), - [anon_sym_false] = ACTIONS(754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_crate] = ACTIONS(754), - [sym_metavariable] = ACTIONS(756), - [sym__raw_string_literal_start] = ACTIONS(756), - [sym_float_literal] = ACTIONS(756), - }, - [171] = { - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u128] = ACTIONS(973), - [anon_sym_i128] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_str] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PERCENT_EQ] = ACTIONS(975), - [anon_sym_CARET_EQ] = ACTIONS(975), - [anon_sym_AMP_EQ] = ACTIONS(975), - [anon_sym_PIPE_EQ] = ACTIONS(975), - [anon_sym_LT_LT_EQ] = ACTIONS(975), - [anon_sym_GT_GT_EQ] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym__] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_COLON_COLON] = ACTIONS(975), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_await] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_fn] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_gen] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_mod] = ACTIONS(973), - [anon_sym_pub] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_trait] = ACTIONS(973), - [anon_sym_type] = ACTIONS(973), - [anon_sym_union] = ACTIONS(973), - [anon_sym_unsafe] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_where] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [sym_mutable_specifier] = ACTIONS(973), - [sym_integer_literal] = ACTIONS(975), - [aux_sym_string_literal_token1] = ACTIONS(975), - [sym_char_literal] = ACTIONS(975), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_crate] = ACTIONS(973), - [sym_metavariable] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(975), - [sym_float_literal] = ACTIONS(975), - }, - [172] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u128] = ACTIONS(977), - [anon_sym_i128] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_str] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_PERCENT_EQ] = ACTIONS(979), - [anon_sym_CARET_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), - [anon_sym__] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(977), - [anon_sym_as] = ACTIONS(977), - [anon_sym_async] = ACTIONS(977), - [anon_sym_await] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_const] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_fn] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_gen] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(977), - [anon_sym_loop] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_mod] = ACTIONS(977), - [anon_sym_pub] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_trait] = ACTIONS(977), - [anon_sym_type] = ACTIONS(977), - [anon_sym_union] = ACTIONS(977), - [anon_sym_unsafe] = ACTIONS(977), - [anon_sym_use] = ACTIONS(977), - [anon_sym_where] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [sym_mutable_specifier] = ACTIONS(977), - [sym_integer_literal] = ACTIONS(979), - [aux_sym_string_literal_token1] = ACTIONS(979), - [sym_char_literal] = ACTIONS(979), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(977), - [sym_metavariable] = ACTIONS(979), - [sym__raw_string_literal_start] = ACTIONS(979), - [sym_float_literal] = ACTIONS(979), - }, - [173] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_EQ_GT] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_u8] = ACTIONS(754), - [anon_sym_i8] = ACTIONS(754), - [anon_sym_u16] = ACTIONS(754), - [anon_sym_i16] = ACTIONS(754), - [anon_sym_u32] = ACTIONS(754), - [anon_sym_i32] = ACTIONS(754), - [anon_sym_u64] = ACTIONS(754), - [anon_sym_i64] = ACTIONS(754), - [anon_sym_u128] = ACTIONS(754), - [anon_sym_i128] = ACTIONS(754), - [anon_sym_isize] = ACTIONS(754), - [anon_sym_usize] = ACTIONS(754), - [anon_sym_f32] = ACTIONS(754), - [anon_sym_f64] = ACTIONS(754), - [anon_sym_bool] = ACTIONS(754), - [anon_sym_str] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_PERCENT] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(756), - [anon_sym_DASH_EQ] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(756), - [anon_sym_SLASH_EQ] = ACTIONS(756), - [anon_sym_PERCENT_EQ] = ACTIONS(756), - [anon_sym_CARET_EQ] = ACTIONS(756), - [anon_sym_AMP_EQ] = ACTIONS(756), - [anon_sym_PIPE_EQ] = ACTIONS(756), - [anon_sym_LT_LT_EQ] = ACTIONS(756), - [anon_sym_GT_GT_EQ] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym__] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(756), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_as] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_gen] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(754), - [anon_sym_match] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(754), - [anon_sym_pub] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_struct] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_union] = ACTIONS(754), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_use] = ACTIONS(754), - [anon_sym_where] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [sym_mutable_specifier] = ACTIONS(754), - [sym_integer_literal] = ACTIONS(756), - [aux_sym_string_literal_token1] = ACTIONS(756), - [sym_char_literal] = ACTIONS(756), - [anon_sym_true] = ACTIONS(754), - [anon_sym_false] = ACTIONS(754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_crate] = ACTIONS(754), - [sym_metavariable] = ACTIONS(756), - [sym__raw_string_literal_start] = ACTIONS(756), - [sym_float_literal] = ACTIONS(756), - }, - [174] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_EQ_GT] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_u8] = ACTIONS(983), - [anon_sym_i8] = ACTIONS(983), - [anon_sym_u16] = ACTIONS(983), - [anon_sym_i16] = ACTIONS(983), - [anon_sym_u32] = ACTIONS(983), - [anon_sym_i32] = ACTIONS(983), - [anon_sym_u64] = ACTIONS(983), - [anon_sym_i64] = ACTIONS(983), - [anon_sym_u128] = ACTIONS(983), - [anon_sym_i128] = ACTIONS(983), - [anon_sym_isize] = ACTIONS(983), - [anon_sym_usize] = ACTIONS(983), - [anon_sym_f32] = ACTIONS(983), - [anon_sym_f64] = ACTIONS(983), - [anon_sym_bool] = ACTIONS(983), - [anon_sym_str] = ACTIONS(983), - [anon_sym_char] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(983), - [anon_sym_PLUS_EQ] = ACTIONS(985), - [anon_sym_DASH_EQ] = ACTIONS(985), - [anon_sym_STAR_EQ] = ACTIONS(985), - [anon_sym_SLASH_EQ] = ACTIONS(985), - [anon_sym_PERCENT_EQ] = ACTIONS(985), - [anon_sym_CARET_EQ] = ACTIONS(985), - [anon_sym_AMP_EQ] = ACTIONS(985), - [anon_sym_PIPE_EQ] = ACTIONS(985), - [anon_sym_LT_LT_EQ] = ACTIONS(985), - [anon_sym_GT_GT_EQ] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(985), - [anon_sym_BANG_EQ] = ACTIONS(985), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(985), - [anon_sym_LT_EQ] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(985), - [anon_sym__] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_COLON_COLON] = ACTIONS(985), - [anon_sym_DASH_GT] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(983), - [anon_sym_as] = ACTIONS(983), - [anon_sym_async] = ACTIONS(983), - [anon_sym_await] = ACTIONS(983), - [anon_sym_break] = ACTIONS(983), - [anon_sym_const] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_default] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_gen] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_impl] = ACTIONS(983), - [anon_sym_let] = ACTIONS(983), - [anon_sym_loop] = ACTIONS(983), - [anon_sym_match] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_pub] = ACTIONS(983), - [anon_sym_return] = ACTIONS(983), - [anon_sym_static] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(983), - [anon_sym_trait] = ACTIONS(983), - [anon_sym_type] = ACTIONS(983), - [anon_sym_union] = ACTIONS(983), - [anon_sym_unsafe] = ACTIONS(983), - [anon_sym_use] = ACTIONS(983), - [anon_sym_where] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [sym_mutable_specifier] = ACTIONS(983), - [sym_integer_literal] = ACTIONS(985), - [aux_sym_string_literal_token1] = ACTIONS(985), - [sym_char_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(983), - [sym_super] = ACTIONS(983), - [sym_crate] = ACTIONS(983), - [sym_metavariable] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(985), - [sym_float_literal] = ACTIONS(985), - }, - [175] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_RBRACK] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_EQ_GT] = ACTIONS(989), - [anon_sym_COLON] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_QMARK] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(987), - [anon_sym_i8] = ACTIONS(987), - [anon_sym_u16] = ACTIONS(987), - [anon_sym_i16] = ACTIONS(987), - [anon_sym_u32] = ACTIONS(987), - [anon_sym_i32] = ACTIONS(987), - [anon_sym_u64] = ACTIONS(987), - [anon_sym_i64] = ACTIONS(987), - [anon_sym_u128] = ACTIONS(987), - [anon_sym_i128] = ACTIONS(987), - [anon_sym_isize] = ACTIONS(987), - [anon_sym_usize] = ACTIONS(987), - [anon_sym_f32] = ACTIONS(987), - [anon_sym_f64] = ACTIONS(987), - [anon_sym_bool] = ACTIONS(987), - [anon_sym_str] = ACTIONS(987), - [anon_sym_char] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_PERCENT] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_PLUS_EQ] = ACTIONS(989), - [anon_sym_DASH_EQ] = ACTIONS(989), - [anon_sym_STAR_EQ] = ACTIONS(989), - [anon_sym_SLASH_EQ] = ACTIONS(989), - [anon_sym_PERCENT_EQ] = ACTIONS(989), - [anon_sym_CARET_EQ] = ACTIONS(989), - [anon_sym_AMP_EQ] = ACTIONS(989), - [anon_sym_PIPE_EQ] = ACTIONS(989), - [anon_sym_LT_LT_EQ] = ACTIONS(989), - [anon_sym_GT_GT_EQ] = ACTIONS(989), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(989), - [anon_sym_BANG_EQ] = ACTIONS(989), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(989), - [anon_sym_LT_EQ] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), - [anon_sym__] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(989), - [anon_sym_COLON_COLON] = ACTIONS(989), - [anon_sym_DASH_GT] = ACTIONS(989), - [anon_sym_POUND] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(987), - [anon_sym_as] = ACTIONS(987), - [anon_sym_async] = ACTIONS(987), - [anon_sym_await] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_default] = ACTIONS(987), - [anon_sym_enum] = ACTIONS(987), - [anon_sym_fn] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_gen] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_impl] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_loop] = ACTIONS(987), - [anon_sym_match] = ACTIONS(987), - [anon_sym_mod] = ACTIONS(987), - [anon_sym_pub] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_static] = ACTIONS(987), - [anon_sym_struct] = ACTIONS(987), - [anon_sym_trait] = ACTIONS(987), - [anon_sym_type] = ACTIONS(987), - [anon_sym_union] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(987), - [anon_sym_use] = ACTIONS(987), - [anon_sym_where] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [sym_mutable_specifier] = ACTIONS(987), - [sym_integer_literal] = ACTIONS(989), - [aux_sym_string_literal_token1] = ACTIONS(989), - [sym_char_literal] = ACTIONS(989), - [anon_sym_true] = ACTIONS(987), - [anon_sym_false] = ACTIONS(987), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(987), - [sym_super] = ACTIONS(987), - [sym_crate] = ACTIONS(987), - [sym_metavariable] = ACTIONS(989), - [sym__raw_string_literal_start] = ACTIONS(989), - [sym_float_literal] = ACTIONS(989), - }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), + [STATE(177)] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), [sym_identifier] = ACTIONS(991), [anon_sym_SEMI] = ACTIONS(993), [anon_sym_LPAREN] = ACTIONS(993), @@ -36932,178 +37104,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(993), [sym_float_literal] = ACTIONS(993), }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_EQ_GT] = ACTIONS(997), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u128] = ACTIONS(995), - [anon_sym_i128] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_str] = ACTIONS(995), - [anon_sym_char] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_CARET_EQ] = ACTIONS(997), - [anon_sym_AMP_EQ] = ACTIONS(997), - [anon_sym_PIPE_EQ] = ACTIONS(997), - [anon_sym_LT_LT_EQ] = ACTIONS(997), - [anon_sym_GT_GT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_COLON_COLON] = ACTIONS(997), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(997), - [anon_sym_SQUOTE] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_async] = ACTIONS(995), - [anon_sym_await] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_default] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_fn] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_gen] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_impl] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_union] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [sym_mutable_specifier] = ACTIONS(995), - [sym_integer_literal] = ACTIONS(997), - [aux_sym_string_literal_token1] = ACTIONS(997), - [sym_char_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(995), - [sym_super] = ACTIONS(995), - [sym_crate] = ACTIONS(995), - [sym_metavariable] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(997), - [sym_float_literal] = ACTIONS(997), - }, - [178] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(178)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(995), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37164,873 +37220,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [179] = { + [STATE(179)] = { [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [aux_sym__non_special_token_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_EQ_GT] = ACTIONS(1001), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_u8] = ACTIONS(758), - [anon_sym_i8] = ACTIONS(758), - [anon_sym_u16] = ACTIONS(758), - [anon_sym_i16] = ACTIONS(758), - [anon_sym_u32] = ACTIONS(758), - [anon_sym_i32] = ACTIONS(758), - [anon_sym_u64] = ACTIONS(758), - [anon_sym_i64] = ACTIONS(758), - [anon_sym_u128] = ACTIONS(758), - [anon_sym_i128] = ACTIONS(758), - [anon_sym_isize] = ACTIONS(758), - [anon_sym_usize] = ACTIONS(758), - [anon_sym_f32] = ACTIONS(758), - [anon_sym_f64] = ACTIONS(758), - [anon_sym_bool] = ACTIONS(758), - [anon_sym_str] = ACTIONS(758), - [anon_sym_char] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - [anon_sym_STAR_EQ] = ACTIONS(1001), - [anon_sym_SLASH_EQ] = ACTIONS(1001), - [anon_sym_PERCENT_EQ] = ACTIONS(1001), - [anon_sym_CARET_EQ] = ACTIONS(1001), - [anon_sym_AMP_EQ] = ACTIONS(1001), - [anon_sym_PIPE_EQ] = ACTIONS(1001), - [anon_sym_LT_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_GT_EQ] = ACTIONS(1001), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym__] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1001), - [anon_sym_DASH_GT] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(1001), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_as] = ACTIONS(758), - [anon_sym_async] = ACTIONS(758), - [anon_sym_await] = ACTIONS(758), - [anon_sym_break] = ACTIONS(758), - [anon_sym_const] = ACTIONS(758), - [anon_sym_continue] = ACTIONS(758), - [anon_sym_default] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_fn] = ACTIONS(758), - [anon_sym_for] = ACTIONS(758), - [anon_sym_gen] = ACTIONS(758), - [anon_sym_if] = ACTIONS(758), - [anon_sym_impl] = ACTIONS(758), - [anon_sym_let] = ACTIONS(758), - [anon_sym_loop] = ACTIONS(758), - [anon_sym_match] = ACTIONS(758), - [anon_sym_mod] = ACTIONS(758), - [anon_sym_pub] = ACTIONS(758), - [anon_sym_return] = ACTIONS(758), - [anon_sym_static] = ACTIONS(758), - [anon_sym_struct] = ACTIONS(758), - [anon_sym_trait] = ACTIONS(758), - [anon_sym_type] = ACTIONS(758), - [anon_sym_union] = ACTIONS(758), - [anon_sym_unsafe] = ACTIONS(758), - [anon_sym_use] = ACTIONS(758), - [anon_sym_where] = ACTIONS(758), - [anon_sym_while] = ACTIONS(758), - [sym_mutable_specifier] = ACTIONS(758), - [sym_integer_literal] = ACTIONS(763), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_char_literal] = ACTIONS(763), - [anon_sym_true] = ACTIONS(758), - [anon_sym_false] = ACTIONS(758), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(758), - [sym_super] = ACTIONS(758), - [sym_crate] = ACTIONS(758), - [sym__raw_string_literal_start] = ACTIONS(763), - [sym_float_literal] = ACTIONS(763), - }, - [180] = { + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym_metavariable] = ACTIONS(999), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), + }, + [STATE(180)] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym_metavariable] = ACTIONS(1009), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), - }, - [181] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2732), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_EQ_GT] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1001), + [anon_sym_i8] = ACTIONS(1001), + [anon_sym_u16] = ACTIONS(1001), + [anon_sym_i16] = ACTIONS(1001), + [anon_sym_u32] = ACTIONS(1001), + [anon_sym_i32] = ACTIONS(1001), + [anon_sym_u64] = ACTIONS(1001), + [anon_sym_i64] = ACTIONS(1001), + [anon_sym_u128] = ACTIONS(1001), + [anon_sym_i128] = ACTIONS(1001), + [anon_sym_isize] = ACTIONS(1001), + [anon_sym_usize] = ACTIONS(1001), + [anon_sym_f32] = ACTIONS(1001), + [anon_sym_f64] = ACTIONS(1001), + [anon_sym_bool] = ACTIONS(1001), + [anon_sym_str] = ACTIONS(1001), + [anon_sym_char] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_STAR_EQ] = ACTIONS(1003), + [anon_sym_SLASH_EQ] = ACTIONS(1003), + [anon_sym_PERCENT_EQ] = ACTIONS(1003), + [anon_sym_CARET_EQ] = ACTIONS(1003), + [anon_sym_AMP_EQ] = ACTIONS(1003), + [anon_sym_PIPE_EQ] = ACTIONS(1003), + [anon_sym_LT_LT_EQ] = ACTIONS(1003), + [anon_sym_GT_GT_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym__] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_COLON_COLON] = ACTIONS(1003), + [anon_sym_DASH_GT] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_gen] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_impl] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_loop] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1001), + [anon_sym_pub] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_trait] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_unsafe] = ACTIONS(1001), + [anon_sym_use] = ACTIONS(1001), + [anon_sym_where] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [sym_mutable_specifier] = ACTIONS(1001), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1003), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1001), + [sym_super] = ACTIONS(1001), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), + [sym__raw_string_literal_start] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), + }, + [STATE(181)] = { [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [182] = { + [sym_identifier] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_EQ_GT] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(1005), + [anon_sym_i8] = ACTIONS(1005), + [anon_sym_u16] = ACTIONS(1005), + [anon_sym_i16] = ACTIONS(1005), + [anon_sym_u32] = ACTIONS(1005), + [anon_sym_i32] = ACTIONS(1005), + [anon_sym_u64] = ACTIONS(1005), + [anon_sym_i64] = ACTIONS(1005), + [anon_sym_u128] = ACTIONS(1005), + [anon_sym_i128] = ACTIONS(1005), + [anon_sym_isize] = ACTIONS(1005), + [anon_sym_usize] = ACTIONS(1005), + [anon_sym_f32] = ACTIONS(1005), + [anon_sym_f64] = ACTIONS(1005), + [anon_sym_bool] = ACTIONS(1005), + [anon_sym_str] = ACTIONS(1005), + [anon_sym_char] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PERCENT_EQ] = ACTIONS(1007), + [anon_sym_CARET_EQ] = ACTIONS(1007), + [anon_sym_AMP_EQ] = ACTIONS(1007), + [anon_sym_PIPE_EQ] = ACTIONS(1007), + [anon_sym_LT_LT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1007), + [anon_sym_BANG_EQ] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT_EQ] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym__] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_COLON_COLON] = ACTIONS(1007), + [anon_sym_DASH_GT] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_await] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_gen] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_mod] = ACTIONS(1005), + [anon_sym_pub] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_trait] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_where] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [sym_mutable_specifier] = ACTIONS(1005), + [sym_integer_literal] = ACTIONS(1007), + [aux_sym_string_literal_token1] = ACTIONS(1007), + [sym_char_literal] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1005), + [sym_super] = ACTIONS(1005), + [sym_crate] = ACTIONS(1005), + [sym_metavariable] = ACTIONS(1007), + [sym__raw_string_literal_start] = ACTIONS(1007), + [sym_float_literal] = ACTIONS(1007), + }, + [STATE(182)] = { [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_EQ_GT] = ACTIONS(1013), - [anon_sym_COLON] = ACTIONS(1011), + [aux_sym__non_special_token_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_u8] = ACTIONS(1011), - [anon_sym_i8] = ACTIONS(1011), - [anon_sym_u16] = ACTIONS(1011), - [anon_sym_i16] = ACTIONS(1011), - [anon_sym_u32] = ACTIONS(1011), - [anon_sym_i32] = ACTIONS(1011), - [anon_sym_u64] = ACTIONS(1011), - [anon_sym_i64] = ACTIONS(1011), - [anon_sym_u128] = ACTIONS(1011), - [anon_sym_i128] = ACTIONS(1011), - [anon_sym_isize] = ACTIONS(1011), - [anon_sym_usize] = ACTIONS(1011), - [anon_sym_f32] = ACTIONS(1011), - [anon_sym_f64] = ACTIONS(1011), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_str] = ACTIONS(1011), - [anon_sym_char] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_SLASH] = ACTIONS(1011), - [anon_sym_PERCENT] = ACTIONS(1011), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PERCENT_EQ] = ACTIONS(1013), - [anon_sym_CARET_EQ] = ACTIONS(1013), - [anon_sym_AMP_EQ] = ACTIONS(1013), - [anon_sym_PIPE_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_EQ] = ACTIONS(1013), - [anon_sym_GT_GT_EQ] = ACTIONS(1013), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym__] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1013), - [anon_sym_DASH_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_await] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_fn] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_gen] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_impl] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_mod] = ACTIONS(1011), - [anon_sym_pub] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_trait] = ACTIONS(1011), - [anon_sym_type] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsafe] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_where] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [sym_mutable_specifier] = ACTIONS(1011), - [sym_integer_literal] = ACTIONS(1013), - [aux_sym_string_literal_token1] = ACTIONS(1013), - [sym_char_literal] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1011), - [sym_super] = ACTIONS(1011), - [sym_crate] = ACTIONS(1011), - [sym_metavariable] = ACTIONS(1013), - [sym__raw_string_literal_start] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1013), - }, - [183] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_let_condition] = STATE(3226), - [sym__let_chain] = STATE(3228), - [sym__condition] = STATE(3536), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(1009), + [anon_sym_i8] = ACTIONS(1009), + [anon_sym_u16] = ACTIONS(1009), + [anon_sym_i16] = ACTIONS(1009), + [anon_sym_u32] = ACTIONS(1009), + [anon_sym_i32] = ACTIONS(1009), + [anon_sym_u64] = ACTIONS(1009), + [anon_sym_i64] = ACTIONS(1009), + [anon_sym_u128] = ACTIONS(1009), + [anon_sym_i128] = ACTIONS(1009), + [anon_sym_isize] = ACTIONS(1009), + [anon_sym_usize] = ACTIONS(1009), + [anon_sym_f32] = ACTIONS(1009), + [anon_sym_f64] = ACTIONS(1009), + [anon_sym_bool] = ACTIONS(1009), + [anon_sym_str] = ACTIONS(1009), + [anon_sym_char] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_fn] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_gen] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_impl] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_loop] = ACTIONS(1009), + [anon_sym_match] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1009), + [anon_sym_pub] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_trait] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_unsafe] = ACTIONS(1009), + [anon_sym_use] = ACTIONS(1009), + [anon_sym_where] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [sym_mutable_specifier] = ACTIONS(1009), + [sym_integer_literal] = ACTIONS(1011), + [aux_sym_string_literal_token1] = ACTIONS(1011), + [sym_char_literal] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_crate] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1011), + [sym_float_literal] = ACTIONS(1011), + }, + [STATE(183)] = { [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [184] = { + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_RBRACK] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(1015), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1013), + [anon_sym_i8] = ACTIONS(1013), + [anon_sym_u16] = ACTIONS(1013), + [anon_sym_i16] = ACTIONS(1013), + [anon_sym_u32] = ACTIONS(1013), + [anon_sym_i32] = ACTIONS(1013), + [anon_sym_u64] = ACTIONS(1013), + [anon_sym_i64] = ACTIONS(1013), + [anon_sym_u128] = ACTIONS(1013), + [anon_sym_i128] = ACTIONS(1013), + [anon_sym_isize] = ACTIONS(1013), + [anon_sym_usize] = ACTIONS(1013), + [anon_sym_f32] = ACTIONS(1013), + [anon_sym_f64] = ACTIONS(1013), + [anon_sym_bool] = ACTIONS(1013), + [anon_sym_str] = ACTIONS(1013), + [anon_sym_char] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1015), + [anon_sym_PIPE_PIPE] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_PLUS_EQ] = ACTIONS(1015), + [anon_sym_DASH_EQ] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1015), + [anon_sym_SLASH_EQ] = ACTIONS(1015), + [anon_sym_PERCENT_EQ] = ACTIONS(1015), + [anon_sym_CARET_EQ] = ACTIONS(1015), + [anon_sym_AMP_EQ] = ACTIONS(1015), + [anon_sym_PIPE_EQ] = ACTIONS(1015), + [anon_sym_LT_LT_EQ] = ACTIONS(1015), + [anon_sym_GT_GT_EQ] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ] = ACTIONS(1015), + [anon_sym_BANG_EQ] = ACTIONS(1015), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym__] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_COMMA] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1015), + [anon_sym_DASH_GT] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1013), + [anon_sym_as] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_await] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_gen] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1013), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_unsafe] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [sym_mutable_specifier] = ACTIONS(1013), + [sym_integer_literal] = ACTIONS(1015), + [aux_sym_string_literal_token1] = ACTIONS(1015), + [sym_char_literal] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1013), + [sym_super] = ACTIONS(1013), + [sym_crate] = ACTIONS(1013), + [sym_metavariable] = ACTIONS(1015), + [sym__raw_string_literal_start] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), + }, + [STATE(184)] = { [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_RBRACK] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_u8] = ACTIONS(1023), - [anon_sym_i8] = ACTIONS(1023), - [anon_sym_u16] = ACTIONS(1023), - [anon_sym_i16] = ACTIONS(1023), - [anon_sym_u32] = ACTIONS(1023), - [anon_sym_i32] = ACTIONS(1023), - [anon_sym_u64] = ACTIONS(1023), - [anon_sym_i64] = ACTIONS(1023), - [anon_sym_u128] = ACTIONS(1023), - [anon_sym_i128] = ACTIONS(1023), - [anon_sym_isize] = ACTIONS(1023), - [anon_sym_usize] = ACTIONS(1023), - [anon_sym_f32] = ACTIONS(1023), - [anon_sym_f64] = ACTIONS(1023), - [anon_sym_bool] = ACTIONS(1023), - [anon_sym_str] = ACTIONS(1023), - [anon_sym_char] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1025), - [anon_sym_DASH_EQ] = ACTIONS(1025), - [anon_sym_STAR_EQ] = ACTIONS(1025), - [anon_sym_SLASH_EQ] = ACTIONS(1025), - [anon_sym_PERCENT_EQ] = ACTIONS(1025), - [anon_sym_CARET_EQ] = ACTIONS(1025), - [anon_sym_AMP_EQ] = ACTIONS(1025), - [anon_sym_PIPE_EQ] = ACTIONS(1025), - [anon_sym_LT_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_GT_EQ] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym__] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_DASH_GT] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_as] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_const] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_default] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1023), - [anon_sym_fn] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_gen] = ACTIONS(1023), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_impl] = ACTIONS(1023), - [anon_sym_let] = ACTIONS(1023), - [anon_sym_loop] = ACTIONS(1023), - [anon_sym_match] = ACTIONS(1023), - [anon_sym_mod] = ACTIONS(1023), - [anon_sym_pub] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_static] = ACTIONS(1023), - [anon_sym_struct] = ACTIONS(1023), - [anon_sym_trait] = ACTIONS(1023), - [anon_sym_type] = ACTIONS(1023), - [anon_sym_union] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1023), - [anon_sym_use] = ACTIONS(1023), - [anon_sym_where] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [sym_mutable_specifier] = ACTIONS(1023), - [sym_integer_literal] = ACTIONS(1025), - [aux_sym_string_literal_token1] = ACTIONS(1025), - [sym_char_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1023), - [sym_super] = ACTIONS(1023), - [sym_crate] = ACTIONS(1023), - [sym_metavariable] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1025), - [sym_float_literal] = ACTIONS(1025), + [aux_sym__non_special_token_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_EQ_GT] = ACTIONS(1017), + [anon_sym_COLON] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_PERCENT] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_AMP_AMP] = ACTIONS(1017), + [anon_sym_PIPE_PIPE] = ACTIONS(1017), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym__] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym_DASH_GT] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(1017), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), }, - [185] = { + [STATE(185)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(185), [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_u8] = ACTIONS(1027), - [anon_sym_i8] = ACTIONS(1027), - [anon_sym_u16] = ACTIONS(1027), - [anon_sym_i16] = ACTIONS(1027), - [anon_sym_u32] = ACTIONS(1027), - [anon_sym_i32] = ACTIONS(1027), - [anon_sym_u64] = ACTIONS(1027), - [anon_sym_i64] = ACTIONS(1027), - [anon_sym_u128] = ACTIONS(1027), - [anon_sym_i128] = ACTIONS(1027), - [anon_sym_isize] = ACTIONS(1027), - [anon_sym_usize] = ACTIONS(1027), - [anon_sym_f32] = ACTIONS(1027), - [anon_sym_f64] = ACTIONS(1027), - [anon_sym_bool] = ACTIONS(1027), - [anon_sym_str] = ACTIONS(1027), - [anon_sym_char] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PERCENT_EQ] = ACTIONS(1029), - [anon_sym_CARET_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym_DASH_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_default] = ACTIONS(1027), - [anon_sym_enum] = ACTIONS(1027), - [anon_sym_fn] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_gen] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_impl] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_mod] = ACTIONS(1027), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1027), - [anon_sym_trait] = ACTIONS(1027), - [anon_sym_type] = ACTIONS(1027), - [anon_sym_union] = ACTIONS(1027), - [anon_sym_unsafe] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [sym_mutable_specifier] = ACTIONS(1027), - [sym_integer_literal] = ACTIONS(1029), - [aux_sym_string_literal_token1] = ACTIONS(1029), - [sym_char_literal] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1027), - [sym_super] = ACTIONS(1027), - [sym_crate] = ACTIONS(1027), - [sym_metavariable] = ACTIONS(1029), - [sym__raw_string_literal_start] = ACTIONS(1029), - [sym_float_literal] = ACTIONS(1029), - }, - [186] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1023), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -38092,64 +38032,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [187] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2587), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(187)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2604), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38167,12 +38223,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38183,7 +38239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38208,64 +38264,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [188] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2681), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(188)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2685), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38283,12 +38339,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38299,7 +38355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38324,64 +38380,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [189] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2695), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(189)] = { [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1027), + [anon_sym_u8] = ACTIONS(1025), + [anon_sym_i8] = ACTIONS(1025), + [anon_sym_u16] = ACTIONS(1025), + [anon_sym_i16] = ACTIONS(1025), + [anon_sym_u32] = ACTIONS(1025), + [anon_sym_i32] = ACTIONS(1025), + [anon_sym_u64] = ACTIONS(1025), + [anon_sym_i64] = ACTIONS(1025), + [anon_sym_u128] = ACTIONS(1025), + [anon_sym_i128] = ACTIONS(1025), + [anon_sym_isize] = ACTIONS(1025), + [anon_sym_usize] = ACTIONS(1025), + [anon_sym_f32] = ACTIONS(1025), + [anon_sym_f64] = ACTIONS(1025), + [anon_sym_bool] = ACTIONS(1025), + [anon_sym_str] = ACTIONS(1025), + [anon_sym_char] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1025), + [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1025), + [anon_sym_PLUS_EQ] = ACTIONS(1027), + [anon_sym_DASH_EQ] = ACTIONS(1027), + [anon_sym_STAR_EQ] = ACTIONS(1027), + [anon_sym_SLASH_EQ] = ACTIONS(1027), + [anon_sym_PERCENT_EQ] = ACTIONS(1027), + [anon_sym_CARET_EQ] = ACTIONS(1027), + [anon_sym_AMP_EQ] = ACTIONS(1027), + [anon_sym_PIPE_EQ] = ACTIONS(1027), + [anon_sym_LT_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_GT_EQ] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1027), + [anon_sym__] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [anon_sym_DASH_GT] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(1025), + [anon_sym_async] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [anon_sym_continue] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1025), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_gen] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1025), + [anon_sym_pub] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1025), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1025), + [anon_sym_union] = ACTIONS(1025), + [anon_sym_unsafe] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_where] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [sym_mutable_specifier] = ACTIONS(1025), + [sym_integer_literal] = ACTIONS(1027), + [aux_sym_string_literal_token1] = ACTIONS(1027), + [sym_char_literal] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1025), + [anon_sym_false] = ACTIONS(1025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1025), + [sym_super] = ACTIONS(1025), + [sym_crate] = ACTIONS(1025), + [sym_metavariable] = ACTIONS(1027), + [sym__raw_string_literal_start] = ACTIONS(1027), + [sym_float_literal] = ACTIONS(1027), + }, + [STATE(190)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2762), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38399,12 +38571,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38415,7 +38587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38440,64 +38612,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [190] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2582), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), + [STATE(191)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2535), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38515,12 +38687,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38531,7 +38703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38556,64 +38728,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [191] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2560), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), + [STATE(192)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2538), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38631,12 +38803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38647,7 +38819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38672,64 +38844,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [192] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2562), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), + [STATE(193)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2568), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38747,12 +38919,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38763,7 +38935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38788,64 +38960,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [193] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2588), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), + [STATE(194)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2584), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38863,12 +39035,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38879,7 +39051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38904,64 +39076,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [194] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2604), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), + [STATE(195)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), + [sym__condition] = STATE(2585), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38979,12 +39151,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38995,7 +39167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39020,64 +39192,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [195] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), + [STATE(196)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2878), + [sym__let_chain] = STATE(2880), [sym__condition] = STATE(2605), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -39095,12 +39267,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39111,7 +39283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39136,635 +39308,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [196] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2617), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [STATE(197)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_let_condition] = STATE(3282), + [sym__let_chain] = STATE(3286), + [sym__condition] = STATE(3496), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [197] = { - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u128] = ACTIONS(1033), - [anon_sym_i128] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_str] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_PLUS_EQ] = ACTIONS(1035), - [anon_sym_DASH_EQ] = ACTIONS(1035), - [anon_sym_STAR_EQ] = ACTIONS(1035), - [anon_sym_SLASH_EQ] = ACTIONS(1035), - [anon_sym_PERCENT_EQ] = ACTIONS(1035), - [anon_sym_CARET_EQ] = ACTIONS(1035), - [anon_sym_AMP_EQ] = ACTIONS(1035), - [anon_sym_PIPE_EQ] = ACTIONS(1035), - [anon_sym_LT_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_GT_EQ] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym_DASH_GT] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_async] = ACTIONS(1033), - [anon_sym_await] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_fn] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_gen] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_impl] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_pub] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_unsafe] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [sym_mutable_specifier] = ACTIONS(1033), - [sym_integer_literal] = ACTIONS(1035), - [aux_sym_string_literal_token1] = ACTIONS(1035), - [sym_char_literal] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym__raw_string_literal_start] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), - }, - [198] = { + [STATE(198)] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1037), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_DASH_GT] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_await] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_where] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [sym_mutable_specifier] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), + [sym_identifier] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_EQ_GT] = ACTIONS(993), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_u8] = ACTIONS(991), + [anon_sym_i8] = ACTIONS(991), + [anon_sym_u16] = ACTIONS(991), + [anon_sym_i16] = ACTIONS(991), + [anon_sym_u32] = ACTIONS(991), + [anon_sym_i32] = ACTIONS(991), + [anon_sym_u64] = ACTIONS(991), + [anon_sym_i64] = ACTIONS(991), + [anon_sym_u128] = ACTIONS(991), + [anon_sym_i128] = ACTIONS(991), + [anon_sym_isize] = ACTIONS(991), + [anon_sym_usize] = ACTIONS(991), + [anon_sym_f32] = ACTIONS(991), + [anon_sym_f64] = ACTIONS(991), + [anon_sym_bool] = ACTIONS(991), + [anon_sym_str] = ACTIONS(991), + [anon_sym_char] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_PLUS_EQ] = ACTIONS(993), + [anon_sym_DASH_EQ] = ACTIONS(993), + [anon_sym_STAR_EQ] = ACTIONS(993), + [anon_sym_SLASH_EQ] = ACTIONS(993), + [anon_sym_PERCENT_EQ] = ACTIONS(993), + [anon_sym_CARET_EQ] = ACTIONS(993), + [anon_sym_AMP_EQ] = ACTIONS(993), + [anon_sym_PIPE_EQ] = ACTIONS(993), + [anon_sym_LT_LT_EQ] = ACTIONS(993), + [anon_sym_GT_GT_EQ] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(993), + [anon_sym_BANG_EQ] = ACTIONS(993), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(993), + [anon_sym_AT] = ACTIONS(993), + [anon_sym__] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(993), + [anon_sym_COLON_COLON] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_as] = ACTIONS(991), + [anon_sym_async] = ACTIONS(991), + [anon_sym_await] = ACTIONS(991), + [anon_sym_break] = ACTIONS(991), + [anon_sym_const] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(991), + [anon_sym_default] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(991), + [anon_sym_fn] = ACTIONS(991), + [anon_sym_for] = ACTIONS(991), + [anon_sym_gen] = ACTIONS(991), + [anon_sym_if] = ACTIONS(991), + [anon_sym_impl] = ACTIONS(991), + [anon_sym_let] = ACTIONS(991), + [anon_sym_loop] = ACTIONS(991), + [anon_sym_match] = ACTIONS(991), + [anon_sym_mod] = ACTIONS(991), + [anon_sym_pub] = ACTIONS(991), + [anon_sym_return] = ACTIONS(991), + [anon_sym_static] = ACTIONS(991), + [anon_sym_struct] = ACTIONS(991), + [anon_sym_trait] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_union] = ACTIONS(991), + [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_use] = ACTIONS(991), + [anon_sym_where] = ACTIONS(991), + [anon_sym_while] = ACTIONS(991), + [sym_mutable_specifier] = ACTIONS(991), + [sym_integer_literal] = ACTIONS(993), + [aux_sym_string_literal_token1] = ACTIONS(993), + [sym_char_literal] = ACTIONS(993), + [anon_sym_true] = ACTIONS(991), + [anon_sym_false] = ACTIONS(991), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(991), + [sym__raw_string_literal_start] = ACTIONS(993), + [sym_float_literal] = ACTIONS(993), }, - [199] = { + [STATE(199)] = { [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym_identifier] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_EQ_GT] = ACTIONS(997), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u128] = ACTIONS(995), - [anon_sym_i128] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_str] = ACTIONS(995), - [anon_sym_char] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_CARET_EQ] = ACTIONS(997), - [anon_sym_AMP_EQ] = ACTIONS(997), - [anon_sym_PIPE_EQ] = ACTIONS(997), - [anon_sym_LT_LT_EQ] = ACTIONS(997), - [anon_sym_GT_GT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_COLON_COLON] = ACTIONS(997), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(997), - [anon_sym_SQUOTE] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_async] = ACTIONS(995), - [anon_sym_await] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_default] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_fn] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_gen] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_impl] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_union] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [sym_mutable_specifier] = ACTIONS(995), - [sym_integer_literal] = ACTIONS(997), - [aux_sym_string_literal_token1] = ACTIONS(997), - [sym_char_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(995), - [sym_super] = ACTIONS(995), - [sym_crate] = ACTIONS(995), - [sym__raw_string_literal_start] = ACTIONS(997), - [sym_float_literal] = ACTIONS(997), - }, - [200] = { + [sym_identifier] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_EQ_GT] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(1005), + [anon_sym_i8] = ACTIONS(1005), + [anon_sym_u16] = ACTIONS(1005), + [anon_sym_i16] = ACTIONS(1005), + [anon_sym_u32] = ACTIONS(1005), + [anon_sym_i32] = ACTIONS(1005), + [anon_sym_u64] = ACTIONS(1005), + [anon_sym_i64] = ACTIONS(1005), + [anon_sym_u128] = ACTIONS(1005), + [anon_sym_i128] = ACTIONS(1005), + [anon_sym_isize] = ACTIONS(1005), + [anon_sym_usize] = ACTIONS(1005), + [anon_sym_f32] = ACTIONS(1005), + [anon_sym_f64] = ACTIONS(1005), + [anon_sym_bool] = ACTIONS(1005), + [anon_sym_str] = ACTIONS(1005), + [anon_sym_char] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PERCENT_EQ] = ACTIONS(1007), + [anon_sym_CARET_EQ] = ACTIONS(1007), + [anon_sym_AMP_EQ] = ACTIONS(1007), + [anon_sym_PIPE_EQ] = ACTIONS(1007), + [anon_sym_LT_LT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1007), + [anon_sym_BANG_EQ] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT_EQ] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym__] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_COLON_COLON] = ACTIONS(1007), + [anon_sym_DASH_GT] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_await] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_gen] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_mod] = ACTIONS(1005), + [anon_sym_pub] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_trait] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_where] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [sym_mutable_specifier] = ACTIONS(1005), + [sym_integer_literal] = ACTIONS(1007), + [aux_sym_string_literal_token1] = ACTIONS(1007), + [sym_char_literal] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1005), + [sym_super] = ACTIONS(1005), + [sym_crate] = ACTIONS(1005), + [sym__raw_string_literal_start] = ACTIONS(1007), + [sym_float_literal] = ACTIONS(1007), + }, + [STATE(200)] = { [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), - }, - [201] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_identifier] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_RPAREN] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1015), + [anon_sym_RBRACK] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_EQ_GT] = ACTIONS(1015), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1013), + [anon_sym_i8] = ACTIONS(1013), + [anon_sym_u16] = ACTIONS(1013), + [anon_sym_i16] = ACTIONS(1013), + [anon_sym_u32] = ACTIONS(1013), + [anon_sym_i32] = ACTIONS(1013), + [anon_sym_u64] = ACTIONS(1013), + [anon_sym_i64] = ACTIONS(1013), + [anon_sym_u128] = ACTIONS(1013), + [anon_sym_i128] = ACTIONS(1013), + [anon_sym_isize] = ACTIONS(1013), + [anon_sym_usize] = ACTIONS(1013), + [anon_sym_f32] = ACTIONS(1013), + [anon_sym_f64] = ACTIONS(1013), + [anon_sym_bool] = ACTIONS(1013), + [anon_sym_str] = ACTIONS(1013), + [anon_sym_char] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_AMP_AMP] = ACTIONS(1015), + [anon_sym_PIPE_PIPE] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1013), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_PLUS_EQ] = ACTIONS(1015), + [anon_sym_DASH_EQ] = ACTIONS(1015), + [anon_sym_STAR_EQ] = ACTIONS(1015), + [anon_sym_SLASH_EQ] = ACTIONS(1015), + [anon_sym_PERCENT_EQ] = ACTIONS(1015), + [anon_sym_CARET_EQ] = ACTIONS(1015), + [anon_sym_AMP_EQ] = ACTIONS(1015), + [anon_sym_PIPE_EQ] = ACTIONS(1015), + [anon_sym_LT_LT_EQ] = ACTIONS(1015), + [anon_sym_GT_GT_EQ] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ] = ACTIONS(1015), + [anon_sym_BANG_EQ] = ACTIONS(1015), + [anon_sym_GT] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym__] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), + [anon_sym_COMMA] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1015), + [anon_sym_DASH_GT] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_SQUOTE] = ACTIONS(1013), + [anon_sym_as] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_await] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_gen] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_impl] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1013), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_unsafe] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [sym_mutable_specifier] = ACTIONS(1013), + [sym_integer_literal] = ACTIONS(1015), + [aux_sym_string_literal_token1] = ACTIONS(1015), + [sym_char_literal] = ACTIONS(1015), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1013), + [sym_super] = ACTIONS(1013), + [sym_crate] = ACTIONS(1013), + [sym__raw_string_literal_start] = ACTIONS(1015), + [sym_float_literal] = ACTIONS(1015), + }, + [STATE(201)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39828,403 +39884,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [202] = { + [STATE(202)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_EQ_GT] = ACTIONS(1013), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_u8] = ACTIONS(1011), - [anon_sym_i8] = ACTIONS(1011), - [anon_sym_u16] = ACTIONS(1011), - [anon_sym_i16] = ACTIONS(1011), - [anon_sym_u32] = ACTIONS(1011), - [anon_sym_i32] = ACTIONS(1011), - [anon_sym_u64] = ACTIONS(1011), - [anon_sym_i64] = ACTIONS(1011), - [anon_sym_u128] = ACTIONS(1011), - [anon_sym_i128] = ACTIONS(1011), - [anon_sym_isize] = ACTIONS(1011), - [anon_sym_usize] = ACTIONS(1011), - [anon_sym_f32] = ACTIONS(1011), - [anon_sym_f64] = ACTIONS(1011), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_str] = ACTIONS(1011), - [anon_sym_char] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_SLASH] = ACTIONS(1011), - [anon_sym_PERCENT] = ACTIONS(1011), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PERCENT_EQ] = ACTIONS(1013), - [anon_sym_CARET_EQ] = ACTIONS(1013), - [anon_sym_AMP_EQ] = ACTIONS(1013), - [anon_sym_PIPE_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_EQ] = ACTIONS(1013), - [anon_sym_GT_GT_EQ] = ACTIONS(1013), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym__] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1013), - [anon_sym_DASH_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_await] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_fn] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_gen] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_impl] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_mod] = ACTIONS(1011), - [anon_sym_pub] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_trait] = ACTIONS(1011), - [anon_sym_type] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsafe] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_where] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [sym_mutable_specifier] = ACTIONS(1011), - [sym_integer_literal] = ACTIONS(1013), - [aux_sym_string_literal_token1] = ACTIONS(1013), - [sym_char_literal] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1011), - [sym_super] = ACTIONS(1011), - [sym_crate] = ACTIONS(1011), - [sym__raw_string_literal_start] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1013), - }, - [203] = { - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_RBRACK] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_u8] = ACTIONS(1023), - [anon_sym_i8] = ACTIONS(1023), - [anon_sym_u16] = ACTIONS(1023), - [anon_sym_i16] = ACTIONS(1023), - [anon_sym_u32] = ACTIONS(1023), - [anon_sym_i32] = ACTIONS(1023), - [anon_sym_u64] = ACTIONS(1023), - [anon_sym_i64] = ACTIONS(1023), - [anon_sym_u128] = ACTIONS(1023), - [anon_sym_i128] = ACTIONS(1023), - [anon_sym_isize] = ACTIONS(1023), - [anon_sym_usize] = ACTIONS(1023), - [anon_sym_f32] = ACTIONS(1023), - [anon_sym_f64] = ACTIONS(1023), - [anon_sym_bool] = ACTIONS(1023), - [anon_sym_str] = ACTIONS(1023), - [anon_sym_char] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1025), - [anon_sym_DASH_EQ] = ACTIONS(1025), - [anon_sym_STAR_EQ] = ACTIONS(1025), - [anon_sym_SLASH_EQ] = ACTIONS(1025), - [anon_sym_PERCENT_EQ] = ACTIONS(1025), - [anon_sym_CARET_EQ] = ACTIONS(1025), - [anon_sym_AMP_EQ] = ACTIONS(1025), - [anon_sym_PIPE_EQ] = ACTIONS(1025), - [anon_sym_LT_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_GT_EQ] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym__] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_DASH_GT] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_as] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_const] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_default] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1023), - [anon_sym_fn] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_gen] = ACTIONS(1023), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_impl] = ACTIONS(1023), - [anon_sym_let] = ACTIONS(1023), - [anon_sym_loop] = ACTIONS(1023), - [anon_sym_match] = ACTIONS(1023), - [anon_sym_mod] = ACTIONS(1023), - [anon_sym_pub] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_static] = ACTIONS(1023), - [anon_sym_struct] = ACTIONS(1023), - [anon_sym_trait] = ACTIONS(1023), - [anon_sym_type] = ACTIONS(1023), - [anon_sym_union] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1023), - [anon_sym_use] = ACTIONS(1023), - [anon_sym_where] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [sym_mutable_specifier] = ACTIONS(1023), - [sym_integer_literal] = ACTIONS(1025), - [aux_sym_string_literal_token1] = ACTIONS(1025), - [sym_char_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1023), - [sym_super] = ACTIONS(1023), - [sym_crate] = ACTIONS(1023), - [sym__raw_string_literal_start] = ACTIONS(1025), - [sym_float_literal] = ACTIONS(1025), - }, - [204] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1029), - [anon_sym_u8] = ACTIONS(1027), - [anon_sym_i8] = ACTIONS(1027), - [anon_sym_u16] = ACTIONS(1027), - [anon_sym_i16] = ACTIONS(1027), - [anon_sym_u32] = ACTIONS(1027), - [anon_sym_i32] = ACTIONS(1027), - [anon_sym_u64] = ACTIONS(1027), - [anon_sym_i64] = ACTIONS(1027), - [anon_sym_u128] = ACTIONS(1027), - [anon_sym_i128] = ACTIONS(1027), - [anon_sym_isize] = ACTIONS(1027), - [anon_sym_usize] = ACTIONS(1027), - [anon_sym_f32] = ACTIONS(1027), - [anon_sym_f64] = ACTIONS(1027), - [anon_sym_bool] = ACTIONS(1027), - [anon_sym_str] = ACTIONS(1027), - [anon_sym_char] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PERCENT_EQ] = ACTIONS(1029), - [anon_sym_CARET_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym_DASH_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_default] = ACTIONS(1027), - [anon_sym_enum] = ACTIONS(1027), - [anon_sym_fn] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_gen] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_impl] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_mod] = ACTIONS(1027), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1027), - [anon_sym_trait] = ACTIONS(1027), - [anon_sym_type] = ACTIONS(1027), - [anon_sym_union] = ACTIONS(1027), - [anon_sym_unsafe] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [sym_mutable_specifier] = ACTIONS(1027), - [sym_integer_literal] = ACTIONS(1029), - [aux_sym_string_literal_token1] = ACTIONS(1029), - [sym_char_literal] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1027), - [sym_super] = ACTIONS(1027), - [sym_crate] = ACTIONS(1027), - [sym__raw_string_literal_start] = ACTIONS(1029), - [sym_float_literal] = ACTIONS(1029), - }, - [205] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_enum_variant_list_repeat1] = STATE(204), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40288,173 +39999,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [206] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym__] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [sym_mutable_specifier] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, - [207] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [STATE(203)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40518,58 +40114,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [208] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [STATE(204)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40633,29 +40229,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [209] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), + [STATE(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_gen] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), + }, + [STATE(206)] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1011), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1009), + [anon_sym_i8] = ACTIONS(1009), + [anon_sym_u16] = ACTIONS(1009), + [anon_sym_i16] = ACTIONS(1009), + [anon_sym_u32] = ACTIONS(1009), + [anon_sym_i32] = ACTIONS(1009), + [anon_sym_u64] = ACTIONS(1009), + [anon_sym_i64] = ACTIONS(1009), + [anon_sym_u128] = ACTIONS(1009), + [anon_sym_i128] = ACTIONS(1009), + [anon_sym_isize] = ACTIONS(1009), + [anon_sym_usize] = ACTIONS(1009), + [anon_sym_f32] = ACTIONS(1009), + [anon_sym_f64] = ACTIONS(1009), + [anon_sym_bool] = ACTIONS(1009), + [anon_sym_str] = ACTIONS(1009), + [anon_sym_char] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_PLUS_EQ] = ACTIONS(1011), + [anon_sym_DASH_EQ] = ACTIONS(1011), + [anon_sym_STAR_EQ] = ACTIONS(1011), + [anon_sym_SLASH_EQ] = ACTIONS(1011), + [anon_sym_PERCENT_EQ] = ACTIONS(1011), + [anon_sym_CARET_EQ] = ACTIONS(1011), + [anon_sym_AMP_EQ] = ACTIONS(1011), + [anon_sym_PIPE_EQ] = ACTIONS(1011), + [anon_sym_LT_LT_EQ] = ACTIONS(1011), + [anon_sym_GT_GT_EQ] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1011), + [anon_sym_BANG_EQ] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT_EQ] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym__] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_COLON_COLON] = ACTIONS(1011), + [anon_sym_DASH_GT] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_fn] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_gen] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_impl] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_loop] = ACTIONS(1009), + [anon_sym_match] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1009), + [anon_sym_pub] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_trait] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_unsafe] = ACTIONS(1009), + [anon_sym_use] = ACTIONS(1009), + [anon_sym_where] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [sym_mutable_specifier] = ACTIONS(1009), + [sym_integer_literal] = ACTIONS(1011), + [aux_sym_string_literal_token1] = ACTIONS(1011), + [sym_char_literal] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_crate] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1011), + [sym_float_literal] = ACTIONS(1011), + }, + [STATE(207)] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_EQ_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym__] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_DASH_GT] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_gen] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_where] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [sym_mutable_specifier] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), [anon_sym_u64] = ACTIONS(1045), [anon_sym_i64] = ACTIONS(1045), [anon_sym_u128] = ACTIONS(1045), @@ -40748,9 +40919,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1047), [sym_float_literal] = ACTIONS(1047), }, - [210] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), + [STATE(211)] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1051), [anon_sym_LPAREN] = ACTIONS(1051), @@ -40863,58 +41034,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1051), [sym_float_literal] = ACTIONS(1051), }, - [211] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [STATE(212)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40978,58 +41149,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [212] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [STATE(213)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41093,291 +41264,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [213] = { - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [sym_identifier] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u128] = ACTIONS(973), - [anon_sym_i128] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_str] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PERCENT_EQ] = ACTIONS(975), - [anon_sym_CARET_EQ] = ACTIONS(975), - [anon_sym_AMP_EQ] = ACTIONS(975), - [anon_sym_PIPE_EQ] = ACTIONS(975), - [anon_sym_LT_LT_EQ] = ACTIONS(975), - [anon_sym_GT_GT_EQ] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym__] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_COLON_COLON] = ACTIONS(975), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_await] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_fn] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_gen] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_mod] = ACTIONS(973), - [anon_sym_pub] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_trait] = ACTIONS(973), - [anon_sym_type] = ACTIONS(973), - [anon_sym_union] = ACTIONS(973), - [anon_sym_unsafe] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_where] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [sym_mutable_specifier] = ACTIONS(973), - [sym_integer_literal] = ACTIONS(975), - [aux_sym_string_literal_token1] = ACTIONS(975), - [sym_char_literal] = ACTIONS(975), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_crate] = ACTIONS(973), - [sym__raw_string_literal_start] = ACTIONS(975), - [sym_float_literal] = ACTIONS(975), - }, - [214] = { + [STATE(214)] = { [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u128] = ACTIONS(931), - [anon_sym_i128] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_str] = ACTIONS(931), - [anon_sym_char] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(933), - [anon_sym_DASH_EQ] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(933), - [anon_sym_SLASH_EQ] = ACTIONS(933), - [anon_sym_PERCENT_EQ] = ACTIONS(933), - [anon_sym_CARET_EQ] = ACTIONS(933), - [anon_sym_AMP_EQ] = ACTIONS(933), - [anon_sym_PIPE_EQ] = ACTIONS(933), - [anon_sym_LT_LT_EQ] = ACTIONS(933), - [anon_sym_GT_GT_EQ] = ACTIONS(933), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(933), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym__] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_COLON_COLON] = ACTIONS(933), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(933), - [anon_sym_SQUOTE] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_async] = ACTIONS(931), - [anon_sym_await] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_gen] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_impl] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_pub] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_trait] = ACTIONS(931), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(931), - [anon_sym_unsafe] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [sym_mutable_specifier] = ACTIONS(931), - [sym_integer_literal] = ACTIONS(933), - [aux_sym_string_literal_token1] = ACTIONS(933), - [sym_char_literal] = ACTIONS(933), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(931), - [sym_super] = ACTIONS(931), - [sym_crate] = ACTIONS(931), - [sym__raw_string_literal_start] = ACTIONS(933), - [sym_float_literal] = ACTIONS(933), - }, - [215] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1418), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), + }, + [STATE(215)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2530), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -41395,12 +41452,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -41411,6 +41468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -41418,8 +41476,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1055), - [anon_sym_raw] = ACTIONS(1057), [anon_sym_yield] = ACTIONS(515), [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), @@ -41437,174 +41493,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [216] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(216)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1452), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1061), - [anon_sym_raw] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [217] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(229), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41625,13 +41565,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41665,286 +41607,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [218] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [219] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [220] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(339), + [STATE(217)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [aux_sym_tuple_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1057), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41965,15 +41681,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1079), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42007,62 +41721,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [221] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), + [STATE(218)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1452), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -42080,13 +41793,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -42096,7 +41811,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -42121,60 +41835,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [222] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(245), + [STATE(219)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1529), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1081), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42195,13 +41907,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42235,56 +41949,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [223] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), + [STATE(220)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1520), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1488), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42312,10 +42026,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_DASH_GT] = ACTIONS(1069), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42349,105 +42063,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [224] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [aux_sym_tuple_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(339), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42456,68 +42170,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [225] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1604), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1488), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -42536,14 +42250,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym_DASH_GT] = ACTIONS(1069), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -42577,60 +42291,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [226] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(217), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1522), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1452), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42651,13 +42363,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42691,56 +42405,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [227] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), + [STATE(224)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42768,10 +42482,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), + [anon_sym__] = ACTIONS(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1087), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42805,60 +42519,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [228] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [aux_sym_tuple_expression_repeat1] = STATE(224), + [STATE(225)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_let_condition] = STATE(2530), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(226)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1421), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1079), + [anon_sym_raw] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(227)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [aux_sym_tuple_expression_repeat1] = STATE(244), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42919,172 +42861,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [229] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [aux_sym_tuple_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1105), - [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_DASH] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_COLON_COLON] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_async] = ACTIONS(1129), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_gen] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1153), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1141), - [anon_sym_unsafe] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1171), - [anon_sym_move] = ACTIONS(1174), - [anon_sym_try] = ACTIONS(1177), - [sym_integer_literal] = ACTIONS(1180), - [aux_sym_string_literal_token1] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1189), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1195), - [sym__raw_string_literal_start] = ACTIONS(1198), - [sym_float_literal] = ACTIONS(1180), - }, - [230] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1518), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), + [STATE(228)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [aux_sym_tuple_expression_repeat1] = STATE(244), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1057), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43105,15 +42935,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1087), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43147,175 +42975,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [231] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1087), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [232] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1706), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), + [STATE(229)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1833), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1029), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43334,14 +43048,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1085), + [anon_sym_DOT_DOT] = ACTIONS(1077), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(1087), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43375,61 +43089,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [233] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1805), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), + [STATE(230)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1750), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1029), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43448,14 +43162,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1207), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1089), + [anon_sym_DOT_DOT] = ACTIONS(1077), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1209), + [anon_sym_DASH_GT] = ACTIONS(1091), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43489,175 +43203,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [234] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1641), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1075), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [STATE(231)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_let_condition] = STATE(2530), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [235] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1660), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), + [STATE(232)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1791), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1029), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43676,14 +43390,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1077), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1213), + [anon_sym_DASH_GT] = ACTIONS(1095), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43717,60 +43431,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [236] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [STATE(233)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [aux_sym_tuple_expression_repeat1] = STATE(244), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1097), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43831,170 +43545,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [237] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [238] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1418), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), + [STATE(234)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1421), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44022,7 +43622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -44040,8 +43640,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1217), - [anon_sym_raw] = ACTIONS(1219), + [sym_mutable_specifier] = ACTIONS(1099), + [anon_sym_raw] = ACTIONS(1101), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -44059,58 +43659,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [239] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [STATE(235)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(227), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1097), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44131,15 +43733,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1079), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44173,61 +43773,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [240] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1418), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), + [STATE(236)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2530), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -44245,33 +43846,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1221), - [anon_sym_raw] = ACTIONS(1223), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44287,62 +43887,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [241] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1466), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(238)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1029), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44360,12 +44073,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1077), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -44376,7 +44089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1021), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -44384,6 +44096,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1103), + [anon_sym_raw] = ACTIONS(1105), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -44401,61 +44115,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [242] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1688), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1488), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(240)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1421), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -44473,33 +44301,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1087), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [sym_mutable_specifier] = ACTIONS(1107), + [anon_sym_raw] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44515,58 +44343,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [243] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1526), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), + [STATE(241)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(244), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1111), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44587,15 +44417,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44629,60 +44457,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [244] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [STATE(242)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_tuple_expression_repeat1] = STATE(233), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44743,105 +44571,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [245] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [aux_sym_tuple_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(339), + [STATE(243)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1488), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1215), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1069), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44850,68 +44678,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [246] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), + [STATE(244)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [aux_sym_tuple_expression_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1129), + [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_DASH] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_LT] = ACTIONS(1141), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_COLON_COLON] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_gen] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_loop] = ACTIONS(1177), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_unsafe] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1195), + [anon_sym_move] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1204), + [aux_sym_string_literal_token1] = ACTIONS(1207), + [sym_char_literal] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1213), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1219), + [sym__raw_string_literal_start] = ACTIONS(1222), + [sym_float_literal] = ACTIONS(1204), + }, + [STATE(245)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1452), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -44930,14 +44872,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), @@ -44971,1290 +44913,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [247] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [248] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [249] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [250] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [251] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [252] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [253] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [254] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [255] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [256] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [257] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [258] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), + [STATE(246)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [aux_sym_tuple_expression_repeat1] = STATE(228), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1225), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -46315,56 +45027,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [259] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), + [STATE(247)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1517), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46392,7 +45104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46427,56 +45139,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [260] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), + [STATE(248)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46539,56 +45251,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [261] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), + [STATE(249)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46651,56 +45363,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [262] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), + [STATE(250)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46763,61 +45475,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [263] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), + [STATE(251)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -46835,12 +45547,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46875,168 +45587,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [264] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [265] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [STATE(252)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47099,56 +45699,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [266] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), + [STATE(253)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47211,168 +45811,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [267] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [268] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1513), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), + [STATE(254)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47400,7 +45888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47435,168 +45923,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [269] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [270] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [STATE(255)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47624,7 +46000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47659,56 +46035,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [271] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1521), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [STATE(256)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47736,7 +46112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47771,168 +46147,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [272] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [273] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1522), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47960,7 +46224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47995,56 +46259,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [274] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1524), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), + [STATE(258)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48072,7 +46336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48107,56 +46371,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [275] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1525), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), + [STATE(259)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48184,7 +46448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48219,172 +46483,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [276] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [277] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [STATE(260)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(487), + [sym_match_expression] = STATE(487), + [sym_while_expression] = STATE(487), + [sym_loop_expression] = STATE(487), + [sym_for_expression] = STATE(487), + [sym_const_block] = STATE(487), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3626), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(487), + [sym_async_block] = STATE(487), + [sym_gen_block] = STATE(487), + [sym_try_block] = STATE(487), + [sym_block] = STATE(487), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48408,27 +46560,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1229), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48443,56 +46595,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [278] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1506), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), + [STATE(261)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48520,7 +46672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48555,56 +46707,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [279] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [STATE(262)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48667,56 +46819,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [280] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), + [STATE(263)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48779,60 +46931,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [281] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(462), - [sym_match_expression] = STATE(462), - [sym_while_expression] = STATE(462), - [sym_loop_expression] = STATE(462), - [sym_for_expression] = STATE(462), - [sym_const_block] = STATE(462), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(462), - [sym_async_block] = STATE(462), - [sym_gen_block] = STATE(462), - [sym_try_block] = STATE(462), - [sym_block] = STATE(462), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), + [STATE(264)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(265)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48859,24 +47123,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48891,56 +47155,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [282] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [STATE(266)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49003,56 +47267,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [283] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [STATE(267)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49115,60 +47379,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [284] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), + [STATE(268)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(480), + [sym_match_expression] = STATE(480), + [sym_while_expression] = STATE(480), + [sym_loop_expression] = STATE(480), + [sym_for_expression] = STATE(480), + [sym_const_block] = STATE(480), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3626), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(480), + [sym_async_block] = STATE(480), + [sym_gen_block] = STATE(480), + [sym_try_block] = STATE(480), + [sym_block] = STATE(480), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49195,24 +47459,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1229), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49227,60 +47491,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [285] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), + [STATE(269)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49307,24 +47571,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49339,56 +47603,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [286] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), + [STATE(270)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49451,56 +47715,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [287] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [STATE(271)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49563,60 +47827,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [288] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(487), + [sym_match_expression] = STATE(487), + [sym_while_expression] = STATE(487), + [sym_loop_expression] = STATE(487), + [sym_for_expression] = STATE(487), + [sym_const_block] = STATE(487), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3626), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(487), + [sym_async_block] = STATE(487), + [sym_gen_block] = STATE(487), + [sym_try_block] = STATE(487), + [sym_block] = STATE(487), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49640,27 +47904,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1229), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49675,56 +47939,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [289] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1508), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [STATE(273)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49752,7 +48016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49787,60 +48051,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [290] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1510), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [STATE(274)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(480), + [sym_match_expression] = STATE(480), + [sym_while_expression] = STATE(480), + [sym_loop_expression] = STATE(480), + [sym_for_expression] = STATE(480), + [sym_const_block] = STATE(480), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3626), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(480), + [sym_async_block] = STATE(480), + [sym_gen_block] = STATE(480), + [sym_try_block] = STATE(480), + [sym_block] = STATE(480), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49864,27 +48128,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1229), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49899,56 +48163,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [291] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49976,7 +48240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50011,61 +48275,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [292] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), + [STATE(276)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1029), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -50083,12 +48347,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1077), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50123,103 +48387,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [293] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [STATE(277)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50228,110 +48492,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [294] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1431), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(339), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50340,110 +48604,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [295] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(339), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1617), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(280)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1475), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(281)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1620), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(282)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50452,68 +49052,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [296] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -50531,12 +49131,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50571,61 +49171,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [297] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1431), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -50643,31 +49243,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50683,103 +49283,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [298] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(339), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50788,68 +49388,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [299] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1652), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -50867,12 +49467,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50907,61 +49507,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [300] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -50979,12 +49579,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51019,61 +49619,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [301] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1640), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -51091,12 +49691,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51131,61 +49731,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [302] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -51203,12 +49803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51243,61 +49843,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [303] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1519), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -51315,31 +50027,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(292)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(293)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1508), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(294)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(295)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1475), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51348,110 +50508,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [304] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(467), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51460,110 +50620,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [305] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1605), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(467), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51572,110 +50732,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [306] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(467), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1512), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51684,110 +50844,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [307] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(467), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1513), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51796,110 +50956,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [308] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(467), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1514), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51908,110 +51068,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [309] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(467), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1515), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52020,110 +51180,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [310] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1600), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(467), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(302)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52132,63 +51292,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [311] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1518), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52216,7 +51376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52251,56 +51411,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [312] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52328,7 +51488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52363,61 +51523,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [313] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52435,31 +51595,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52475,56 +51635,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [314] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [STATE(306)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1519), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52587,61 +51747,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [315] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52659,12 +51819,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52699,215 +51859,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [316] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1475), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [317] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(339), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52916,68 +52076,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [318] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [STATE(310)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52995,12 +52155,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(311)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(312)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53035,61 +52419,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [319] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1431), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(314)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -53107,12 +52603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53147,173 +52643,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [320] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [321] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -53331,12 +52715,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53371,61 +52755,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [322] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -53443,12 +52827,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53483,61 +52867,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [323] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1709), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), + [STATE(317)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -53555,31 +52939,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53595,61 +52979,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [324] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -53667,12 +53051,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53707,103 +53091,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [325] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(467), + [STATE(319)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53812,628 +53196,1412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(320)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(321)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(322)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(323)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1662), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(324)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(325)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [326] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [327] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [328] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [329] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [330] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(331)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [331] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -54451,12 +54619,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1249), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54491,278 +54659,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [332] = { - [sym_else_clause] = STATE(375), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_macro_rules_BANG] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_u8] = ACTIONS(1253), - [anon_sym_i8] = ACTIONS(1253), - [anon_sym_u16] = ACTIONS(1253), - [anon_sym_i16] = ACTIONS(1253), - [anon_sym_u32] = ACTIONS(1253), - [anon_sym_i32] = ACTIONS(1253), - [anon_sym_u64] = ACTIONS(1253), - [anon_sym_i64] = ACTIONS(1253), - [anon_sym_u128] = ACTIONS(1253), - [anon_sym_i128] = ACTIONS(1253), - [anon_sym_isize] = ACTIONS(1253), - [anon_sym_usize] = ACTIONS(1253), - [anon_sym_f32] = ACTIONS(1253), - [anon_sym_f64] = ACTIONS(1253), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_str] = ACTIONS(1253), - [anon_sym_char] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_gen] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_impl] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_pub] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_trait] = ACTIONS(1253), - [anon_sym_type] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_unsafe] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1253), - [anon_sym_move] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [sym_integer_literal] = ACTIONS(1251), - [aux_sym_string_literal_token1] = ACTIONS(1251), - [sym_char_literal] = ACTIONS(1251), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1253), - [sym_super] = ACTIONS(1253), - [sym_crate] = ACTIONS(1253), - [sym_metavariable] = ACTIONS(1251), - [sym__raw_string_literal_start] = ACTIONS(1251), - [sym_float_literal] = ACTIONS(1251), - }, - [333] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(333)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [334] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1415), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), [sym_identifier] = ACTIONS(339), @@ -54792,231 +54848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [335] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [336] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -55036,119 +54868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [337] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(462), - [sym_match_expression] = STATE(462), - [sym_while_expression] = STATE(462), - [sym_loop_expression] = STATE(462), - [sym_for_expression] = STATE(462), - [sym_const_block] = STATE(462), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(462), - [sym_async_block] = STATE(462), - [sym_gen_block] = STATE(462), - [sym_try_block] = STATE(462), - [sym_block] = STATE(462), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55163,61 +54883,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [338] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), + [STATE(335)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -55235,31 +54955,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55275,103 +54995,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [339] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(339), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55380,110 +55100,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [340] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(339), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(338)] = { + [sym_bracketed_type] = STATE(3548), + [sym_generic_function] = STATE(1857), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1610), + [sym__expression] = STATE(1686), + [sym_macro_invocation] = STATE(1682), + [sym_scoped_identifier] = STATE(1574), + [sym_scoped_type_identifier_in_expression_position] = STATE(3243), + [sym_range_expression] = STATE(1774), + [sym_unary_expression] = STATE(1857), + [sym_try_expression] = STATE(1857), + [sym_reference_expression] = STATE(1857), + [sym_binary_expression] = STATE(1857), + [sym_assignment_expression] = STATE(1857), + [sym_compound_assignment_expr] = STATE(1857), + [sym_type_cast_expression] = STATE(1857), + [sym_return_expression] = STATE(1857), + [sym_yield_expression] = STATE(1857), + [sym_call_expression] = STATE(1857), + [sym_array_expression] = STATE(1857), + [sym_parenthesized_expression] = STATE(1857), + [sym_tuple_expression] = STATE(1857), + [sym_unit_expression] = STATE(1857), + [sym_struct_expression] = STATE(1857), + [sym_if_expression] = STATE(1857), + [sym_match_expression] = STATE(1857), + [sym_while_expression] = STATE(1857), + [sym_loop_expression] = STATE(1857), + [sym_for_expression] = STATE(1857), + [sym_const_block] = STATE(1857), + [sym_closure_expression] = STATE(1857), + [sym_closure_parameters] = STATE(229), + [sym_label] = STATE(3632), + [sym_break_expression] = STATE(1857), + [sym_continue_expression] = STATE(1857), + [sym_index_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_field_expression] = STATE(1611), + [sym_unsafe_block] = STATE(1857), + [sym_async_block] = STATE(1857), + [sym_gen_block] = STATE(1857), + [sym_try_block] = STATE(1857), + [sym_block] = STATE(1857), + [sym__literal] = STATE(1857), + [sym_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(339)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55492,110 +55436,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [341] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(339), + [STATE(340)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55604,61 +55548,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [342] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(341)] = { + [sym_else_clause] = STATE(381), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_macro_rules_BANG] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_u8] = ACTIONS(1253), + [anon_sym_i8] = ACTIONS(1253), + [anon_sym_u16] = ACTIONS(1253), + [anon_sym_i16] = ACTIONS(1253), + [anon_sym_u32] = ACTIONS(1253), + [anon_sym_i32] = ACTIONS(1253), + [anon_sym_u64] = ACTIONS(1253), + [anon_sym_i64] = ACTIONS(1253), + [anon_sym_u128] = ACTIONS(1253), + [anon_sym_i128] = ACTIONS(1253), + [anon_sym_isize] = ACTIONS(1253), + [anon_sym_usize] = ACTIONS(1253), + [anon_sym_f32] = ACTIONS(1253), + [anon_sym_f64] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_gen] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_impl] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_pub] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_trait] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1253), + [anon_sym_move] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1251), + [aux_sym_string_literal_token1] = ACTIONS(1251), + [sym_char_literal] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1253), + [sym_super] = ACTIONS(1253), + [sym_crate] = ACTIONS(1253), + [sym_metavariable] = ACTIONS(1251), + [sym__raw_string_literal_start] = ACTIONS(1251), + [sym_float_literal] = ACTIONS(1251), + }, + [STATE(342)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), [sym_identifier] = ACTIONS(339), @@ -55723,61 +55779,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [343] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1564), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -55795,31 +55851,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55835,54 +55891,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [344] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(339), @@ -55947,56 +56003,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [345] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(346)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56059,56 +56227,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [346] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56171,56 +56339,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [347] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(349)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56283,56 +56563,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [348] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), + [STATE(350)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56395,56 +56675,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [349] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), + [STATE(351)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56507,56 +56787,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [350] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), + [STATE(352)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56619,56 +56899,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [351] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), + [STATE(353)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56731,56 +57011,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [352] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), + [STATE(354)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56843,61 +57123,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [353] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), + [STATE(355)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(356)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -56915,12 +57307,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -56955,56 +57347,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [354] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57067,56 +57459,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [355] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57179,56 +57571,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [356] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), + [STATE(359)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57291,56 +57683,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [357] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [STATE(360)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57403,56 +57795,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [358] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [STATE(361)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57515,61 +57907,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [359] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), + [STATE(362)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -57587,12 +57979,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1249), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -57627,173 +58019,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [360] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [361] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1596), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -57811,12 +58091,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -57851,56 +58131,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [362] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2887), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57963,61 +58243,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [363] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), + [STATE(365)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58035,12 +58315,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58075,61 +58355,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [364] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1071), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58147,12 +58427,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1249), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58187,173 +58467,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [365] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [366] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58371,12 +58539,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58411,173 +58579,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [367] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [368] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(222), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58595,12 +58651,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(929), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58635,1334 +58691,1340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [369] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [STATE(369)] = { + [sym_bracketed_type] = STATE(3426), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2918), + [sym__expression_except_range] = STATE(1288), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1430), + [sym_scoped_identifier] = STATE(1552), + [sym_scoped_type_identifier_in_expression_position] = STATE(3323), + [sym_range_expression] = STATE(1474), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(243), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1449), + [sym_raw_string_literal] = STATE(1449), + [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [370] = { + [STATE(370)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2806), + [sym_variadic_parameter] = STATE(2806), + [sym_parameter] = STATE(2806), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2723), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_macro_rules_BANG] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_QMARK] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1257), - [anon_sym_DASH_EQ] = ACTIONS(1257), - [anon_sym_STAR_EQ] = ACTIONS(1257), - [anon_sym_SLASH_EQ] = ACTIONS(1257), - [anon_sym_PERCENT_EQ] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1257), - [anon_sym_AMP_EQ] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1257), - [anon_sym_LT_LT_EQ] = ACTIONS(1257), - [anon_sym_GT_GT_EQ] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_fn] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_pub] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_trait] = ACTIONS(1259), - [anon_sym_type] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_yield] = ACTIONS(1259), - [anon_sym_move] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym__raw_string_literal_start] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), - }, - [371] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(371)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2941), + [sym_variadic_parameter] = STATE(2941), + [sym_parameter] = STATE(2941), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2635), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2419), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_macro_rules_BANG] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_PERCENT] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_BANG] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1261), - [anon_sym_PIPE_PIPE] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [anon_sym_PLUS_EQ] = ACTIONS(1261), - [anon_sym_DASH_EQ] = ACTIONS(1261), - [anon_sym_STAR_EQ] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1261), - [anon_sym_PERCENT_EQ] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1261), - [anon_sym_AMP_EQ] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1261), - [anon_sym_LT_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_GT_EQ] = ACTIONS(1261), - [anon_sym_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_DOT_DOT] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_gen] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_unsafe] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_move] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym__raw_string_literal_start] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), - }, - [372] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(372)] = { [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_macro_rules_BANG] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1267), - [anon_sym_PERCENT] = ACTIONS(1267), - [anon_sym_CARET] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_LT_LT] = ACTIONS(1267), - [anon_sym_GT_GT] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1265), - [anon_sym_DASH_EQ] = ACTIONS(1265), - [anon_sym_STAR_EQ] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1265), - [anon_sym_PERCENT_EQ] = ACTIONS(1265), - [anon_sym_CARET_EQ] = ACTIONS(1265), - [anon_sym_AMP_EQ] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1265), - [anon_sym_LT_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_GT_EQ] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_async] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_gen] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_impl] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_loop] = ACTIONS(1267), - [anon_sym_match] = ACTIONS(1267), - [anon_sym_mod] = ACTIONS(1267), - [anon_sym_pub] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_trait] = ACTIONS(1267), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_unsafe] = ACTIONS(1267), - [anon_sym_use] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym_else] = ACTIONS(1267), - [anon_sym_yield] = ACTIONS(1267), - [anon_sym_move] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym__raw_string_literal_start] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), - }, - [373] = { + [ts_builtin_sym_end] = ACTIONS(1355), + [sym_identifier] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_macro_rules_BANG] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_u8] = ACTIONS(1357), + [anon_sym_i8] = ACTIONS(1357), + [anon_sym_u16] = ACTIONS(1357), + [anon_sym_i16] = ACTIONS(1357), + [anon_sym_u32] = ACTIONS(1357), + [anon_sym_i32] = ACTIONS(1357), + [anon_sym_u64] = ACTIONS(1357), + [anon_sym_i64] = ACTIONS(1357), + [anon_sym_u128] = ACTIONS(1357), + [anon_sym_i128] = ACTIONS(1357), + [anon_sym_isize] = ACTIONS(1357), + [anon_sym_usize] = ACTIONS(1357), + [anon_sym_f32] = ACTIONS(1357), + [anon_sym_f64] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_str] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1357), + [anon_sym_PERCENT] = ACTIONS(1357), + [anon_sym_CARET] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(1357), + [anon_sym_GT_GT] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1355), + [anon_sym_DASH_EQ] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1355), + [anon_sym_SLASH_EQ] = ACTIONS(1355), + [anon_sym_PERCENT_EQ] = ACTIONS(1355), + [anon_sym_CARET_EQ] = ACTIONS(1355), + [anon_sym_AMP_EQ] = ACTIONS(1355), + [anon_sym_PIPE_EQ] = ACTIONS(1355), + [anon_sym_LT_LT_EQ] = ACTIONS(1355), + [anon_sym_GT_GT_EQ] = ACTIONS(1355), + [anon_sym_EQ] = ACTIONS(1357), + [anon_sym_EQ_EQ] = ACTIONS(1355), + [anon_sym_BANG_EQ] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1357), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1355), + [anon_sym_LT_EQ] = ACTIONS(1355), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1355), + [anon_sym_COLON_COLON] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1357), + [anon_sym_async] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_gen] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_impl] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_pub] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_trait] = ACTIONS(1357), + [anon_sym_type] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_unsafe] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_yield] = ACTIONS(1357), + [anon_sym_move] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1355), + [aux_sym_string_literal_token1] = ACTIONS(1355), + [sym_char_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1357), + [sym_crate] = ACTIONS(1357), + [sym_metavariable] = ACTIONS(1355), + [sym__raw_string_literal_start] = ACTIONS(1355), + [sym_float_literal] = ACTIONS(1355), + }, + [STATE(373)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2941), + [sym_variadic_parameter] = STATE(2941), + [sym_parameter] = STATE(2941), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2635), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2419), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_macro_rules_BANG] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1271), - [anon_sym_PERCENT] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_PIPE_PIPE] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1271), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_PLUS_EQ] = ACTIONS(1269), - [anon_sym_DASH_EQ] = ACTIONS(1269), - [anon_sym_STAR_EQ] = ACTIONS(1269), - [anon_sym_SLASH_EQ] = ACTIONS(1269), - [anon_sym_PERCENT_EQ] = ACTIONS(1269), - [anon_sym_CARET_EQ] = ACTIONS(1269), - [anon_sym_AMP_EQ] = ACTIONS(1269), - [anon_sym_PIPE_EQ] = ACTIONS(1269), - [anon_sym_LT_LT_EQ] = ACTIONS(1269), - [anon_sym_GT_GT_EQ] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_as] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_gen] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_impl] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_loop] = ACTIONS(1271), - [anon_sym_match] = ACTIONS(1271), - [anon_sym_mod] = ACTIONS(1271), - [anon_sym_pub] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_trait] = ACTIONS(1271), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1271), - [anon_sym_use] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_yield] = ACTIONS(1271), - [anon_sym_move] = ACTIONS(1271), - [anon_sym_try] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), - }, - [374] = { + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(374)] = { [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_macro_rules_BANG] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_AMP_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_GT_EQ] = ACTIONS(1273), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_COLON_COLON] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1275), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_fn] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [anon_sym_mod] = ACTIONS(1275), - [anon_sym_pub] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_trait] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_yield] = ACTIONS(1275), - [anon_sym_move] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1273), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1275), - [anon_sym_false] = ACTIONS(1275), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_crate] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1273), - [sym__raw_string_literal_start] = ACTIONS(1273), - [sym_float_literal] = ACTIONS(1273), - }, - [375] = { + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_macro_rules_BANG] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_u8] = ACTIONS(1365), + [anon_sym_i8] = ACTIONS(1365), + [anon_sym_u16] = ACTIONS(1365), + [anon_sym_i16] = ACTIONS(1365), + [anon_sym_u32] = ACTIONS(1365), + [anon_sym_i32] = ACTIONS(1365), + [anon_sym_u64] = ACTIONS(1365), + [anon_sym_i64] = ACTIONS(1365), + [anon_sym_u128] = ACTIONS(1365), + [anon_sym_i128] = ACTIONS(1365), + [anon_sym_isize] = ACTIONS(1365), + [anon_sym_usize] = ACTIONS(1365), + [anon_sym_f32] = ACTIONS(1365), + [anon_sym_f64] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_char] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1365), + [anon_sym_GT_GT] = ACTIONS(1365), + [anon_sym_PLUS_EQ] = ACTIONS(1363), + [anon_sym_DASH_EQ] = ACTIONS(1363), + [anon_sym_STAR_EQ] = ACTIONS(1363), + [anon_sym_SLASH_EQ] = ACTIONS(1363), + [anon_sym_PERCENT_EQ] = ACTIONS(1363), + [anon_sym_CARET_EQ] = ACTIONS(1363), + [anon_sym_AMP_EQ] = ACTIONS(1363), + [anon_sym_PIPE_EQ] = ACTIONS(1363), + [anon_sym_LT_LT_EQ] = ACTIONS(1363), + [anon_sym_GT_GT_EQ] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1363), + [anon_sym_BANG_EQ] = ACTIONS(1363), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1363), + [anon_sym_LT_EQ] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_gen] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_impl] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_loop] = ACTIONS(1365), + [anon_sym_match] = ACTIONS(1365), + [anon_sym_mod] = ACTIONS(1365), + [anon_sym_pub] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_trait] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_unsafe] = ACTIONS(1365), + [anon_sym_use] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_move] = ACTIONS(1365), + [anon_sym_try] = ACTIONS(1365), + [sym_integer_literal] = ACTIONS(1363), + [aux_sym_string_literal_token1] = ACTIONS(1363), + [sym_char_literal] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1365), + [anon_sym_false] = ACTIONS(1365), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_crate] = ACTIONS(1365), + [sym_metavariable] = ACTIONS(1363), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1363), + }, + [STATE(375)] = { [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_macro_rules_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_u8] = ACTIONS(1279), - [anon_sym_i8] = ACTIONS(1279), - [anon_sym_u16] = ACTIONS(1279), - [anon_sym_i16] = ACTIONS(1279), - [anon_sym_u32] = ACTIONS(1279), - [anon_sym_i32] = ACTIONS(1279), - [anon_sym_u64] = ACTIONS(1279), - [anon_sym_i64] = ACTIONS(1279), - [anon_sym_u128] = ACTIONS(1279), - [anon_sym_i128] = ACTIONS(1279), - [anon_sym_isize] = ACTIONS(1279), - [anon_sym_usize] = ACTIONS(1279), - [anon_sym_f32] = ACTIONS(1279), - [anon_sym_f64] = ACTIONS(1279), - [anon_sym_bool] = ACTIONS(1279), - [anon_sym_str] = ACTIONS(1279), - [anon_sym_char] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_LT_LT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_CARET_EQ] = ACTIONS(1277), - [anon_sym_AMP_EQ] = ACTIONS(1277), - [anon_sym_PIPE_EQ] = ACTIONS(1277), - [anon_sym_LT_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_GT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ] = ACTIONS(1277), - [anon_sym_BANG_EQ] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1277), - [anon_sym_POUND] = ACTIONS(1277), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_as] = ACTIONS(1279), - [anon_sym_async] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_fn] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_gen] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_impl] = ACTIONS(1279), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_loop] = ACTIONS(1279), - [anon_sym_match] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_pub] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_trait] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_unsafe] = ACTIONS(1279), - [anon_sym_use] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_yield] = ACTIONS(1279), - [anon_sym_move] = ACTIONS(1279), - [anon_sym_try] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [aux_sym_string_literal_token1] = ACTIONS(1277), - [sym_char_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(1279), - [anon_sym_false] = ACTIONS(1279), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1279), - [sym_crate] = ACTIONS(1279), - [sym_metavariable] = ACTIONS(1277), - [sym__raw_string_literal_start] = ACTIONS(1277), - [sym_float_literal] = ACTIONS(1277), - }, - [376] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_macro_rules_BANG] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1369), + [anon_sym_i8] = ACTIONS(1369), + [anon_sym_u16] = ACTIONS(1369), + [anon_sym_i16] = ACTIONS(1369), + [anon_sym_u32] = ACTIONS(1369), + [anon_sym_i32] = ACTIONS(1369), + [anon_sym_u64] = ACTIONS(1369), + [anon_sym_i64] = ACTIONS(1369), + [anon_sym_u128] = ACTIONS(1369), + [anon_sym_i128] = ACTIONS(1369), + [anon_sym_isize] = ACTIONS(1369), + [anon_sym_usize] = ACTIONS(1369), + [anon_sym_f32] = ACTIONS(1369), + [anon_sym_f64] = ACTIONS(1369), + [anon_sym_bool] = ACTIONS(1369), + [anon_sym_str] = ACTIONS(1369), + [anon_sym_char] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_LT_LT] = ACTIONS(1369), + [anon_sym_GT_GT] = ACTIONS(1369), + [anon_sym_PLUS_EQ] = ACTIONS(1367), + [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_STAR_EQ] = ACTIONS(1367), + [anon_sym_SLASH_EQ] = ACTIONS(1367), + [anon_sym_PERCENT_EQ] = ACTIONS(1367), + [anon_sym_CARET_EQ] = ACTIONS(1367), + [anon_sym_AMP_EQ] = ACTIONS(1367), + [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_LT_LT_EQ] = ACTIONS(1367), + [anon_sym_GT_GT_EQ] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_gen] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_impl] = ACTIONS(1369), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_loop] = ACTIONS(1369), + [anon_sym_match] = ACTIONS(1369), + [anon_sym_mod] = ACTIONS(1369), + [anon_sym_pub] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_trait] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_unsafe] = ACTIONS(1369), + [anon_sym_use] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1369), + [anon_sym_yield] = ACTIONS(1369), + [anon_sym_move] = ACTIONS(1369), + [anon_sym_try] = ACTIONS(1369), + [sym_integer_literal] = ACTIONS(1367), + [aux_sym_string_literal_token1] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1369), + [anon_sym_false] = ACTIONS(1369), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1369), + [sym_super] = ACTIONS(1369), + [sym_crate] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym__raw_string_literal_start] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), + }, + [STATE(376)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2803), + [sym_variadic_parameter] = STATE(2803), + [sym_parameter] = STATE(2803), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2562), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [377] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1373), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(377)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2941), + [sym_variadic_parameter] = STATE(2941), + [sym_parameter] = STATE(2941), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2635), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2419), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_macro_rules_BANG] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1355), - [anon_sym_i8] = ACTIONS(1355), - [anon_sym_u16] = ACTIONS(1355), - [anon_sym_i16] = ACTIONS(1355), - [anon_sym_u32] = ACTIONS(1355), - [anon_sym_i32] = ACTIONS(1355), - [anon_sym_u64] = ACTIONS(1355), - [anon_sym_i64] = ACTIONS(1355), - [anon_sym_u128] = ACTIONS(1355), - [anon_sym_i128] = ACTIONS(1355), - [anon_sym_isize] = ACTIONS(1355), - [anon_sym_usize] = ACTIONS(1355), - [anon_sym_f32] = ACTIONS(1355), - [anon_sym_f64] = ACTIONS(1355), - [anon_sym_bool] = ACTIONS(1355), - [anon_sym_str] = ACTIONS(1355), - [anon_sym_char] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1355), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1353), - [anon_sym_POUND] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_fn] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1355), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_loop] = ACTIONS(1355), - [anon_sym_match] = ACTIONS(1355), - [anon_sym_mod] = ACTIONS(1355), - [anon_sym_pub] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_trait] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1355), - [anon_sym_use] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym_yield] = ACTIONS(1355), - [anon_sym_move] = ACTIONS(1355), - [anon_sym_try] = ACTIONS(1355), - [sym_integer_literal] = ACTIONS(1353), - [aux_sym_string_literal_token1] = ACTIONS(1353), - [sym_char_literal] = ACTIONS(1353), - [anon_sym_true] = ACTIONS(1355), - [anon_sym_false] = ACTIONS(1355), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1355), - [sym_super] = ACTIONS(1355), - [sym_crate] = ACTIONS(1355), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1337), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1353), - [sym_float_literal] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), }, - [378] = { + [STATE(378)] = { [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(1361), - [sym_identifier] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_macro_rules_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_u8] = ACTIONS(1363), - [anon_sym_i8] = ACTIONS(1363), - [anon_sym_u16] = ACTIONS(1363), - [anon_sym_i16] = ACTIONS(1363), - [anon_sym_u32] = ACTIONS(1363), - [anon_sym_i32] = ACTIONS(1363), - [anon_sym_u64] = ACTIONS(1363), - [anon_sym_i64] = ACTIONS(1363), - [anon_sym_u128] = ACTIONS(1363), - [anon_sym_i128] = ACTIONS(1363), - [anon_sym_isize] = ACTIONS(1363), - [anon_sym_usize] = ACTIONS(1363), - [anon_sym_f32] = ACTIONS(1363), - [anon_sym_f64] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_str] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1363), - [anon_sym_PERCENT] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1361), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_LT_LT] = ACTIONS(1363), - [anon_sym_GT_GT] = ACTIONS(1363), - [anon_sym_PLUS_EQ] = ACTIONS(1361), - [anon_sym_DASH_EQ] = ACTIONS(1361), - [anon_sym_STAR_EQ] = ACTIONS(1361), - [anon_sym_SLASH_EQ] = ACTIONS(1361), - [anon_sym_PERCENT_EQ] = ACTIONS(1361), - [anon_sym_CARET_EQ] = ACTIONS(1361), - [anon_sym_AMP_EQ] = ACTIONS(1361), - [anon_sym_PIPE_EQ] = ACTIONS(1361), - [anon_sym_LT_LT_EQ] = ACTIONS(1361), - [anon_sym_GT_GT_EQ] = ACTIONS(1361), - [anon_sym_EQ] = ACTIONS(1363), - [anon_sym_EQ_EQ] = ACTIONS(1361), - [anon_sym_BANG_EQ] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_GT_EQ] = ACTIONS(1361), - [anon_sym_LT_EQ] = ACTIONS(1361), - [anon_sym_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_as] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_gen] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_impl] = ACTIONS(1363), - [anon_sym_let] = ACTIONS(1363), - [anon_sym_loop] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_mod] = ACTIONS(1363), - [anon_sym_pub] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_trait] = ACTIONS(1363), - [anon_sym_type] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_unsafe] = ACTIONS(1363), - [anon_sym_use] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_move] = ACTIONS(1363), - [anon_sym_try] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1361), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1361), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1363), - [sym_super] = ACTIONS(1363), - [sym_crate] = ACTIONS(1363), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1361), - [sym_float_literal] = ACTIONS(1361), - }, - [379] = { + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_macro_rules_BANG] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_u8] = ACTIONS(1383), + [anon_sym_i8] = ACTIONS(1383), + [anon_sym_u16] = ACTIONS(1383), + [anon_sym_i16] = ACTIONS(1383), + [anon_sym_u32] = ACTIONS(1383), + [anon_sym_i32] = ACTIONS(1383), + [anon_sym_u64] = ACTIONS(1383), + [anon_sym_i64] = ACTIONS(1383), + [anon_sym_u128] = ACTIONS(1383), + [anon_sym_i128] = ACTIONS(1383), + [anon_sym_isize] = ACTIONS(1383), + [anon_sym_usize] = ACTIONS(1383), + [anon_sym_f32] = ACTIONS(1383), + [anon_sym_f64] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_str] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_PLUS_EQ] = ACTIONS(1381), + [anon_sym_DASH_EQ] = ACTIONS(1381), + [anon_sym_STAR_EQ] = ACTIONS(1381), + [anon_sym_SLASH_EQ] = ACTIONS(1381), + [anon_sym_PERCENT_EQ] = ACTIONS(1381), + [anon_sym_CARET_EQ] = ACTIONS(1381), + [anon_sym_AMP_EQ] = ACTIONS(1381), + [anon_sym_PIPE_EQ] = ACTIONS(1381), + [anon_sym_LT_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_GT_EQ] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_as] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_gen] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_impl] = ACTIONS(1383), + [anon_sym_let] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1383), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_mod] = ACTIONS(1383), + [anon_sym_pub] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_trait] = ACTIONS(1383), + [anon_sym_type] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_unsafe] = ACTIONS(1383), + [anon_sym_use] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1381), + [aux_sym_string_literal_token1] = ACTIONS(1381), + [sym_char_literal] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_crate] = ACTIONS(1383), + [sym_metavariable] = ACTIONS(1381), + [sym__raw_string_literal_start] = ACTIONS(1381), + [sym_float_literal] = ACTIONS(1381), + }, + [STATE(379)] = { [sym_line_comment] = STATE(379), [sym_block_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_identifier] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_macro_rules_BANG] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_u8] = ACTIONS(1367), - [anon_sym_i8] = ACTIONS(1367), - [anon_sym_u16] = ACTIONS(1367), - [anon_sym_i16] = ACTIONS(1367), - [anon_sym_u32] = ACTIONS(1367), - [anon_sym_i32] = ACTIONS(1367), - [anon_sym_u64] = ACTIONS(1367), - [anon_sym_i64] = ACTIONS(1367), - [anon_sym_u128] = ACTIONS(1367), - [anon_sym_i128] = ACTIONS(1367), - [anon_sym_isize] = ACTIONS(1367), - [anon_sym_usize] = ACTIONS(1367), - [anon_sym_f32] = ACTIONS(1367), - [anon_sym_f64] = ACTIONS(1367), - [anon_sym_bool] = ACTIONS(1367), - [anon_sym_str] = ACTIONS(1367), - [anon_sym_char] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1365), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_POUND] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_as] = ACTIONS(1367), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_gen] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_impl] = ACTIONS(1367), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_loop] = ACTIONS(1367), - [anon_sym_match] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_pub] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_trait] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_unsafe] = ACTIONS(1367), - [anon_sym_use] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym_yield] = ACTIONS(1367), - [anon_sym_move] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1367), - [sym_integer_literal] = ACTIONS(1365), - [aux_sym_string_literal_token1] = ACTIONS(1365), - [sym_char_literal] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1367), - [sym_super] = ACTIONS(1367), - [sym_crate] = ACTIONS(1367), - [sym_metavariable] = ACTIONS(1365), - [sym__raw_string_literal_start] = ACTIONS(1365), - [sym_float_literal] = ACTIONS(1365), - }, - [380] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2431), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_macro_rules_BANG] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1385), + [anon_sym_u8] = ACTIONS(1387), + [anon_sym_i8] = ACTIONS(1387), + [anon_sym_u16] = ACTIONS(1387), + [anon_sym_i16] = ACTIONS(1387), + [anon_sym_u32] = ACTIONS(1387), + [anon_sym_i32] = ACTIONS(1387), + [anon_sym_u64] = ACTIONS(1387), + [anon_sym_i64] = ACTIONS(1387), + [anon_sym_u128] = ACTIONS(1387), + [anon_sym_i128] = ACTIONS(1387), + [anon_sym_isize] = ACTIONS(1387), + [anon_sym_usize] = ACTIONS(1387), + [anon_sym_f32] = ACTIONS(1387), + [anon_sym_f64] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_str] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_PERCENT] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_PIPE_PIPE] = ACTIONS(1385), + [anon_sym_LT_LT] = ACTIONS(1387), + [anon_sym_GT_GT] = ACTIONS(1387), + [anon_sym_PLUS_EQ] = ACTIONS(1385), + [anon_sym_DASH_EQ] = ACTIONS(1385), + [anon_sym_STAR_EQ] = ACTIONS(1385), + [anon_sym_SLASH_EQ] = ACTIONS(1385), + [anon_sym_PERCENT_EQ] = ACTIONS(1385), + [anon_sym_CARET_EQ] = ACTIONS(1385), + [anon_sym_AMP_EQ] = ACTIONS(1385), + [anon_sym_PIPE_EQ] = ACTIONS(1385), + [anon_sym_LT_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_GT_EQ] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1385), + [anon_sym_COLON_COLON] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_impl] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_pub] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_trait] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [381] = { + [anon_sym_unsafe] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_move] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1385), + [aux_sym_string_literal_token1] = ACTIONS(1385), + [sym_char_literal] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_crate] = ACTIONS(1387), + [sym_metavariable] = ACTIONS(1385), + [sym__raw_string_literal_start] = ACTIONS(1385), + [sym_float_literal] = ACTIONS(1385), + }, + [STATE(380)] = { + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2941), + [sym_variadic_parameter] = STATE(2941), + [sym_parameter] = STATE(2941), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2635), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(381)] = { [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), [ts_builtin_sym_end] = ACTIONS(1395), @@ -60072,7 +60134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1395), [sym_float_literal] = ACTIONS(1395), }, - [382] = { + [STATE(382)] = { [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1399), @@ -60182,7 +60244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1399), [sym_float_literal] = ACTIONS(1399), }, - [383] = { + [STATE(383)] = { [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), [ts_builtin_sym_end] = ACTIONS(1403), @@ -60292,119 +60354,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1403), [sym_float_literal] = ACTIONS(1403), }, - [384] = { + [STATE(384)] = { [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_macro_rules_BANG] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_extern] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1049), - [anon_sym_move] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1051), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), - }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), [ts_builtin_sym_end] = ACTIONS(1407), [sym_identifier] = ACTIONS(1409), [anon_sym_SEMI] = ACTIONS(1407), @@ -60512,557 +60464,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1407), [sym_float_literal] = ACTIONS(1407), }, - [386] = { + [STATE(385)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(386)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_macro_rules_BANG] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_PERCENT] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_GT_GT] = ACTIONS(1413), - [anon_sym_PLUS_EQ] = ACTIONS(1411), - [anon_sym_DASH_EQ] = ACTIONS(1411), - [anon_sym_STAR_EQ] = ACTIONS(1411), - [anon_sym_SLASH_EQ] = ACTIONS(1411), - [anon_sym_PERCENT_EQ] = ACTIONS(1411), - [anon_sym_CARET_EQ] = ACTIONS(1411), - [anon_sym_AMP_EQ] = ACTIONS(1411), - [anon_sym_PIPE_EQ] = ACTIONS(1411), - [anon_sym_LT_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_GT_EQ] = ACTIONS(1411), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_gen] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_impl] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_mod] = ACTIONS(1413), - [anon_sym_pub] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_trait] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_unsafe] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_move] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym__raw_string_literal_start] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), - }, - [387] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(387)] = { [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_macro_rules_BANG] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1415), - [anon_sym_u8] = ACTIONS(1417), - [anon_sym_i8] = ACTIONS(1417), - [anon_sym_u16] = ACTIONS(1417), - [anon_sym_i16] = ACTIONS(1417), - [anon_sym_u32] = ACTIONS(1417), - [anon_sym_i32] = ACTIONS(1417), - [anon_sym_u64] = ACTIONS(1417), - [anon_sym_i64] = ACTIONS(1417), - [anon_sym_u128] = ACTIONS(1417), - [anon_sym_i128] = ACTIONS(1417), - [anon_sym_isize] = ACTIONS(1417), - [anon_sym_usize] = ACTIONS(1417), - [anon_sym_f32] = ACTIONS(1417), - [anon_sym_f64] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_str] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_SLASH] = ACTIONS(1417), - [anon_sym_PERCENT] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1415), - [anon_sym_PIPE_PIPE] = ACTIONS(1415), - [anon_sym_LT_LT] = ACTIONS(1417), - [anon_sym_GT_GT] = ACTIONS(1417), - [anon_sym_PLUS_EQ] = ACTIONS(1415), - [anon_sym_DASH_EQ] = ACTIONS(1415), - [anon_sym_STAR_EQ] = ACTIONS(1415), - [anon_sym_SLASH_EQ] = ACTIONS(1415), - [anon_sym_PERCENT_EQ] = ACTIONS(1415), - [anon_sym_CARET_EQ] = ACTIONS(1415), - [anon_sym_AMP_EQ] = ACTIONS(1415), - [anon_sym_PIPE_EQ] = ACTIONS(1415), - [anon_sym_LT_LT_EQ] = ACTIONS(1415), - [anon_sym_GT_GT_EQ] = ACTIONS(1415), - [anon_sym_EQ] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1415), - [anon_sym_BANG_EQ] = ACTIONS(1415), - [anon_sym_GT] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1417), - [anon_sym_GT_EQ] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1415), - [anon_sym_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_as] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_gen] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_impl] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_mod] = ACTIONS(1417), - [anon_sym_pub] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_trait] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_unsafe] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_move] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1415), - [aux_sym_string_literal_token1] = ACTIONS(1415), - [sym_char_literal] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_crate] = ACTIONS(1417), - [sym_metavariable] = ACTIONS(1415), - [sym__raw_string_literal_start] = ACTIONS(1415), - [sym_float_literal] = ACTIONS(1415), - }, - [388] = { + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_macro_rules_BANG] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_impl] = ACTIONS(1419), + [anon_sym_let] = ACTIONS(1419), + [anon_sym_loop] = ACTIONS(1419), + [anon_sym_match] = ACTIONS(1419), + [anon_sym_mod] = ACTIONS(1419), + [anon_sym_pub] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_trait] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_use] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1419), + [anon_sym_move] = ACTIONS(1419), + [anon_sym_try] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), + }, + [STATE(388)] = { [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_macro_rules_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_macro_rules_BANG] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_extern] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_move] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1047), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1051), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), }, - [389] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2922), - [sym_variadic_parameter] = STATE(2922), - [sym_parameter] = STATE(2922), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2584), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [STATE(389)] = { [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [390] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2431), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_macro_rules_BANG] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u128] = ACTIONS(1423), + [anon_sym_i128] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_str] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_async] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_enum] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_gen] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_impl] = ACTIONS(1423), + [anon_sym_let] = ACTIONS(1423), + [anon_sym_loop] = ACTIONS(1423), + [anon_sym_match] = ACTIONS(1423), + [anon_sym_mod] = ACTIONS(1423), + [anon_sym_pub] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_struct] = ACTIONS(1423), + [anon_sym_trait] = ACTIONS(1423), + [anon_sym_type] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1423), + [anon_sym_unsafe] = ACTIONS(1423), + [anon_sym_use] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_extern] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_move] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1423), + [sym_super] = ACTIONS(1423), + [sym_crate] = ACTIONS(1423), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), + }, + [STATE(390)] = { [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [391] = { + [ts_builtin_sym_end] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_macro_rules_BANG] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_u8] = ACTIONS(1427), + [anon_sym_i8] = ACTIONS(1427), + [anon_sym_u16] = ACTIONS(1427), + [anon_sym_i16] = ACTIONS(1427), + [anon_sym_u32] = ACTIONS(1427), + [anon_sym_i32] = ACTIONS(1427), + [anon_sym_u64] = ACTIONS(1427), + [anon_sym_i64] = ACTIONS(1427), + [anon_sym_u128] = ACTIONS(1427), + [anon_sym_i128] = ACTIONS(1427), + [anon_sym_isize] = ACTIONS(1427), + [anon_sym_usize] = ACTIONS(1427), + [anon_sym_f32] = ACTIONS(1427), + [anon_sym_f64] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_str] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_PIPE_PIPE] = ACTIONS(1425), + [anon_sym_LT_LT] = ACTIONS(1427), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_async] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_enum] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_gen] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_impl] = ACTIONS(1427), + [anon_sym_let] = ACTIONS(1427), + [anon_sym_loop] = ACTIONS(1427), + [anon_sym_match] = ACTIONS(1427), + [anon_sym_mod] = ACTIONS(1427), + [anon_sym_pub] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_struct] = ACTIONS(1427), + [anon_sym_trait] = ACTIONS(1427), + [anon_sym_type] = ACTIONS(1427), + [anon_sym_union] = ACTIONS(1427), + [anon_sym_unsafe] = ACTIONS(1427), + [anon_sym_use] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_extern] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1427), + [anon_sym_move] = ACTIONS(1427), + [anon_sym_try] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1425), + [aux_sym_string_literal_token1] = ACTIONS(1425), + [sym_char_literal] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1425), + [sym__raw_string_literal_start] = ACTIONS(1425), + [sym_float_literal] = ACTIONS(1425), + }, + [STATE(391)] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), [ts_builtin_sym_end] = ACTIONS(1429), @@ -61172,7 +61234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1429), [sym_float_literal] = ACTIONS(1429), }, - [392] = { + [STATE(392)] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), [ts_builtin_sym_end] = ACTIONS(1433), @@ -61282,7 +61344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1433), [sym_float_literal] = ACTIONS(1433), }, - [393] = { + [STATE(393)] = { [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), [ts_builtin_sym_end] = ACTIONS(1437), @@ -61392,889 +61454,1329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1437), [sym_float_literal] = ACTIONS(1437), }, - [394] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2782), - [sym_variadic_parameter] = STATE(2782), - [sym_parameter] = STATE(2782), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [STATE(394)] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [395] = { + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(395)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_identifier] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_macro_rules_BANG] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1447), - [anon_sym_u8] = ACTIONS(1449), - [anon_sym_i8] = ACTIONS(1449), - [anon_sym_u16] = ACTIONS(1449), - [anon_sym_i16] = ACTIONS(1449), - [anon_sym_u32] = ACTIONS(1449), - [anon_sym_i32] = ACTIONS(1449), - [anon_sym_u64] = ACTIONS(1449), - [anon_sym_i64] = ACTIONS(1449), - [anon_sym_u128] = ACTIONS(1449), - [anon_sym_i128] = ACTIONS(1449), - [anon_sym_isize] = ACTIONS(1449), - [anon_sym_usize] = ACTIONS(1449), - [anon_sym_f32] = ACTIONS(1449), - [anon_sym_f64] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_str] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_gen] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_impl] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_mod] = ACTIONS(1449), - [anon_sym_pub] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_struct] = ACTIONS(1449), - [anon_sym_trait] = ACTIONS(1449), - [anon_sym_type] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_unsafe] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_yield] = ACTIONS(1449), - [anon_sym_move] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [aux_sym_string_literal_token1] = ACTIONS(1447), - [sym_char_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym__raw_string_literal_start] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), - }, - [396] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(396)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1453), - [anon_sym_i8] = ACTIONS(1453), - [anon_sym_u16] = ACTIONS(1453), - [anon_sym_i16] = ACTIONS(1453), - [anon_sym_u32] = ACTIONS(1453), - [anon_sym_i32] = ACTIONS(1453), - [anon_sym_u64] = ACTIONS(1453), - [anon_sym_i64] = ACTIONS(1453), - [anon_sym_u128] = ACTIONS(1453), - [anon_sym_i128] = ACTIONS(1453), - [anon_sym_isize] = ACTIONS(1453), - [anon_sym_usize] = ACTIONS(1453), - [anon_sym_f32] = ACTIONS(1453), - [anon_sym_f64] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_str] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1453), - [anon_sym_PERCENT] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1453), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1451), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_async] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_gen] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_impl] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_mod] = ACTIONS(1453), - [anon_sym_pub] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_trait] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_unsafe] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_yield] = ACTIONS(1453), - [anon_sym_move] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1451), - [aux_sym_string_literal_token1] = ACTIONS(1451), - [sym_char_literal] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym__raw_string_literal_start] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), - }, - [397] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(397)] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_macro_rules_BANG] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_QMARK] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1457), - [anon_sym_PERCENT] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1457), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_PLUS_EQ] = ACTIONS(1455), - [anon_sym_DASH_EQ] = ACTIONS(1455), - [anon_sym_STAR_EQ] = ACTIONS(1455), - [anon_sym_SLASH_EQ] = ACTIONS(1455), - [anon_sym_PERCENT_EQ] = ACTIONS(1455), - [anon_sym_CARET_EQ] = ACTIONS(1455), - [anon_sym_AMP_EQ] = ACTIONS(1455), - [anon_sym_PIPE_EQ] = ACTIONS(1455), - [anon_sym_LT_LT_EQ] = ACTIONS(1455), - [anon_sym_GT_GT_EQ] = ACTIONS(1455), - [anon_sym_EQ] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_gen] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_impl] = ACTIONS(1457), - [anon_sym_let] = ACTIONS(1457), - [anon_sym_loop] = ACTIONS(1457), - [anon_sym_match] = ACTIONS(1457), - [anon_sym_mod] = ACTIONS(1457), - [anon_sym_pub] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_trait] = ACTIONS(1457), - [anon_sym_type] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_unsafe] = ACTIONS(1457), - [anon_sym_use] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1457), - [anon_sym_try] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym__raw_string_literal_start] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), - }, - [398] = { + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(398)] = { [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_macro_rules_BANG] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_QMARK] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS_EQ] = ACTIONS(1459), - [anon_sym_DASH_EQ] = ACTIONS(1459), - [anon_sym_STAR_EQ] = ACTIONS(1459), - [anon_sym_SLASH_EQ] = ACTIONS(1459), - [anon_sym_PERCENT_EQ] = ACTIONS(1459), - [anon_sym_CARET_EQ] = ACTIONS(1459), - [anon_sym_AMP_EQ] = ACTIONS(1459), - [anon_sym_PIPE_EQ] = ACTIONS(1459), - [anon_sym_LT_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_GT_EQ] = ACTIONS(1459), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_gen] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_impl] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_mod] = ACTIONS(1461), - [anon_sym_pub] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_trait] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsafe] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_move] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), - [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym__raw_string_literal_start] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), - }, - [399] = { + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [STATE(399)] = { [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), - }, - [400] = { + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_impl] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_pub] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_trait] = ACTIONS(1459), + [anon_sym_type] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_move] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), + }, + [STATE(400)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_async] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_impl] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(1469), - [anon_sym_loop] = ACTIONS(1469), - [anon_sym_match] = ACTIONS(1469), - [anon_sym_mod] = ACTIONS(1469), - [anon_sym_pub] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_trait] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_use] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), - }, - [401] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(401)] = { [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2431), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [402] = { + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(402)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(403)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(404)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(405)] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(406)] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), [ts_builtin_sym_end] = ACTIONS(1475), [sym_identifier] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1475), @@ -62382,9 +62884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1475), [sym_float_literal] = ACTIONS(1475), }, - [403] = { - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), + [STATE(407)] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), [ts_builtin_sym_end] = ACTIONS(1479), [sym_identifier] = ACTIONS(1481), [anon_sym_SEMI] = ACTIONS(1479), @@ -62492,9 +62994,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1479), [sym_float_literal] = ACTIONS(1479), }, - [404] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), + [STATE(408)] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), [ts_builtin_sym_end] = ACTIONS(1483), [sym_identifier] = ACTIONS(1485), [anon_sym_SEMI] = ACTIONS(1483), @@ -62503,9 +63005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1483), [anon_sym_LBRACE] = ACTIONS(1483), [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1489), [anon_sym_u8] = ACTIONS(1485), [anon_sym_i8] = ACTIONS(1485), [anon_sym_u16] = ACTIONS(1485), @@ -62524,41 +63026,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1485), [anon_sym_char] = ACTIONS(1485), [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), [anon_sym_BANG] = ACTIONS(1485), [anon_sym_AMP] = ACTIONS(1485), [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1487), [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), [anon_sym_COLON_COLON] = ACTIONS(1483), [anon_sym_POUND] = ACTIONS(1483), [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(1487), [anon_sym_async] = ACTIONS(1485), [anon_sym_break] = ACTIONS(1485), [anon_sym_const] = ACTIONS(1485), @@ -62602,2112 +63104,1690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1483), [sym_float_literal] = ACTIONS(1483), }, - [405] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_macro_rules_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_QMARK] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1489), - [anon_sym_i8] = ACTIONS(1489), - [anon_sym_u16] = ACTIONS(1489), - [anon_sym_i16] = ACTIONS(1489), - [anon_sym_u32] = ACTIONS(1489), - [anon_sym_i32] = ACTIONS(1489), - [anon_sym_u64] = ACTIONS(1489), - [anon_sym_i64] = ACTIONS(1489), - [anon_sym_u128] = ACTIONS(1489), - [anon_sym_i128] = ACTIONS(1489), - [anon_sym_isize] = ACTIONS(1489), - [anon_sym_usize] = ACTIONS(1489), - [anon_sym_f32] = ACTIONS(1489), - [anon_sym_f64] = ACTIONS(1489), - [anon_sym_bool] = ACTIONS(1489), - [anon_sym_str] = ACTIONS(1489), - [anon_sym_char] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_AMP_AMP] = ACTIONS(1487), - [anon_sym_PIPE_PIPE] = ACTIONS(1487), - [anon_sym_LT_LT] = ACTIONS(1489), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_PLUS_EQ] = ACTIONS(1487), - [anon_sym_DASH_EQ] = ACTIONS(1487), - [anon_sym_STAR_EQ] = ACTIONS(1487), - [anon_sym_SLASH_EQ] = ACTIONS(1487), - [anon_sym_PERCENT_EQ] = ACTIONS(1487), - [anon_sym_CARET_EQ] = ACTIONS(1487), - [anon_sym_AMP_EQ] = ACTIONS(1487), - [anon_sym_PIPE_EQ] = ACTIONS(1487), - [anon_sym_LT_LT_EQ] = ACTIONS(1487), - [anon_sym_GT_GT_EQ] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ] = ACTIONS(1487), - [anon_sym_BANG_EQ] = ACTIONS(1487), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1487), - [anon_sym_LT_EQ] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), - [anon_sym_COLON_COLON] = ACTIONS(1487), - [anon_sym_POUND] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_gen] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_impl] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_loop] = ACTIONS(1489), - [anon_sym_match] = ACTIONS(1489), - [anon_sym_mod] = ACTIONS(1489), - [anon_sym_pub] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_trait] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_unsafe] = ACTIONS(1489), - [anon_sym_use] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_move] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [sym_integer_literal] = ACTIONS(1487), - [aux_sym_string_literal_token1] = ACTIONS(1487), - [sym_char_literal] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_crate] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym__raw_string_literal_start] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), - }, - [406] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [407] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [408] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [409] = { + [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), - }, - [410] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_macro_rules_BANG] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_async] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_impl] = ACTIONS(1493), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_loop] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_pub] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_trait] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_unsafe] = ACTIONS(1493), + [anon_sym_use] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), + }, + [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [411] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_macro_rules_BANG] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_async] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_impl] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_mod] = ACTIONS(1497), + [anon_sym_pub] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_trait] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_unsafe] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_yield] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), + }, + [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [412] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [413] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_macro_rules_BANG] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_gen] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_impl] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_loop] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_pub] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_trait] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_unsafe] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1501), + [anon_sym_move] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym__raw_string_literal_start] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), + }, + [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [414] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_macro_rules_BANG] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_impl] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_mod] = ACTIONS(1505), + [anon_sym_pub] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_struct] = ACTIONS(1505), + [anon_sym_trait] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_unsafe] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym__raw_string_literal_start] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), + }, + [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [415] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_impl] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_pub] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_trait] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), + }, + [STATE(415)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2731), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(2891), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2625), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [416] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(416), - [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [417] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(417), - [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [418] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(416)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2731), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(2891), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2625), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [419] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(417)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3228), + [sym_variadic_parameter] = STATE(3228), + [sym_parameter] = STATE(3228), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(418)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2731), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(2891), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2625), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [420] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3012), - [sym_variadic_parameter] = STATE(3012), - [sym_parameter] = STATE(3012), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(419)] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_impl] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_pub] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_trait] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), + }, + [STATE(420)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3089), + [sym_variadic_parameter] = STATE(3089), + [sym_parameter] = STATE(3089), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3020), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [421] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2836), - [sym_variadic_parameter] = STATE(2836), - [sym_parameter] = STATE(2836), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(421)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(3065), + [sym_variadic_parameter] = STATE(3065), + [sym_parameter] = STATE(3065), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2602), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [422] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2928), - [sym_variadic_parameter] = STATE(2928), - [sym_parameter] = STATE(2928), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2592), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(422)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2907), + [sym_variadic_parameter] = STATE(2907), + [sym_parameter] = STATE(2907), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2548), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [423] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3140), - [sym_variadic_parameter] = STATE(3140), - [sym_parameter] = STATE(3140), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(423)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_self_parameter] = STATE(2823), + [sym_variadic_parameter] = STATE(2823), + [sym_parameter] = STATE(2823), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2574), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(2965), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3315), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [424] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2904), - [sym_bracketed_type] = STATE(3558), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3304), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2489), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2670), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(424)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3034), + [sym_bracketed_type] = STATE(3578), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3322), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2496), + [sym_scoped_identifier] = STATE(2179), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2632), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1263), [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -64725,806 +64805,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1551), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [425] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(425)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3578), + [sym_lifetime] = STATE(841), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3322), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2496), + [sym_scoped_identifier] = STATE(2179), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2119), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1563), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [426] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(839), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [427] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(839), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [428] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1347), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [429] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1347), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [430] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [431] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [432] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3558), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3304), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2489), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -65542,91 +64909,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [433] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3558), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3304), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2489), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(426)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2146), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(427)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3578), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3322), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2496), + [sym_scoped_identifier] = STATE(2179), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2146), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -65644,145 +65115,764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [434] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(428)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(841), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2119), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(429)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2146), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(430)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2146), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(431)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2146), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(432)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3577), + [sym_lifetime] = STATE(842), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3319), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2428), + [sym_scoped_identifier] = STATE(2136), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2119), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1347), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1353), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), }, - [435] = { + [STATE(433)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(841), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2119), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(434)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3570), + [sym_lifetime] = STATE(842), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3235), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(2467), + [sym_scoped_identifier] = STATE(2243), + [sym_scoped_type_identifier] = STATE(2102), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2119), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1269), + [anon_sym_i8] = ACTIONS(1269), + [anon_sym_u16] = ACTIONS(1269), + [anon_sym_i16] = ACTIONS(1269), + [anon_sym_u32] = ACTIONS(1269), + [anon_sym_i32] = ACTIONS(1269), + [anon_sym_u64] = ACTIONS(1269), + [anon_sym_i64] = ACTIONS(1269), + [anon_sym_u128] = ACTIONS(1269), + [anon_sym_i128] = ACTIONS(1269), + [anon_sym_isize] = ACTIONS(1269), + [anon_sym_usize] = ACTIONS(1269), + [anon_sym_f32] = ACTIONS(1269), + [anon_sym_f64] = ACTIONS(1269), + [anon_sym_bool] = ACTIONS(1269), + [anon_sym_str] = ACTIONS(1269), + [anon_sym_char] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1303), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_ref] = ACTIONS(1309), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1323), + [sym_crate] = ACTIONS(1323), + [sym_metavariable] = ACTIONS(1325), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(435)] = { [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), [sym_identifier] = ACTIONS(1583), @@ -65883,7 +65973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1585), [sym_float_literal] = ACTIONS(1585), }, - [436] = { + [STATE(436)] = { [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), [sym_identifier] = ACTIONS(1583), @@ -65979,31 +66069,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1585), [sym_float_literal] = ACTIONS(1585), }, - [437] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2142), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [STATE(437)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2116), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), [sym_identifier] = ACTIONS(1587), @@ -66053,7 +66144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1587), [anon_sym_unsafe] = ACTIONS(1587), [anon_sym_while] = ACTIONS(1587), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1587), [anon_sym_move] = ACTIONS(1587), @@ -66072,31 +66163,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1589), [sym_float_literal] = ACTIONS(1589), }, - [438] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2119), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [STATE(438)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2120), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), [sym_identifier] = ACTIONS(1591), @@ -66146,7 +66238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1591), [anon_sym_unsafe] = ACTIONS(1591), [anon_sym_while] = ACTIONS(1591), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1591), [anon_sym_move] = ACTIONS(1591), @@ -66165,45 +66257,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1593), [sym_float_literal] = ACTIONS(1593), }, - [439] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(439)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66221,76 +66313,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1607), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [440] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(440)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66308,76 +66400,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [441] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(441)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66395,76 +66487,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1625), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [442] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(442)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66482,76 +66574,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1627), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [443] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(443)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66569,76 +66661,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1629), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [444] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(444)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66656,76 +66748,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1631), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [445] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(445)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66743,76 +66835,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1633), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [446] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(446)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66830,76 +66922,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [447] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(447)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66917,76 +67009,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1637), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [448] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2340), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2341), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2472), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2472), - [sym__literal] = STATE(2472), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(448)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67004,75 +67096,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_GT] = ACTIONS(1639), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [449] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(449)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67090,75 +67183,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_GT] = ACTIONS(1641), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [450] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2370), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2419), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2419), - [sym__literal] = STATE(2419), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(450)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67176,75 +67270,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_GT] = ACTIONS(1643), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [451] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2360), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2503), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2503), - [sym__literal] = STATE(2503), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), + [STATE(451)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2391), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2512), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2512), + [sym__literal] = STATE(2512), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_function_modifiers_repeat1] = STATE(2250), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67262,40 +67357,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1317), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1327), [sym_float_literal] = ACTIONS(1617), }, - [452] = { - [sym_else_clause] = STATE(481), + [STATE(452)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2485), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2612), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2612), + [sym__literal] = STATE(2612), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1617), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1617), + }, + [STATE(453)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2341), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2316), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2484), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2484), + [sym__literal] = STATE(2484), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1617), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1617), + }, + [STATE(454)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2362), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2508), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2508), + [sym__literal] = STATE(2508), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1617), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1617), + }, + [STATE(455)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2335), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2336), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_type_binding] = STATE(2476), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_label] = STATE(3629), + [sym_block] = STATE(2476), + [sym__literal] = STATE(2476), + [sym_string_literal] = STATE(2805), + [sym_raw_string_literal] = STATE(2805), + [sym_boolean_literal] = STATE(2805), + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1617), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1617), + }, + [STATE(456)] = { + [sym_else_clause] = STATE(488), + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), [sym_identifier] = ACTIONS(1253), [anon_sym_LPAREN] = ACTIONS(1251), [anon_sym_LBRACK] = ACTIONS(1251), @@ -67317,2232 +67756,1489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usize] = ACTIONS(1253), [anon_sym_f32] = ACTIONS(1253), [anon_sym_f64] = ACTIONS(1253), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_str] = ACTIONS(1253), - [anon_sym_char] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym__] = ACTIONS(1253), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), - [anon_sym_COMMA] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(1251), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_gen] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_ref] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1639), - [sym_mutable_specifier] = ACTIONS(1253), - [sym_integer_literal] = ACTIONS(1251), - [aux_sym_string_literal_token1] = ACTIONS(1251), - [sym_char_literal] = ACTIONS(1251), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1253), - [sym_super] = ACTIONS(1253), - [sym_crate] = ACTIONS(1253), - [sym_metavariable] = ACTIONS(1251), - [sym__raw_string_literal_start] = ACTIONS(1251), - [sym_float_literal] = ACTIONS(1251), - }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1271), - [anon_sym_PERCENT] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_PIPE_PIPE] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1271), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_PLUS_EQ] = ACTIONS(1269), - [anon_sym_DASH_EQ] = ACTIONS(1269), - [anon_sym_STAR_EQ] = ACTIONS(1269), - [anon_sym_SLASH_EQ] = ACTIONS(1269), - [anon_sym_PERCENT_EQ] = ACTIONS(1269), - [anon_sym_CARET_EQ] = ACTIONS(1269), - [anon_sym_AMP_EQ] = ACTIONS(1269), - [anon_sym_PIPE_EQ] = ACTIONS(1269), - [anon_sym_LT_LT_EQ] = ACTIONS(1269), - [anon_sym_GT_GT_EQ] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1269), - [anon_sym__] = ACTIONS(1271), - [anon_sym_DOT] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_gen] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_ref] = ACTIONS(1271), - [anon_sym_else] = ACTIONS(1271), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_QMARK] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1257), - [anon_sym_DASH_EQ] = ACTIONS(1257), - [anon_sym_STAR_EQ] = ACTIONS(1257), - [anon_sym_SLASH_EQ] = ACTIONS(1257), - [anon_sym_PERCENT_EQ] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1257), - [anon_sym_AMP_EQ] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1257), - [anon_sym_LT_LT_EQ] = ACTIONS(1257), - [anon_sym_GT_GT_EQ] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym__] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_ref] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [sym_mutable_specifier] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym__raw_string_literal_start] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_PERCENT] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1261), - [anon_sym_PIPE_PIPE] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [anon_sym_PLUS_EQ] = ACTIONS(1261), - [anon_sym_DASH_EQ] = ACTIONS(1261), - [anon_sym_STAR_EQ] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1261), - [anon_sym_PERCENT_EQ] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1261), - [anon_sym_AMP_EQ] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1261), - [anon_sym_LT_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_GT_EQ] = ACTIONS(1261), - [anon_sym_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym__] = ACTIONS(1263), - [anon_sym_DOT] = ACTIONS(1263), - [anon_sym_DOT_DOT] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1261), - [anon_sym_COMMA] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_gen] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_ref] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1263), - [sym_mutable_specifier] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym__raw_string_literal_start] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), - }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [sym_identifier] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_AMP_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_GT_EQ] = ACTIONS(1273), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym__] = ACTIONS(1275), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1273), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_COLON_COLON] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_ref] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1275), - [sym_mutable_specifier] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1273), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1275), - [anon_sym_false] = ACTIONS(1275), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_crate] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1273), - [sym__raw_string_literal_start] = ACTIONS(1273), - [sym_float_literal] = ACTIONS(1273), - }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1267), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1267), - [anon_sym_PERCENT] = ACTIONS(1267), - [anon_sym_CARET] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_LT_LT] = ACTIONS(1267), - [anon_sym_GT_GT] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1265), - [anon_sym_DASH_EQ] = ACTIONS(1265), - [anon_sym_STAR_EQ] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1265), - [anon_sym_PERCENT_EQ] = ACTIONS(1265), - [anon_sym_CARET_EQ] = ACTIONS(1265), - [anon_sym_AMP_EQ] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1265), - [anon_sym_LT_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_GT_EQ] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym__] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_gen] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_else] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym__raw_string_literal_start] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), - }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym__] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1397), - [sym_mutable_specifier] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), - }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_gen] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1485), - [sym_mutable_specifier] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym__] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), + [anon_sym_COMMA] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(1251), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_gen] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_ref] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1645), + [sym_mutable_specifier] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1251), + [aux_sym_string_literal_token1] = ACTIONS(1251), + [sym_char_literal] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym__raw_string_literal_start] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [sym_self] = ACTIONS(1253), + [sym_super] = ACTIONS(1253), + [sym_crate] = ACTIONS(1253), + [sym_metavariable] = ACTIONS(1251), + [sym__raw_string_literal_start] = ACTIONS(1251), + [sym_float_literal] = ACTIONS(1251), }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_QMARK] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS_EQ] = ACTIONS(1459), - [anon_sym_DASH_EQ] = ACTIONS(1459), - [anon_sym_STAR_EQ] = ACTIONS(1459), - [anon_sym_SLASH_EQ] = ACTIONS(1459), - [anon_sym_PERCENT_EQ] = ACTIONS(1459), - [anon_sym_CARET_EQ] = ACTIONS(1459), - [anon_sym_AMP_EQ] = ACTIONS(1459), - [anon_sym_PIPE_EQ] = ACTIONS(1459), - [anon_sym_LT_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_GT_EQ] = ACTIONS(1459), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym__] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_gen] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_ref] = ACTIONS(1461), - [sym_mutable_specifier] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), - [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym__raw_string_literal_start] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), - }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1447), - [anon_sym_u8] = ACTIONS(1449), - [anon_sym_i8] = ACTIONS(1449), - [anon_sym_u16] = ACTIONS(1449), - [anon_sym_i16] = ACTIONS(1449), - [anon_sym_u32] = ACTIONS(1449), - [anon_sym_i32] = ACTIONS(1449), - [anon_sym_u64] = ACTIONS(1449), - [anon_sym_i64] = ACTIONS(1449), - [anon_sym_u128] = ACTIONS(1449), - [anon_sym_i128] = ACTIONS(1449), - [anon_sym_isize] = ACTIONS(1449), - [anon_sym_usize] = ACTIONS(1449), - [anon_sym_f32] = ACTIONS(1449), - [anon_sym_f64] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_str] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym__] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_gen] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_ref] = ACTIONS(1449), - [sym_mutable_specifier] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [aux_sym_string_literal_token1] = ACTIONS(1447), - [sym_char_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym__raw_string_literal_start] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), - }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [sym_identifier] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1359), + [STATE(457)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3428), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [aux_sym_match_block_repeat1] = STATE(489), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(458)] = { + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), [anon_sym_PLUS] = ACTIONS(1357), [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u128] = ACTIONS(1641), - [anon_sym_i128] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_str] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_u8] = ACTIONS(1357), + [anon_sym_i8] = ACTIONS(1357), + [anon_sym_u16] = ACTIONS(1357), + [anon_sym_i16] = ACTIONS(1357), + [anon_sym_u32] = ACTIONS(1357), + [anon_sym_i32] = ACTIONS(1357), + [anon_sym_u64] = ACTIONS(1357), + [anon_sym_i64] = ACTIONS(1357), + [anon_sym_u128] = ACTIONS(1357), + [anon_sym_i128] = ACTIONS(1357), + [anon_sym_isize] = ACTIONS(1357), + [anon_sym_usize] = ACTIONS(1357), + [anon_sym_f32] = ACTIONS(1357), + [anon_sym_f64] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_str] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), [anon_sym_SLASH] = ACTIONS(1357), [anon_sym_PERCENT] = ACTIONS(1357), [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_PIPE] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1355), + [anon_sym_PIPE_PIPE] = ACTIONS(1355), [anon_sym_LT_LT] = ACTIONS(1357), [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1355), + [anon_sym_DASH_EQ] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1355), + [anon_sym_SLASH_EQ] = ACTIONS(1355), + [anon_sym_PERCENT_EQ] = ACTIONS(1355), + [anon_sym_CARET_EQ] = ACTIONS(1355), + [anon_sym_AMP_EQ] = ACTIONS(1355), + [anon_sym_PIPE_EQ] = ACTIONS(1355), + [anon_sym_LT_LT_EQ] = ACTIONS(1355), + [anon_sym_GT_GT_EQ] = ACTIONS(1355), [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1355), + [anon_sym_BANG_EQ] = ACTIONS(1355), [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym__] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_GT_EQ] = ACTIONS(1355), + [anon_sym_LT_EQ] = ACTIONS(1355), + [anon_sym__] = ACTIONS(1357), [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1355), + [anon_sym_COMMA] = ACTIONS(1355), + [anon_sym_COLON_COLON] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1355), [anon_sym_as] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_gen] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_ref] = ACTIONS(1641), - [sym_mutable_specifier] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1643), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_crate] = ACTIONS(1641), - [sym_metavariable] = ACTIONS(1643), - [sym__raw_string_literal_start] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), - }, - [463] = { + [anon_sym_const] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_gen] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_ref] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [sym_mutable_specifier] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1355), + [aux_sym_string_literal_token1] = ACTIONS(1355), + [sym_char_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1357), + [sym_crate] = ACTIONS(1357), + [sym_metavariable] = ACTIONS(1355), + [sym__raw_string_literal_start] = ACTIONS(1355), + [sym_float_literal] = ACTIONS(1355), + }, + [STATE(459)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3430), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [aux_sym_match_block_repeat1] = STATE(470), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(460)] = { + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [sym_identifier] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_u8] = ACTIONS(1365), + [anon_sym_i8] = ACTIONS(1365), + [anon_sym_u16] = ACTIONS(1365), + [anon_sym_i16] = ACTIONS(1365), + [anon_sym_u32] = ACTIONS(1365), + [anon_sym_i32] = ACTIONS(1365), + [anon_sym_u64] = ACTIONS(1365), + [anon_sym_i64] = ACTIONS(1365), + [anon_sym_u128] = ACTIONS(1365), + [anon_sym_i128] = ACTIONS(1365), + [anon_sym_isize] = ACTIONS(1365), + [anon_sym_usize] = ACTIONS(1365), + [anon_sym_f32] = ACTIONS(1365), + [anon_sym_f64] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_char] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1365), + [anon_sym_GT_GT] = ACTIONS(1365), + [anon_sym_PLUS_EQ] = ACTIONS(1363), + [anon_sym_DASH_EQ] = ACTIONS(1363), + [anon_sym_STAR_EQ] = ACTIONS(1363), + [anon_sym_SLASH_EQ] = ACTIONS(1363), + [anon_sym_PERCENT_EQ] = ACTIONS(1363), + [anon_sym_CARET_EQ] = ACTIONS(1363), + [anon_sym_AMP_EQ] = ACTIONS(1363), + [anon_sym_PIPE_EQ] = ACTIONS(1363), + [anon_sym_LT_LT_EQ] = ACTIONS(1363), + [anon_sym_GT_GT_EQ] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ] = ACTIONS(1363), + [anon_sym_BANG_EQ] = ACTIONS(1363), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1363), + [anon_sym_LT_EQ] = ACTIONS(1363), + [anon_sym__] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1363), + [anon_sym_COMMA] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_gen] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_ref] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [sym_mutable_specifier] = ACTIONS(1365), + [sym_integer_literal] = ACTIONS(1363), + [aux_sym_string_literal_token1] = ACTIONS(1363), + [sym_char_literal] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1365), + [anon_sym_false] = ACTIONS(1365), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_crate] = ACTIONS(1365), + [sym_metavariable] = ACTIONS(1363), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1363), + }, + [STATE(461)] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1369), + [anon_sym_i8] = ACTIONS(1369), + [anon_sym_u16] = ACTIONS(1369), + [anon_sym_i16] = ACTIONS(1369), + [anon_sym_u32] = ACTIONS(1369), + [anon_sym_i32] = ACTIONS(1369), + [anon_sym_u64] = ACTIONS(1369), + [anon_sym_i64] = ACTIONS(1369), + [anon_sym_u128] = ACTIONS(1369), + [anon_sym_i128] = ACTIONS(1369), + [anon_sym_isize] = ACTIONS(1369), + [anon_sym_usize] = ACTIONS(1369), + [anon_sym_f32] = ACTIONS(1369), + [anon_sym_f64] = ACTIONS(1369), + [anon_sym_bool] = ACTIONS(1369), + [anon_sym_str] = ACTIONS(1369), + [anon_sym_char] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_LT_LT] = ACTIONS(1369), + [anon_sym_GT_GT] = ACTIONS(1369), + [anon_sym_PLUS_EQ] = ACTIONS(1367), + [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_STAR_EQ] = ACTIONS(1367), + [anon_sym_SLASH_EQ] = ACTIONS(1367), + [anon_sym_PERCENT_EQ] = ACTIONS(1367), + [anon_sym_CARET_EQ] = ACTIONS(1367), + [anon_sym_AMP_EQ] = ACTIONS(1367), + [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_LT_LT_EQ] = ACTIONS(1367), + [anon_sym_GT_GT_EQ] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym__] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_gen] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1369), + [sym_mutable_specifier] = ACTIONS(1369), + [sym_integer_literal] = ACTIONS(1367), + [aux_sym_string_literal_token1] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1369), + [anon_sym_false] = ACTIONS(1369), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1369), + [sym_super] = ACTIONS(1369), + [sym_crate] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym__raw_string_literal_start] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), + }, + [STATE(462)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3497), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [aux_sym_match_block_repeat1] = STATE(484), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(463)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3475), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1453), - [anon_sym_i8] = ACTIONS(1453), - [anon_sym_u16] = ACTIONS(1453), - [anon_sym_i16] = ACTIONS(1453), - [anon_sym_u32] = ACTIONS(1453), - [anon_sym_i32] = ACTIONS(1453), - [anon_sym_u64] = ACTIONS(1453), - [anon_sym_i64] = ACTIONS(1453), - [anon_sym_u128] = ACTIONS(1453), - [anon_sym_i128] = ACTIONS(1453), - [anon_sym_isize] = ACTIONS(1453), - [anon_sym_usize] = ACTIONS(1453), - [anon_sym_f32] = ACTIONS(1453), - [anon_sym_f64] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_str] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1453), - [anon_sym_PERCENT] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1453), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1451), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_gen] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_ref] = ACTIONS(1453), - [sym_mutable_specifier] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1451), - [aux_sym_string_literal_token1] = ACTIONS(1451), - [sym_char_literal] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym__raw_string_literal_start] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), - }, - [464] = { + [aux_sym_match_block_repeat1] = STATE(468), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(464)] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_u8] = ACTIONS(1367), - [anon_sym_i8] = ACTIONS(1367), - [anon_sym_u16] = ACTIONS(1367), - [anon_sym_i16] = ACTIONS(1367), - [anon_sym_u32] = ACTIONS(1367), - [anon_sym_i32] = ACTIONS(1367), - [anon_sym_u64] = ACTIONS(1367), - [anon_sym_i64] = ACTIONS(1367), - [anon_sym_u128] = ACTIONS(1367), - [anon_sym_i128] = ACTIONS(1367), - [anon_sym_isize] = ACTIONS(1367), - [anon_sym_usize] = ACTIONS(1367), - [anon_sym_f32] = ACTIONS(1367), - [anon_sym_f64] = ACTIONS(1367), - [anon_sym_bool] = ACTIONS(1367), - [anon_sym_str] = ACTIONS(1367), - [anon_sym_char] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym__] = ACTIONS(1367), - [anon_sym_DOT] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_POUND] = ACTIONS(1365), - [anon_sym_as] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_gen] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1367), - [sym_mutable_specifier] = ACTIONS(1367), - [sym_integer_literal] = ACTIONS(1365), - [aux_sym_string_literal_token1] = ACTIONS(1365), - [sym_char_literal] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1367), - [sym_super] = ACTIONS(1367), - [sym_crate] = ACTIONS(1367), - [sym_metavariable] = ACTIONS(1365), - [sym__raw_string_literal_start] = ACTIONS(1365), - [sym_float_literal] = ACTIONS(1365), - }, - [465] = { + [sym_identifier] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_QMARK] = ACTIONS(1385), + [anon_sym_u8] = ACTIONS(1387), + [anon_sym_i8] = ACTIONS(1387), + [anon_sym_u16] = ACTIONS(1387), + [anon_sym_i16] = ACTIONS(1387), + [anon_sym_u32] = ACTIONS(1387), + [anon_sym_i32] = ACTIONS(1387), + [anon_sym_u64] = ACTIONS(1387), + [anon_sym_i64] = ACTIONS(1387), + [anon_sym_u128] = ACTIONS(1387), + [anon_sym_i128] = ACTIONS(1387), + [anon_sym_isize] = ACTIONS(1387), + [anon_sym_usize] = ACTIONS(1387), + [anon_sym_f32] = ACTIONS(1387), + [anon_sym_f64] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_str] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1387), + [anon_sym_PERCENT] = ACTIONS(1387), + [anon_sym_CARET] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_PIPE_PIPE] = ACTIONS(1385), + [anon_sym_LT_LT] = ACTIONS(1387), + [anon_sym_GT_GT] = ACTIONS(1387), + [anon_sym_PLUS_EQ] = ACTIONS(1385), + [anon_sym_DASH_EQ] = ACTIONS(1385), + [anon_sym_STAR_EQ] = ACTIONS(1385), + [anon_sym_SLASH_EQ] = ACTIONS(1385), + [anon_sym_PERCENT_EQ] = ACTIONS(1385), + [anon_sym_CARET_EQ] = ACTIONS(1385), + [anon_sym_AMP_EQ] = ACTIONS(1385), + [anon_sym_PIPE_EQ] = ACTIONS(1385), + [anon_sym_LT_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_GT_EQ] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym__] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1385), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_COLON_COLON] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_as] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_gen] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_ref] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [sym_mutable_specifier] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1385), + [aux_sym_string_literal_token1] = ACTIONS(1385), + [sym_char_literal] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_crate] = ACTIONS(1387), + [sym_metavariable] = ACTIONS(1385), + [sym__raw_string_literal_start] = ACTIONS(1385), + [sym_float_literal] = ACTIONS(1385), + }, + [STATE(465)] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_QMARK] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1457), - [anon_sym_PERCENT] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1457), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_PLUS_EQ] = ACTIONS(1455), - [anon_sym_DASH_EQ] = ACTIONS(1455), - [anon_sym_STAR_EQ] = ACTIONS(1455), - [anon_sym_SLASH_EQ] = ACTIONS(1455), - [anon_sym_PERCENT_EQ] = ACTIONS(1455), - [anon_sym_CARET_EQ] = ACTIONS(1455), - [anon_sym_AMP_EQ] = ACTIONS(1455), - [anon_sym_PIPE_EQ] = ACTIONS(1455), - [anon_sym_LT_LT_EQ] = ACTIONS(1455), - [anon_sym_GT_GT_EQ] = ACTIONS(1455), - [anon_sym_EQ] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym__] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_COMMA] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_gen] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1457), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym__raw_string_literal_start] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), - }, - [466] = { + [sym_identifier] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_u8] = ACTIONS(1383), + [anon_sym_i8] = ACTIONS(1383), + [anon_sym_u16] = ACTIONS(1383), + [anon_sym_i16] = ACTIONS(1383), + [anon_sym_u32] = ACTIONS(1383), + [anon_sym_i32] = ACTIONS(1383), + [anon_sym_u64] = ACTIONS(1383), + [anon_sym_i64] = ACTIONS(1383), + [anon_sym_u128] = ACTIONS(1383), + [anon_sym_i128] = ACTIONS(1383), + [anon_sym_isize] = ACTIONS(1383), + [anon_sym_usize] = ACTIONS(1383), + [anon_sym_f32] = ACTIONS(1383), + [anon_sym_f64] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_str] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_PLUS_EQ] = ACTIONS(1381), + [anon_sym_DASH_EQ] = ACTIONS(1381), + [anon_sym_STAR_EQ] = ACTIONS(1381), + [anon_sym_SLASH_EQ] = ACTIONS(1381), + [anon_sym_PERCENT_EQ] = ACTIONS(1381), + [anon_sym_CARET_EQ] = ACTIONS(1381), + [anon_sym_AMP_EQ] = ACTIONS(1381), + [anon_sym_PIPE_EQ] = ACTIONS(1381), + [anon_sym_LT_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_GT_EQ] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_gen] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_ref] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1381), + [aux_sym_string_literal_token1] = ACTIONS(1381), + [sym_char_literal] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_crate] = ACTIONS(1383), + [sym_metavariable] = ACTIONS(1381), + [sym__raw_string_literal_start] = ACTIONS(1381), + [sym_float_literal] = ACTIONS(1381), + }, + [STATE(466)] = { [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_PIPE_PIPE] = ACTIONS(1403), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_PERCENT_EQ] = ACTIONS(1403), - [anon_sym_CARET_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_gen] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_ref] = ACTIONS(1405), - [sym_mutable_specifier] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1429), + [anon_sym_u8] = ACTIONS(1431), + [anon_sym_i8] = ACTIONS(1431), + [anon_sym_u16] = ACTIONS(1431), + [anon_sym_i16] = ACTIONS(1431), + [anon_sym_u32] = ACTIONS(1431), + [anon_sym_i32] = ACTIONS(1431), + [anon_sym_u64] = ACTIONS(1431), + [anon_sym_i64] = ACTIONS(1431), + [anon_sym_u128] = ACTIONS(1431), + [anon_sym_i128] = ACTIONS(1431), + [anon_sym_isize] = ACTIONS(1431), + [anon_sym_usize] = ACTIONS(1431), + [anon_sym_f32] = ACTIONS(1431), + [anon_sym_f64] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_str] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1431), + [anon_sym_GT_GT] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1429), + [anon_sym_DASH_EQ] = ACTIONS(1429), + [anon_sym_STAR_EQ] = ACTIONS(1429), + [anon_sym_SLASH_EQ] = ACTIONS(1429), + [anon_sym_PERCENT_EQ] = ACTIONS(1429), + [anon_sym_CARET_EQ] = ACTIONS(1429), + [anon_sym_AMP_EQ] = ACTIONS(1429), + [anon_sym_PIPE_EQ] = ACTIONS(1429), + [anon_sym_LT_LT_EQ] = ACTIONS(1429), + [anon_sym_GT_GT_EQ] = ACTIONS(1429), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym__] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_COLON_COLON] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_default] = ACTIONS(1431), + [anon_sym_gen] = ACTIONS(1431), + [anon_sym_union] = ACTIONS(1431), + [anon_sym_ref] = ACTIONS(1431), + [sym_mutable_specifier] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1429), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym__raw_string_literal_start] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [sym_self] = ACTIONS(1431), + [sym_super] = ACTIONS(1431), + [sym_crate] = ACTIONS(1431), + [sym_metavariable] = ACTIONS(1429), + [sym__raw_string_literal_start] = ACTIONS(1429), + [sym_float_literal] = ACTIONS(1429), }, - [467] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3466), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [STATE(467)] = { [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [468] = { + [sym_identifier] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_ref] = ACTIONS(1451), + [sym_mutable_specifier] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(468)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3390), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_PERCENT] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_GT_GT] = ACTIONS(1413), - [anon_sym_PLUS_EQ] = ACTIONS(1411), - [anon_sym_DASH_EQ] = ACTIONS(1411), - [anon_sym_STAR_EQ] = ACTIONS(1411), - [anon_sym_SLASH_EQ] = ACTIONS(1411), - [anon_sym_PERCENT_EQ] = ACTIONS(1411), - [anon_sym_CARET_EQ] = ACTIONS(1411), - [anon_sym_AMP_EQ] = ACTIONS(1411), - [anon_sym_PIPE_EQ] = ACTIONS(1411), - [anon_sym_LT_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_GT_EQ] = ACTIONS(1411), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_gen] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym__raw_string_literal_start] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), - }, - [469] = { + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(469)] = { [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_gen] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_ref] = ACTIONS(1401), - [sym_mutable_specifier] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym__raw_string_literal_start] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), - }, - [470] = { + [sym_identifier] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym__] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_ref] = ACTIONS(1455), + [sym_mutable_specifier] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [STATE(470)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3440), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_u8] = ACTIONS(1363), - [anon_sym_i8] = ACTIONS(1363), - [anon_sym_u16] = ACTIONS(1363), - [anon_sym_i16] = ACTIONS(1363), - [anon_sym_u32] = ACTIONS(1363), - [anon_sym_i32] = ACTIONS(1363), - [anon_sym_u64] = ACTIONS(1363), - [anon_sym_i64] = ACTIONS(1363), - [anon_sym_u128] = ACTIONS(1363), - [anon_sym_i128] = ACTIONS(1363), - [anon_sym_isize] = ACTIONS(1363), - [anon_sym_usize] = ACTIONS(1363), - [anon_sym_f32] = ACTIONS(1363), - [anon_sym_f64] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_str] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1363), - [anon_sym_PERCENT] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1361), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_LT_LT] = ACTIONS(1363), - [anon_sym_GT_GT] = ACTIONS(1363), - [anon_sym_PLUS_EQ] = ACTIONS(1361), - [anon_sym_DASH_EQ] = ACTIONS(1361), - [anon_sym_STAR_EQ] = ACTIONS(1361), - [anon_sym_SLASH_EQ] = ACTIONS(1361), - [anon_sym_PERCENT_EQ] = ACTIONS(1361), - [anon_sym_CARET_EQ] = ACTIONS(1361), - [anon_sym_AMP_EQ] = ACTIONS(1361), - [anon_sym_PIPE_EQ] = ACTIONS(1361), - [anon_sym_LT_LT_EQ] = ACTIONS(1361), - [anon_sym_GT_GT_EQ] = ACTIONS(1361), - [anon_sym_EQ] = ACTIONS(1363), - [anon_sym_EQ_EQ] = ACTIONS(1361), - [anon_sym_BANG_EQ] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_GT_EQ] = ACTIONS(1361), - [anon_sym_LT_EQ] = ACTIONS(1361), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1361), - [anon_sym_as] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_gen] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1363), - [sym_mutable_specifier] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1361), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1361), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1363), - [sym_super] = ACTIONS(1363), - [sym_crate] = ACTIONS(1363), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1361), - [sym_float_literal] = ACTIONS(1361), - }, - [471] = { + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(471)] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u128] = ACTIONS(1689), - [anon_sym_i128] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_str] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym__] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(1691), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_gen] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_ref] = ACTIONS(1689), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1691), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_crate] = ACTIONS(1689), - [sym_metavariable] = ACTIONS(1691), - [sym__raw_string_literal_start] = ACTIONS(1691), - [sym_float_literal] = ACTIONS(1691), - }, - [472] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3406), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_identifier] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_ref] = ACTIONS(1497), + [sym_mutable_specifier] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), + }, + [STATE(472)] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(484), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [473] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym__] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_ref] = ACTIONS(1469), - [sym_mutable_specifier] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), - }, - [474] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3342), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [aux_sym_match_block_repeat1] = STATE(483), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [475] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3506), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(485), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_u8] = ACTIONS(1481), - [anon_sym_i8] = ACTIONS(1481), - [anon_sym_u16] = ACTIONS(1481), - [anon_sym_i16] = ACTIONS(1481), - [anon_sym_u32] = ACTIONS(1481), - [anon_sym_i32] = ACTIONS(1481), - [anon_sym_u64] = ACTIONS(1481), - [anon_sym_i64] = ACTIONS(1481), - [anon_sym_u128] = ACTIONS(1481), - [anon_sym_i128] = ACTIONS(1481), - [anon_sym_isize] = ACTIONS(1481), - [anon_sym_usize] = ACTIONS(1481), - [anon_sym_f32] = ACTIONS(1481), - [anon_sym_f64] = ACTIONS(1481), - [anon_sym_bool] = ACTIONS(1481), - [anon_sym_str] = ACTIONS(1481), - [anon_sym_char] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_PERCENT] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(1481), - [anon_sym_GT_GT] = ACTIONS(1481), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_gen] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_ref] = ACTIONS(1481), - [sym_mutable_specifier] = ACTIONS(1481), - [sym_integer_literal] = ACTIONS(1479), - [aux_sym_string_literal_token1] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym__raw_string_literal_start] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), - }, - [477] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1435), - [sym_mutable_specifier] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1433), - [aux_sym_string_literal_token1] = ACTIONS(1433), - [sym_char_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_u8] = ACTIONS(1405), + [anon_sym_i8] = ACTIONS(1405), + [anon_sym_u16] = ACTIONS(1405), + [anon_sym_i16] = ACTIONS(1405), + [anon_sym_u32] = ACTIONS(1405), + [anon_sym_i32] = ACTIONS(1405), + [anon_sym_u64] = ACTIONS(1405), + [anon_sym_i64] = ACTIONS(1405), + [anon_sym_u128] = ACTIONS(1405), + [anon_sym_i128] = ACTIONS(1405), + [anon_sym_isize] = ACTIONS(1405), + [anon_sym_usize] = ACTIONS(1405), + [anon_sym_f32] = ACTIONS(1405), + [anon_sym_f64] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_str] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_SLASH] = ACTIONS(1405), + [anon_sym_PERCENT] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1405), + [anon_sym_GT_GT] = ACTIONS(1405), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1405), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_COLON_COLON] = ACTIONS(1403), + [anon_sym_POUND] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_gen] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1405), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1403), + [aux_sym_string_literal_token1] = ACTIONS(1403), + [sym_char_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_crate] = ACTIONS(1435), - [sym_metavariable] = ACTIONS(1433), - [sym__raw_string_literal_start] = ACTIONS(1433), - [sym_float_literal] = ACTIONS(1433), + [sym_self] = ACTIONS(1405), + [sym_super] = ACTIONS(1405), + [sym_crate] = ACTIONS(1405), + [sym_metavariable] = ACTIONS(1403), + [sym__raw_string_literal_start] = ACTIONS(1403), + [sym_float_literal] = ACTIONS(1403), }, - [478] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_QMARK] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1489), - [anon_sym_i8] = ACTIONS(1489), - [anon_sym_u16] = ACTIONS(1489), - [anon_sym_i16] = ACTIONS(1489), - [anon_sym_u32] = ACTIONS(1489), - [anon_sym_i32] = ACTIONS(1489), - [anon_sym_u64] = ACTIONS(1489), - [anon_sym_i64] = ACTIONS(1489), - [anon_sym_u128] = ACTIONS(1489), - [anon_sym_i128] = ACTIONS(1489), - [anon_sym_isize] = ACTIONS(1489), - [anon_sym_usize] = ACTIONS(1489), - [anon_sym_f32] = ACTIONS(1489), - [anon_sym_f64] = ACTIONS(1489), - [anon_sym_bool] = ACTIONS(1489), - [anon_sym_str] = ACTIONS(1489), - [anon_sym_char] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_AMP_AMP] = ACTIONS(1487), - [anon_sym_PIPE_PIPE] = ACTIONS(1487), - [anon_sym_LT_LT] = ACTIONS(1489), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_PLUS_EQ] = ACTIONS(1487), - [anon_sym_DASH_EQ] = ACTIONS(1487), - [anon_sym_STAR_EQ] = ACTIONS(1487), - [anon_sym_SLASH_EQ] = ACTIONS(1487), - [anon_sym_PERCENT_EQ] = ACTIONS(1487), - [anon_sym_CARET_EQ] = ACTIONS(1487), - [anon_sym_AMP_EQ] = ACTIONS(1487), - [anon_sym_PIPE_EQ] = ACTIONS(1487), - [anon_sym_LT_LT_EQ] = ACTIONS(1487), - [anon_sym_GT_GT_EQ] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ] = ACTIONS(1487), - [anon_sym_BANG_EQ] = ACTIONS(1487), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1487), - [anon_sym_LT_EQ] = ACTIONS(1487), - [anon_sym__] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), - [anon_sym_COMMA] = ACTIONS(1487), - [anon_sym_COLON_COLON] = ACTIONS(1487), - [anon_sym_POUND] = ACTIONS(1487), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_gen] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_ref] = ACTIONS(1489), - [sym_mutable_specifier] = ACTIONS(1489), - [sym_integer_literal] = ACTIONS(1487), - [aux_sym_string_literal_token1] = ACTIONS(1487), - [sym_char_literal] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_crate] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym__raw_string_literal_start] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), - }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), + [STATE(473)] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_u8] = ACTIONS(1427), + [anon_sym_i8] = ACTIONS(1427), + [anon_sym_u16] = ACTIONS(1427), + [anon_sym_i16] = ACTIONS(1427), + [anon_sym_u32] = ACTIONS(1427), + [anon_sym_i32] = ACTIONS(1427), + [anon_sym_u64] = ACTIONS(1427), + [anon_sym_i64] = ACTIONS(1427), + [anon_sym_u128] = ACTIONS(1427), + [anon_sym_i128] = ACTIONS(1427), + [anon_sym_isize] = ACTIONS(1427), + [anon_sym_usize] = ACTIONS(1427), + [anon_sym_f32] = ACTIONS(1427), + [anon_sym_f64] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_str] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1427), + [anon_sym_PERCENT] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_PIPE_PIPE] = ACTIONS(1425), + [anon_sym_LT_LT] = ACTIONS(1427), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_PLUS_EQ] = ACTIONS(1425), + [anon_sym_DASH_EQ] = ACTIONS(1425), + [anon_sym_STAR_EQ] = ACTIONS(1425), + [anon_sym_SLASH_EQ] = ACTIONS(1425), + [anon_sym_PERCENT_EQ] = ACTIONS(1425), + [anon_sym_CARET_EQ] = ACTIONS(1425), + [anon_sym_AMP_EQ] = ACTIONS(1425), + [anon_sym_PIPE_EQ] = ACTIONS(1425), + [anon_sym_LT_LT_EQ] = ACTIONS(1425), + [anon_sym_GT_GT_EQ] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ] = ACTIONS(1425), + [anon_sym_BANG_EQ] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_gen] = ACTIONS(1427), + [anon_sym_union] = ACTIONS(1427), + [anon_sym_ref] = ACTIONS(1427), + [sym_mutable_specifier] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1425), + [aux_sym_string_literal_token1] = ACTIONS(1425), + [sym_char_literal] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1427), + [sym_super] = ACTIONS(1427), + [sym_crate] = ACTIONS(1427), + [sym_metavariable] = ACTIONS(1425), + [sym__raw_string_literal_start] = ACTIONS(1425), + [sym_float_literal] = ACTIONS(1425), + }, + [STATE(474)] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), [sym_identifier] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1407), [anon_sym_LBRACK] = ACTIONS(1407), @@ -69623,9 +69319,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1407), [sym_float_literal] = ACTIONS(1407), }, - [480] = { + [STATE(475)] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym__] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_ref] = ACTIONS(1493), + [sym_mutable_specifier] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), + }, + [STATE(476)] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_identifier] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym__] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_gen] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_ref] = ACTIONS(1501), + [sym_mutable_specifier] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym__raw_string_literal_start] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), + }, + [STATE(477)] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_identifier] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_u8] = ACTIONS(1401), + [anon_sym_i8] = ACTIONS(1401), + [anon_sym_u16] = ACTIONS(1401), + [anon_sym_i16] = ACTIONS(1401), + [anon_sym_u32] = ACTIONS(1401), + [anon_sym_i32] = ACTIONS(1401), + [anon_sym_u64] = ACTIONS(1401), + [anon_sym_i64] = ACTIONS(1401), + [anon_sym_u128] = ACTIONS(1401), + [anon_sym_i128] = ACTIONS(1401), + [anon_sym_isize] = ACTIONS(1401), + [anon_sym_usize] = ACTIONS(1401), + [anon_sym_f32] = ACTIONS(1401), + [anon_sym_f64] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_str] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1401), + [anon_sym_GT_GT] = ACTIONS(1401), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_EQ_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT_EQ] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1399), + [anon_sym__] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_gen] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_ref] = ACTIONS(1401), + [sym_mutable_specifier] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1399), + [aux_sym_string_literal_token1] = ACTIONS(1399), + [sym_char_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_crate] = ACTIONS(1401), + [sym_metavariable] = ACTIONS(1399), + [sym__raw_string_literal_start] = ACTIONS(1399), + [sym_float_literal] = ACTIONS(1399), + }, + [STATE(478)] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_ref] = ACTIONS(1505), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym__raw_string_literal_start] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), + }, + [STATE(479)] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_identifier] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_ref] = ACTIONS(1443), + [sym_mutable_specifier] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1697), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1697), + [anon_sym_gen] = ACTIONS(1697), + [anon_sym_union] = ACTIONS(1697), + [anon_sym_ref] = ACTIONS(1697), + [sym_mutable_specifier] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1699), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1699), + [sym_float_literal] = ACTIONS(1699), + }, + [STATE(481)] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), [sym_identifier] = ACTIONS(1439), [anon_sym_LPAREN] = ACTIONS(1437), [anon_sym_LBRACK] = ACTIONS(1437), @@ -69706,512 +69900,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1437), [sym_float_literal] = ACTIONS(1437), }, - [481] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_u8] = ACTIONS(1279), - [anon_sym_i8] = ACTIONS(1279), - [anon_sym_u16] = ACTIONS(1279), - [anon_sym_i16] = ACTIONS(1279), - [anon_sym_u32] = ACTIONS(1279), - [anon_sym_i32] = ACTIONS(1279), - [anon_sym_u64] = ACTIONS(1279), - [anon_sym_i64] = ACTIONS(1279), - [anon_sym_u128] = ACTIONS(1279), - [anon_sym_i128] = ACTIONS(1279), - [anon_sym_isize] = ACTIONS(1279), - [anon_sym_usize] = ACTIONS(1279), - [anon_sym_f32] = ACTIONS(1279), - [anon_sym_f64] = ACTIONS(1279), - [anon_sym_bool] = ACTIONS(1279), - [anon_sym_str] = ACTIONS(1279), - [anon_sym_char] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_LT_LT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_CARET_EQ] = ACTIONS(1277), - [anon_sym_AMP_EQ] = ACTIONS(1277), - [anon_sym_PIPE_EQ] = ACTIONS(1277), - [anon_sym_LT_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_GT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ] = ACTIONS(1277), - [anon_sym_BANG_EQ] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym__] = ACTIONS(1279), - [anon_sym_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1277), - [anon_sym_POUND] = ACTIONS(1277), - [anon_sym_as] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_gen] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1279), - [sym_mutable_specifier] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [aux_sym_string_literal_token1] = ACTIONS(1277), - [sym_char_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(1279), - [anon_sym_false] = ACTIONS(1279), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1279), - [sym_crate] = ACTIONS(1279), - [sym_metavariable] = ACTIONS(1277), - [sym__raw_string_literal_start] = ACTIONS(1277), - [sym_float_literal] = ACTIONS(1277), - }, - [482] = { + [STATE(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_u8] = ACTIONS(1431), - [anon_sym_i8] = ACTIONS(1431), - [anon_sym_u16] = ACTIONS(1431), - [anon_sym_i16] = ACTIONS(1431), - [anon_sym_u32] = ACTIONS(1431), - [anon_sym_i32] = ACTIONS(1431), - [anon_sym_u64] = ACTIONS(1431), - [anon_sym_i64] = ACTIONS(1431), - [anon_sym_u128] = ACTIONS(1431), - [anon_sym_i128] = ACTIONS(1431), - [anon_sym_isize] = ACTIONS(1431), - [anon_sym_usize] = ACTIONS(1431), - [anon_sym_f32] = ACTIONS(1431), - [anon_sym_f64] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_str] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_PIPE_PIPE] = ACTIONS(1429), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1429), - [anon_sym_DASH_EQ] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1429), - [anon_sym_SLASH_EQ] = ACTIONS(1429), - [anon_sym_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_CARET_EQ] = ACTIONS(1429), - [anon_sym_AMP_EQ] = ACTIONS(1429), - [anon_sym_PIPE_EQ] = ACTIONS(1429), - [anon_sym_LT_LT_EQ] = ACTIONS(1429), - [anon_sym_GT_GT_EQ] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT_EQ] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym__] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_gen] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_ref] = ACTIONS(1431), - [sym_mutable_specifier] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1429), - [aux_sym_string_literal_token1] = ACTIONS(1429), - [sym_char_literal] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_u8] = ACTIONS(1419), + [anon_sym_i8] = ACTIONS(1419), + [anon_sym_u16] = ACTIONS(1419), + [anon_sym_i16] = ACTIONS(1419), + [anon_sym_u32] = ACTIONS(1419), + [anon_sym_i32] = ACTIONS(1419), + [anon_sym_u64] = ACTIONS(1419), + [anon_sym_i64] = ACTIONS(1419), + [anon_sym_u128] = ACTIONS(1419), + [anon_sym_i128] = ACTIONS(1419), + [anon_sym_isize] = ACTIONS(1419), + [anon_sym_usize] = ACTIONS(1419), + [anon_sym_f32] = ACTIONS(1419), + [anon_sym_f64] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_str] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1417), + [anon_sym_DASH_EQ] = ACTIONS(1417), + [anon_sym_STAR_EQ] = ACTIONS(1417), + [anon_sym_SLASH_EQ] = ACTIONS(1417), + [anon_sym_PERCENT_EQ] = ACTIONS(1417), + [anon_sym_CARET_EQ] = ACTIONS(1417), + [anon_sym_AMP_EQ] = ACTIONS(1417), + [anon_sym_PIPE_EQ] = ACTIONS(1417), + [anon_sym_LT_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1417), + [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym__] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1417), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_gen] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1419), + [sym_mutable_specifier] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1417), + [aux_sym_string_literal_token1] = ACTIONS(1417), + [sym_char_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_crate] = ACTIONS(1419), + [sym_metavariable] = ACTIONS(1417), + [sym__raw_string_literal_start] = ACTIONS(1417), + [sym_float_literal] = ACTIONS(1417), + }, + [STATE(483)] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_identifier] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_u8] = ACTIONS(1481), + [anon_sym_i8] = ACTIONS(1481), + [anon_sym_u16] = ACTIONS(1481), + [anon_sym_i16] = ACTIONS(1481), + [anon_sym_u32] = ACTIONS(1481), + [anon_sym_i32] = ACTIONS(1481), + [anon_sym_u64] = ACTIONS(1481), + [anon_sym_i64] = ACTIONS(1481), + [anon_sym_u128] = ACTIONS(1481), + [anon_sym_i128] = ACTIONS(1481), + [anon_sym_isize] = ACTIONS(1481), + [anon_sym_usize] = ACTIONS(1481), + [anon_sym_f32] = ACTIONS(1481), + [anon_sym_f64] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_str] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1479), + [anon_sym_DASH_EQ] = ACTIONS(1479), + [anon_sym_STAR_EQ] = ACTIONS(1479), + [anon_sym_SLASH_EQ] = ACTIONS(1479), + [anon_sym_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_CARET_EQ] = ACTIONS(1479), + [anon_sym_AMP_EQ] = ACTIONS(1479), + [anon_sym_PIPE_EQ] = ACTIONS(1479), + [anon_sym_LT_LT_EQ] = ACTIONS(1479), + [anon_sym_GT_GT_EQ] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1479), + [anon_sym_BANG_EQ] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT_EQ] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_gen] = ACTIONS(1481), + [anon_sym_union] = ACTIONS(1481), + [anon_sym_ref] = ACTIONS(1481), + [sym_mutable_specifier] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1479), + [aux_sym_string_literal_token1] = ACTIONS(1479), + [sym_char_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_crate] = ACTIONS(1431), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1429), - [sym_float_literal] = ACTIONS(1429), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1479), + [sym__raw_string_literal_start] = ACTIONS(1479), + [sym_float_literal] = ACTIONS(1479), }, - [483] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3534), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [484] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3416), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [STATE(484)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3540), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [485] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3374), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(485)] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [486] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3530), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_identifier] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_ref] = ACTIONS(1459), + [sym_mutable_specifier] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), + }, + [STATE(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [487] = { + [sym_identifier] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_ref] = ACTIONS(1473), + [sym_mutable_specifier] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), + }, + [STATE(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1699), [sym_identifier] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_macro_rules_BANG] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1489), [anon_sym_u8] = ACTIONS(1701), [anon_sym_i8] = ACTIONS(1701), [anon_sym_u16] = ACTIONS(1701), @@ -70229,47 +70342,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1701), [anon_sym_str] = ACTIONS(1701), [anon_sym_char] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1487), [anon_sym_const] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), [anon_sym_default] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), [anon_sym_gen] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_impl] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_mod] = ACTIONS(1701), - [anon_sym_pub] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_trait] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), [anon_sym_union] = ACTIONS(1701), - [anon_sym_unsafe] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_move] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1699), - [sym_char_literal] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1701), + [sym_integer_literal] = ACTIONS(1703), + [aux_sym_string_literal_token1] = ACTIONS(1703), + [sym_char_literal] = ACTIONS(1703), [anon_sym_true] = ACTIONS(1701), [anon_sym_false] = ACTIONS(1701), [anon_sym_SLASH_SLASH] = ACTIONS(103), @@ -70277,1390 +70394,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1701), [sym_super] = ACTIONS(1701), [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), + [sym_metavariable] = ACTIONS(1703), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1703), }, - [488] = { + [STATE(488)] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_macro_rules_BANG] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u128] = ACTIONS(1705), - [anon_sym_i128] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_str] = ACTIONS(1705), - [anon_sym_char] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_fn] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_gen] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_impl] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_mod] = ACTIONS(1705), - [anon_sym_pub] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_trait] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_union] = ACTIONS(1705), - [anon_sym_unsafe] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_move] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [sym_integer_literal] = ACTIONS(1703), - [aux_sym_string_literal_token1] = ACTIONS(1703), - [sym_char_literal] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_QMARK] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1397), + [anon_sym_i8] = ACTIONS(1397), + [anon_sym_u16] = ACTIONS(1397), + [anon_sym_i16] = ACTIONS(1397), + [anon_sym_u32] = ACTIONS(1397), + [anon_sym_i32] = ACTIONS(1397), + [anon_sym_u64] = ACTIONS(1397), + [anon_sym_i64] = ACTIONS(1397), + [anon_sym_u128] = ACTIONS(1397), + [anon_sym_i128] = ACTIONS(1397), + [anon_sym_isize] = ACTIONS(1397), + [anon_sym_usize] = ACTIONS(1397), + [anon_sym_f32] = ACTIONS(1397), + [anon_sym_f64] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_str] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_PLUS_EQ] = ACTIONS(1395), + [anon_sym_DASH_EQ] = ACTIONS(1395), + [anon_sym_STAR_EQ] = ACTIONS(1395), + [anon_sym_SLASH_EQ] = ACTIONS(1395), + [anon_sym_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_CARET_EQ] = ACTIONS(1395), + [anon_sym_AMP_EQ] = ACTIONS(1395), + [anon_sym_PIPE_EQ] = ACTIONS(1395), + [anon_sym_LT_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_GT_EQ] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1395), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_gen] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_ref] = ACTIONS(1397), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1395), + [aux_sym_string_literal_token1] = ACTIONS(1395), + [sym_char_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_crate] = ACTIONS(1705), - [sym_metavariable] = ACTIONS(1703), - [sym__raw_string_literal_start] = ACTIONS(1703), - [sym_float_literal] = ACTIONS(1703), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_crate] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1395), + [sym__raw_string_literal_start] = ACTIONS(1395), + [sym_float_literal] = ACTIONS(1395), }, - [489] = { + [STATE(489)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_last_match_arm] = STATE(3439), + [sym_match_pattern] = STATE(3490), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_macro_rules_BANG] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u128] = ACTIONS(1709), - [anon_sym_i128] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_str] = ACTIONS(1709), - [anon_sym_char] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_default] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_gen] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_impl] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_mod] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_trait] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [sym_integer_literal] = ACTIONS(1707), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1709), - [sym_super] = ACTIONS(1709), - [sym_crate] = ACTIONS(1709), - [sym_metavariable] = ACTIONS(1707), - [sym__raw_string_literal_start] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), - }, - [490] = { + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_macro_rules_BANG] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u128] = ACTIONS(1713), - [anon_sym_i128] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_str] = ACTIONS(1713), - [anon_sym_char] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_gen] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_impl] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_pub] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_trait] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_unsafe] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1711), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1713), - [sym_super] = ACTIONS(1713), - [sym_crate] = ACTIONS(1713), - [sym_metavariable] = ACTIONS(1711), - [sym__raw_string_literal_start] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), - }, - [491] = { + [sym_identifier] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u128] = ACTIONS(1423), + [anon_sym_i128] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_str] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_PERCENT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1423), + [anon_sym_GT_GT] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_gen] = ACTIONS(1423), + [anon_sym_union] = ACTIONS(1423), + [anon_sym_ref] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1423), + [sym_super] = ACTIONS(1423), + [sym_crate] = ACTIONS(1423), + [sym_metavariable] = ACTIONS(1421), + [sym__raw_string_literal_start] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), + }, + [STATE(491)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_arm] = STATE(1424), + [sym_match_pattern] = STATE(3500), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_macro_rules_BANG] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u128] = ACTIONS(1717), - [anon_sym_i128] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_str] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_gen] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [sym_integer_literal] = ACTIONS(1715), - [aux_sym_string_literal_token1] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_crate] = ACTIONS(1717), - [sym_metavariable] = ACTIONS(1715), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1715), - }, - [492] = { - [sym_line_comment] = STATE(492), - [sym_block_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_macro_rules_BANG] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u128] = ACTIONS(1721), - [anon_sym_i128] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_str] = ACTIONS(1721), - [anon_sym_char] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_gen] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_impl] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_mod] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_trait] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [sym_integer_literal] = ACTIONS(1719), - [aux_sym_string_literal_token1] = ACTIONS(1719), - [sym_char_literal] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_crate] = ACTIONS(1721), - [sym_metavariable] = ACTIONS(1719), - [sym__raw_string_literal_start] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), - }, - [493] = { - [sym_line_comment] = STATE(493), - [sym_block_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_macro_rules_BANG] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u128] = ACTIONS(1725), - [anon_sym_i128] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_str] = ACTIONS(1725), - [anon_sym_char] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(769), + [sym_identifier] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1711), + [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_DASH] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1720), [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_fn] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_gen] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_impl] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_pub] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_trait] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_union] = ACTIONS(1725), - [anon_sym_unsafe] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [sym_integer_literal] = ACTIONS(1723), - [aux_sym_string_literal_token1] = ACTIONS(1723), - [sym_char_literal] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_crate] = ACTIONS(1725), - [sym_metavariable] = ACTIONS(1723), - [sym__raw_string_literal_start] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), - }, - [494] = { - [sym_line_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_macro_rules_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u128] = ACTIONS(1729), - [anon_sym_i128] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_str] = ACTIONS(1729), - [anon_sym_char] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_fn] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_gen] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_impl] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_mod] = ACTIONS(1729), - [anon_sym_pub] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_trait] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsafe] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [sym_integer_literal] = ACTIONS(1727), - [aux_sym_string_literal_token1] = ACTIONS(1727), - [sym_char_literal] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_crate] = ACTIONS(1729), - [sym_metavariable] = ACTIONS(1727), - [sym__raw_string_literal_start] = ACTIONS(1727), - [sym_float_literal] = ACTIONS(1727), - }, - [495] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_macro_rules_BANG] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_fn] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_gen] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_impl] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1733), - [anon_sym_pub] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_trait] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [sym_integer_literal] = ACTIONS(1731), - [aux_sym_string_literal_token1] = ACTIONS(1731), - [sym_char_literal] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_crate] = ACTIONS(1733), - [sym_metavariable] = ACTIONS(1731), - [sym__raw_string_literal_start] = ACTIONS(1731), - [sym_float_literal] = ACTIONS(1731), - }, - [496] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_macro_rules_BANG] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u128] = ACTIONS(1737), - [anon_sym_i128] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_str] = ACTIONS(1737), - [anon_sym_char] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym__] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1732), [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_gen] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_impl] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_mod] = ACTIONS(1737), - [anon_sym_pub] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_trait] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [sym_integer_literal] = ACTIONS(1735), - [aux_sym_string_literal_token1] = ACTIONS(1735), - [sym_char_literal] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_crate] = ACTIONS(1737), - [sym_metavariable] = ACTIONS(1735), - [sym__raw_string_literal_start] = ACTIONS(1735), - [sym_float_literal] = ACTIONS(1735), - }, - [497] = { - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_macro_rules_BANG] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u128] = ACTIONS(1741), - [anon_sym_i128] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_str] = ACTIONS(1741), - [anon_sym_char] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(1738), [anon_sym_const] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_fn] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_gen] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_impl] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_mod] = ACTIONS(1741), - [anon_sym_pub] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_trait] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_unsafe] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [sym_integer_literal] = ACTIONS(1739), - [aux_sym_string_literal_token1] = ACTIONS(1739), - [sym_char_literal] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_crate] = ACTIONS(1741), - [sym_metavariable] = ACTIONS(1739), - [sym__raw_string_literal_start] = ACTIONS(1739), - [sym_float_literal] = ACTIONS(1739), - }, - [498] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_macro_rules_BANG] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u128] = ACTIONS(1745), - [anon_sym_i128] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_str] = ACTIONS(1745), - [anon_sym_char] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_fn] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_impl] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_pub] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_trait] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_unsafe] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_move] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [sym_integer_literal] = ACTIONS(1743), - [aux_sym_string_literal_token1] = ACTIONS(1743), - [sym_char_literal] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_crate] = ACTIONS(1745), - [sym_metavariable] = ACTIONS(1743), - [sym__raw_string_literal_start] = ACTIONS(1743), - [sym_float_literal] = ACTIONS(1743), - }, - [499] = { - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u128] = ACTIONS(1749), - [anon_sym_i128] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_str] = ACTIONS(1749), - [anon_sym_char] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [anon_sym_fn] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_gen] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_impl] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_loop] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_mod] = ACTIONS(1749), - [anon_sym_pub] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_trait] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_union] = ACTIONS(1749), - [anon_sym_unsafe] = ACTIONS(1749), - [anon_sym_use] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_extern] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_move] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [sym_integer_literal] = ACTIONS(1747), - [aux_sym_string_literal_token1] = ACTIONS(1747), - [sym_char_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_crate] = ACTIONS(1749), - [sym_metavariable] = ACTIONS(1747), - [sym__raw_string_literal_start] = ACTIONS(1747), - [sym_float_literal] = ACTIONS(1747), - }, - [500] = { - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_macro_rules_BANG] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u128] = ACTIONS(1753), - [anon_sym_i128] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_str] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_DOT_DOT] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_fn] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_gen] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_impl] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_mod] = ACTIONS(1753), - [anon_sym_pub] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_trait] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_unsafe] = ACTIONS(1753), - [anon_sym_use] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_move] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1751), - [aux_sym_string_literal_token1] = ACTIONS(1751), - [sym_char_literal] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1751), - [sym__raw_string_literal_start] = ACTIONS(1751), - [sym_float_literal] = ACTIONS(1751), - }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_macro_rules_BANG] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u128] = ACTIONS(1757), - [anon_sym_i128] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_str] = ACTIONS(1757), - [anon_sym_char] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_impl] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_mod] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_trait] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_move] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1755), - [aux_sym_string_literal_token1] = ACTIONS(1755), - [sym_char_literal] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1755), - [sym__raw_string_literal_start] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), - }, - [502] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_macro_rules_BANG] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u128] = ACTIONS(1761), - [anon_sym_i128] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_str] = ACTIONS(1761), - [anon_sym_char] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_async] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_gen] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_impl] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1761), - [anon_sym_pub] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_trait] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_move] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1761), - [sym_integer_literal] = ACTIONS(1759), - [aux_sym_string_literal_token1] = ACTIONS(1759), - [sym_char_literal] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1761), - [sym_super] = ACTIONS(1761), - [sym_crate] = ACTIONS(1761), - [sym_metavariable] = ACTIONS(1759), - [sym__raw_string_literal_start] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - }, - [503] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_macro_rules_BANG] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u128] = ACTIONS(1765), - [anon_sym_i128] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_str] = ACTIONS(1765), - [anon_sym_char] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_gen] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_trait] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_move] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [sym_integer_literal] = ACTIONS(1763), - [aux_sym_string_literal_token1] = ACTIONS(1763), - [sym_char_literal] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_crate] = ACTIONS(1765), - [sym_metavariable] = ACTIONS(1763), - [sym__raw_string_literal_start] = ACTIONS(1763), - [sym_float_literal] = ACTIONS(1763), - }, - [504] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_macro_rules_BANG] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u128] = ACTIONS(1769), - [anon_sym_i128] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_str] = ACTIONS(1769), - [anon_sym_char] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_gen] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_impl] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_trait] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_move] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [sym_integer_literal] = ACTIONS(1767), - [aux_sym_string_literal_token1] = ACTIONS(1767), - [sym_char_literal] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_crate] = ACTIONS(1769), - [sym_metavariable] = ACTIONS(1767), - [sym__raw_string_literal_start] = ACTIONS(1767), - [sym_float_literal] = ACTIONS(1767), - }, - [505] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_gen] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_ref] = ACTIONS(1747), + [sym_mutable_specifier] = ACTIONS(1750), + [sym_integer_literal] = ACTIONS(1753), + [aux_sym_string_literal_token1] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_crate] = ACTIONS(1762), + [sym_metavariable] = ACTIONS(1765), + [sym__raw_string_literal_start] = ACTIONS(1768), + [sym_float_literal] = ACTIONS(1753), + }, + [STATE(492)] = { + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), [ts_builtin_sym_end] = ACTIONS(1771), [sym_identifier] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1771), @@ -71739,9 +70810,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1771), [sym_float_literal] = ACTIONS(1771), }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [STATE(493)] = { + [sym_line_comment] = STATE(493), + [sym_block_comment] = STATE(493), [ts_builtin_sym_end] = ACTIONS(1775), [sym_identifier] = ACTIONS(1777), [anon_sym_SEMI] = ACTIONS(1775), @@ -71820,9 +70891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1775), [sym_float_literal] = ACTIONS(1775), }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), + [STATE(494)] = { + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), [ts_builtin_sym_end] = ACTIONS(1779), [sym_identifier] = ACTIONS(1781), [anon_sym_SEMI] = ACTIONS(1779), @@ -71901,9 +70972,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1779), [sym_float_literal] = ACTIONS(1779), }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), + [STATE(495)] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), [ts_builtin_sym_end] = ACTIONS(1783), [sym_identifier] = ACTIONS(1785), [anon_sym_SEMI] = ACTIONS(1783), @@ -71982,9 +71053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1783), [sym_float_literal] = ACTIONS(1783), }, - [509] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), + [STATE(496)] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), [ts_builtin_sym_end] = ACTIONS(1787), [sym_identifier] = ACTIONS(1789), [anon_sym_SEMI] = ACTIONS(1787), @@ -72063,9 +71134,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1787), [sym_float_literal] = ACTIONS(1787), }, - [510] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), + [STATE(497)] = { + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), [ts_builtin_sym_end] = ACTIONS(1791), [sym_identifier] = ACTIONS(1793), [anon_sym_SEMI] = ACTIONS(1791), @@ -72144,9 +71215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1791), [sym_float_literal] = ACTIONS(1791), }, - [511] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), + [STATE(498)] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), [ts_builtin_sym_end] = ACTIONS(1795), [sym_identifier] = ACTIONS(1797), [anon_sym_SEMI] = ACTIONS(1795), @@ -72225,9 +71296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1795), [sym_float_literal] = ACTIONS(1795), }, - [512] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), + [STATE(499)] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(1799), [sym_identifier] = ACTIONS(1801), [anon_sym_SEMI] = ACTIONS(1799), @@ -72306,9 +71377,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1799), [sym_float_literal] = ACTIONS(1799), }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), + [STATE(500)] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_SEMI] = ACTIONS(1803), @@ -72387,9 +71458,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1803), [sym_float_literal] = ACTIONS(1803), }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [STATE(501)] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(1807), [sym_identifier] = ACTIONS(1809), [anon_sym_SEMI] = ACTIONS(1807), @@ -72468,9 +71539,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1807), [sym_float_literal] = ACTIONS(1807), }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [STATE(502)] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(1811), [sym_identifier] = ACTIONS(1813), [anon_sym_SEMI] = ACTIONS(1811), @@ -72549,9 +71620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1811), [sym_float_literal] = ACTIONS(1811), }, - [516] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), + [STATE(503)] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1815), [sym_identifier] = ACTIONS(1817), [anon_sym_SEMI] = ACTIONS(1815), @@ -72630,9 +71701,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1815), [sym_float_literal] = ACTIONS(1815), }, - [517] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), + [STATE(504)] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1819), [sym_identifier] = ACTIONS(1821), [anon_sym_SEMI] = ACTIONS(1819), @@ -72711,9 +71782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1819), [sym_float_literal] = ACTIONS(1819), }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [STATE(505)] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1823), [sym_identifier] = ACTIONS(1825), [anon_sym_SEMI] = ACTIONS(1823), @@ -72792,9 +71863,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1823), [sym_float_literal] = ACTIONS(1823), }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [STATE(506)] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1827), [sym_identifier] = ACTIONS(1829), [anon_sym_SEMI] = ACTIONS(1827), @@ -72873,9 +71944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1827), [sym_float_literal] = ACTIONS(1827), }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [STATE(507)] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1831), [sym_identifier] = ACTIONS(1833), [anon_sym_SEMI] = ACTIONS(1831), @@ -72954,9 +72025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1831), [sym_float_literal] = ACTIONS(1831), }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [STATE(508)] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1835), [sym_identifier] = ACTIONS(1837), [anon_sym_SEMI] = ACTIONS(1835), @@ -73035,9 +72106,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1835), [sym_float_literal] = ACTIONS(1835), }, - [522] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [STATE(509)] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1839), [sym_identifier] = ACTIONS(1841), [anon_sym_SEMI] = ACTIONS(1839), @@ -73116,9 +72187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1839), [sym_float_literal] = ACTIONS(1839), }, - [523] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [STATE(510)] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1843), [sym_identifier] = ACTIONS(1845), [anon_sym_SEMI] = ACTIONS(1843), @@ -73197,9 +72268,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1843), [sym_float_literal] = ACTIONS(1843), }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [STATE(511)] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1847), [sym_identifier] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1847), @@ -73278,9 +72349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1847), [sym_float_literal] = ACTIONS(1847), }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [STATE(512)] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(1851), [sym_identifier] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1851), @@ -73359,9 +72430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1851), [sym_float_literal] = ACTIONS(1851), }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [STATE(513)] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1855), [sym_identifier] = ACTIONS(1857), [anon_sym_SEMI] = ACTIONS(1855), @@ -73440,9 +72511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1855), [sym_float_literal] = ACTIONS(1855), }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [STATE(514)] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(1861), [anon_sym_SEMI] = ACTIONS(1859), @@ -73521,9 +72592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1859), [sym_float_literal] = ACTIONS(1859), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [STATE(515)] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1863), [sym_identifier] = ACTIONS(1865), [anon_sym_SEMI] = ACTIONS(1863), @@ -73602,9 +72673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1863), [sym_float_literal] = ACTIONS(1863), }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [STATE(516)] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1867), [sym_identifier] = ACTIONS(1869), [anon_sym_SEMI] = ACTIONS(1867), @@ -73683,9 +72754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1867), [sym_float_literal] = ACTIONS(1867), }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [STATE(517)] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1871), [sym_identifier] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1871), @@ -73764,9 +72835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1871), [sym_float_literal] = ACTIONS(1871), }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [STATE(518)] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1875), [sym_identifier] = ACTIONS(1877), [anon_sym_SEMI] = ACTIONS(1875), @@ -73845,9 +72916,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1875), [sym_float_literal] = ACTIONS(1875), }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [STATE(519)] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1879), [sym_identifier] = ACTIONS(1881), [anon_sym_SEMI] = ACTIONS(1879), @@ -73926,9 +72997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1879), [sym_float_literal] = ACTIONS(1879), }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [STATE(520)] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1883), [sym_identifier] = ACTIONS(1885), [anon_sym_SEMI] = ACTIONS(1883), @@ -74007,9 +73078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1883), [sym_float_literal] = ACTIONS(1883), }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [STATE(521)] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1887), [sym_identifier] = ACTIONS(1889), [anon_sym_SEMI] = ACTIONS(1887), @@ -74088,9 +73159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1887), [sym_float_literal] = ACTIONS(1887), }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [STATE(522)] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1891), [sym_identifier] = ACTIONS(1893), [anon_sym_SEMI] = ACTIONS(1891), @@ -74169,9 +73240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1891), [sym_float_literal] = ACTIONS(1891), }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [STATE(523)] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1895), [sym_identifier] = ACTIONS(1897), [anon_sym_SEMI] = ACTIONS(1895), @@ -74250,9 +73321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1895), [sym_float_literal] = ACTIONS(1895), }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [STATE(524)] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1899), [sym_identifier] = ACTIONS(1901), [anon_sym_SEMI] = ACTIONS(1899), @@ -74331,9 +73402,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1899), [sym_float_literal] = ACTIONS(1899), }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [STATE(525)] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1903), [sym_identifier] = ACTIONS(1905), [anon_sym_SEMI] = ACTIONS(1903), @@ -74412,9 +73483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1903), [sym_float_literal] = ACTIONS(1903), }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [STATE(526)] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1907), [sym_identifier] = ACTIONS(1909), [anon_sym_SEMI] = ACTIONS(1907), @@ -74493,9 +73564,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1907), [sym_float_literal] = ACTIONS(1907), }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [STATE(527)] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1911), [sym_identifier] = ACTIONS(1913), [anon_sym_SEMI] = ACTIONS(1911), @@ -74574,9 +73645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1911), [sym_float_literal] = ACTIONS(1911), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [STATE(528)] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1915), [sym_identifier] = ACTIONS(1917), [anon_sym_SEMI] = ACTIONS(1915), @@ -74655,9 +73726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1915), [sym_float_literal] = ACTIONS(1915), }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [STATE(529)] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1919), [sym_identifier] = ACTIONS(1921), [anon_sym_SEMI] = ACTIONS(1919), @@ -74736,9 +73807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1919), [sym_float_literal] = ACTIONS(1919), }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [STATE(530)] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1923), [sym_identifier] = ACTIONS(1925), [anon_sym_SEMI] = ACTIONS(1923), @@ -74817,9 +73888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1923), [sym_float_literal] = ACTIONS(1923), }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [STATE(531)] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1927), [sym_identifier] = ACTIONS(1929), [anon_sym_SEMI] = ACTIONS(1927), @@ -74898,9 +73969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1927), [sym_float_literal] = ACTIONS(1927), }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1931), [sym_identifier] = ACTIONS(1933), [anon_sym_SEMI] = ACTIONS(1931), @@ -74979,9 +74050,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1931), [sym_float_literal] = ACTIONS(1931), }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1935), [sym_identifier] = ACTIONS(1937), [anon_sym_SEMI] = ACTIONS(1935), @@ -75060,9 +74131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1935), [sym_float_literal] = ACTIONS(1935), }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [STATE(534)] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1939), [sym_identifier] = ACTIONS(1941), [anon_sym_SEMI] = ACTIONS(1939), @@ -75141,9 +74212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1939), [sym_float_literal] = ACTIONS(1939), }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1943), [sym_identifier] = ACTIONS(1945), [anon_sym_SEMI] = ACTIONS(1943), @@ -75222,9 +74293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1943), [sym_float_literal] = ACTIONS(1943), }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1947), [sym_identifier] = ACTIONS(1949), [anon_sym_SEMI] = ACTIONS(1947), @@ -75303,9 +74374,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1947), [sym_float_literal] = ACTIONS(1947), }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1951), [sym_identifier] = ACTIONS(1953), [anon_sym_SEMI] = ACTIONS(1951), @@ -75384,9 +74455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1951), [sym_float_literal] = ACTIONS(1951), }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1955), [sym_identifier] = ACTIONS(1957), [anon_sym_SEMI] = ACTIONS(1955), @@ -75465,9 +74536,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1955), [sym_float_literal] = ACTIONS(1955), }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1959), [sym_identifier] = ACTIONS(1961), [anon_sym_SEMI] = ACTIONS(1959), @@ -75546,9 +74617,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1959), [sym_float_literal] = ACTIONS(1959), }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1963), [sym_identifier] = ACTIONS(1965), [anon_sym_SEMI] = ACTIONS(1963), @@ -75627,9 +74698,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1963), [sym_float_literal] = ACTIONS(1963), }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(1967), [sym_identifier] = ACTIONS(1969), [anon_sym_SEMI] = ACTIONS(1967), @@ -75708,9 +74779,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1967), [sym_float_literal] = ACTIONS(1967), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(1971), [sym_identifier] = ACTIONS(1973), [anon_sym_SEMI] = ACTIONS(1971), @@ -75789,9 +74860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1971), [sym_float_literal] = ACTIONS(1971), }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(1975), [sym_identifier] = ACTIONS(1977), [anon_sym_SEMI] = ACTIONS(1975), @@ -75870,9 +74941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1975), [sym_float_literal] = ACTIONS(1975), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(1979), [sym_identifier] = ACTIONS(1981), [anon_sym_SEMI] = ACTIONS(1979), @@ -75951,9 +75022,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1979), [sym_float_literal] = ACTIONS(1979), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [STATE(545)] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(1983), [sym_identifier] = ACTIONS(1985), [anon_sym_SEMI] = ACTIONS(1983), @@ -76032,9 +75103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1983), [sym_float_literal] = ACTIONS(1983), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(1987), [sym_identifier] = ACTIONS(1989), [anon_sym_SEMI] = ACTIONS(1987), @@ -76113,6489 +75184,6732 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1987), [sym_float_literal] = ACTIONS(1987), }, - [560] = { + [STATE(547)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(2891), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2625), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(2013), + [sym_identifier] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_macro_rules_BANG] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2013), + [anon_sym_u8] = ACTIONS(2015), + [anon_sym_i8] = ACTIONS(2015), + [anon_sym_u16] = ACTIONS(2015), + [anon_sym_i16] = ACTIONS(2015), + [anon_sym_u32] = ACTIONS(2015), + [anon_sym_i32] = ACTIONS(2015), + [anon_sym_u64] = ACTIONS(2015), + [anon_sym_i64] = ACTIONS(2015), + [anon_sym_u128] = ACTIONS(2015), + [anon_sym_i128] = ACTIONS(2015), + [anon_sym_isize] = ACTIONS(2015), + [anon_sym_usize] = ACTIONS(2015), + [anon_sym_f32] = ACTIONS(2015), + [anon_sym_f64] = ACTIONS(2015), + [anon_sym_bool] = ACTIONS(2015), + [anon_sym_str] = ACTIONS(2015), + [anon_sym_char] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_BANG] = ACTIONS(2013), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_COLON_COLON] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2015), + [anon_sym_async] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_default] = ACTIONS(2015), + [anon_sym_enum] = ACTIONS(2015), + [anon_sym_fn] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_gen] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_impl] = ACTIONS(2015), + [anon_sym_let] = ACTIONS(2015), + [anon_sym_loop] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_mod] = ACTIONS(2015), + [anon_sym_pub] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_static] = ACTIONS(2015), + [anon_sym_struct] = ACTIONS(2015), + [anon_sym_trait] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_unsafe] = ACTIONS(2015), + [anon_sym_use] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2015), + [anon_sym_yield] = ACTIONS(2015), + [anon_sym_move] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [sym_integer_literal] = ACTIONS(2013), + [aux_sym_string_literal_token1] = ACTIONS(2013), + [sym_char_literal] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2015), + [sym_super] = ACTIONS(2015), + [sym_crate] = ACTIONS(2015), + [sym_metavariable] = ACTIONS(2013), + [sym__raw_string_literal_start] = ACTIONS(2013), + [sym_float_literal] = ACTIONS(2013), + }, + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(2017), + [sym_identifier] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_macro_rules_BANG] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_u8] = ACTIONS(2019), + [anon_sym_i8] = ACTIONS(2019), + [anon_sym_u16] = ACTIONS(2019), + [anon_sym_i16] = ACTIONS(2019), + [anon_sym_u32] = ACTIONS(2019), + [anon_sym_i32] = ACTIONS(2019), + [anon_sym_u64] = ACTIONS(2019), + [anon_sym_i64] = ACTIONS(2019), + [anon_sym_u128] = ACTIONS(2019), + [anon_sym_i128] = ACTIONS(2019), + [anon_sym_isize] = ACTIONS(2019), + [anon_sym_usize] = ACTIONS(2019), + [anon_sym_f32] = ACTIONS(2019), + [anon_sym_f64] = ACTIONS(2019), + [anon_sym_bool] = ACTIONS(2019), + [anon_sym_str] = ACTIONS(2019), + [anon_sym_char] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_BANG] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_COLON_COLON] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_default] = ACTIONS(2019), + [anon_sym_enum] = ACTIONS(2019), + [anon_sym_fn] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_gen] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_impl] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_mod] = ACTIONS(2019), + [anon_sym_pub] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_static] = ACTIONS(2019), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_trait] = ACTIONS(2019), + [anon_sym_type] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2019), + [anon_sym_unsafe] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_yield] = ACTIONS(2019), + [anon_sym_move] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2019), + [sym_integer_literal] = ACTIONS(2017), + [aux_sym_string_literal_token1] = ACTIONS(2017), + [sym_char_literal] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2019), + [sym_super] = ACTIONS(2019), + [sym_crate] = ACTIONS(2019), + [sym_metavariable] = ACTIONS(2017), + [sym__raw_string_literal_start] = ACTIONS(2017), + [sym_float_literal] = ACTIONS(2017), + }, + [STATE(550)] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [ts_builtin_sym_end] = ACTIONS(2021), + [sym_identifier] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_macro_rules_BANG] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_u8] = ACTIONS(2023), + [anon_sym_i8] = ACTIONS(2023), + [anon_sym_u16] = ACTIONS(2023), + [anon_sym_i16] = ACTIONS(2023), + [anon_sym_u32] = ACTIONS(2023), + [anon_sym_i32] = ACTIONS(2023), + [anon_sym_u64] = ACTIONS(2023), + [anon_sym_i64] = ACTIONS(2023), + [anon_sym_u128] = ACTIONS(2023), + [anon_sym_i128] = ACTIONS(2023), + [anon_sym_isize] = ACTIONS(2023), + [anon_sym_usize] = ACTIONS(2023), + [anon_sym_f32] = ACTIONS(2023), + [anon_sym_f64] = ACTIONS(2023), + [anon_sym_bool] = ACTIONS(2023), + [anon_sym_str] = ACTIONS(2023), + [anon_sym_char] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_BANG] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_COLON_COLON] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(2023), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_default] = ACTIONS(2023), + [anon_sym_enum] = ACTIONS(2023), + [anon_sym_fn] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_gen] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_impl] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_mod] = ACTIONS(2023), + [anon_sym_pub] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_static] = ACTIONS(2023), + [anon_sym_struct] = ACTIONS(2023), + [anon_sym_trait] = ACTIONS(2023), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_union] = ACTIONS(2023), + [anon_sym_unsafe] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_yield] = ACTIONS(2023), + [anon_sym_move] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [sym_integer_literal] = ACTIONS(2021), + [aux_sym_string_literal_token1] = ACTIONS(2021), + [sym_char_literal] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2023), + [sym_super] = ACTIONS(2023), + [sym_crate] = ACTIONS(2023), + [sym_metavariable] = ACTIONS(2021), + [sym__raw_string_literal_start] = ACTIONS(2021), + [sym_float_literal] = ACTIONS(2021), + }, + [STATE(551)] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [ts_builtin_sym_end] = ACTIONS(2025), + [sym_identifier] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_macro_rules_BANG] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_u8] = ACTIONS(2027), + [anon_sym_i8] = ACTIONS(2027), + [anon_sym_u16] = ACTIONS(2027), + [anon_sym_i16] = ACTIONS(2027), + [anon_sym_u32] = ACTIONS(2027), + [anon_sym_i32] = ACTIONS(2027), + [anon_sym_u64] = ACTIONS(2027), + [anon_sym_i64] = ACTIONS(2027), + [anon_sym_u128] = ACTIONS(2027), + [anon_sym_i128] = ACTIONS(2027), + [anon_sym_isize] = ACTIONS(2027), + [anon_sym_usize] = ACTIONS(2027), + [anon_sym_f32] = ACTIONS(2027), + [anon_sym_f64] = ACTIONS(2027), + [anon_sym_bool] = ACTIONS(2027), + [anon_sym_str] = ACTIONS(2027), + [anon_sym_char] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_BANG] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_COLON_COLON] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_break] = ACTIONS(2027), + [anon_sym_const] = ACTIONS(2027), + [anon_sym_continue] = ACTIONS(2027), + [anon_sym_default] = ACTIONS(2027), + [anon_sym_enum] = ACTIONS(2027), + [anon_sym_fn] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_gen] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_impl] = ACTIONS(2027), + [anon_sym_let] = ACTIONS(2027), + [anon_sym_loop] = ACTIONS(2027), + [anon_sym_match] = ACTIONS(2027), + [anon_sym_mod] = ACTIONS(2027), + [anon_sym_pub] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_static] = ACTIONS(2027), + [anon_sym_struct] = ACTIONS(2027), + [anon_sym_trait] = ACTIONS(2027), + [anon_sym_type] = ACTIONS(2027), + [anon_sym_union] = ACTIONS(2027), + [anon_sym_unsafe] = ACTIONS(2027), + [anon_sym_use] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_extern] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_move] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2027), + [sym_integer_literal] = ACTIONS(2025), + [aux_sym_string_literal_token1] = ACTIONS(2025), + [sym_char_literal] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2027), + [sym_super] = ACTIONS(2027), + [sym_crate] = ACTIONS(2027), + [sym_metavariable] = ACTIONS(2025), + [sym__raw_string_literal_start] = ACTIONS(2025), + [sym_float_literal] = ACTIONS(2025), + }, + [STATE(552)] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(2029), + [sym_identifier] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_macro_rules_BANG] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_u8] = ACTIONS(2031), + [anon_sym_i8] = ACTIONS(2031), + [anon_sym_u16] = ACTIONS(2031), + [anon_sym_i16] = ACTIONS(2031), + [anon_sym_u32] = ACTIONS(2031), + [anon_sym_i32] = ACTIONS(2031), + [anon_sym_u64] = ACTIONS(2031), + [anon_sym_i64] = ACTIONS(2031), + [anon_sym_u128] = ACTIONS(2031), + [anon_sym_i128] = ACTIONS(2031), + [anon_sym_isize] = ACTIONS(2031), + [anon_sym_usize] = ACTIONS(2031), + [anon_sym_f32] = ACTIONS(2031), + [anon_sym_f64] = ACTIONS(2031), + [anon_sym_bool] = ACTIONS(2031), + [anon_sym_str] = ACTIONS(2031), + [anon_sym_char] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_COLON_COLON] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_default] = ACTIONS(2031), + [anon_sym_enum] = ACTIONS(2031), + [anon_sym_fn] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_gen] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_impl] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_loop] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_mod] = ACTIONS(2031), + [anon_sym_pub] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_static] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2031), + [anon_sym_trait] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_union] = ACTIONS(2031), + [anon_sym_unsafe] = ACTIONS(2031), + [anon_sym_use] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2031), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_move] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2031), + [sym_integer_literal] = ACTIONS(2029), + [aux_sym_string_literal_token1] = ACTIONS(2029), + [sym_char_literal] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2031), + [sym_super] = ACTIONS(2031), + [sym_crate] = ACTIONS(2031), + [sym_metavariable] = ACTIONS(2029), + [sym__raw_string_literal_start] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2029), + }, + [STATE(553)] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_macro_rules_BANG] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_u8] = ACTIONS(2035), + [anon_sym_i8] = ACTIONS(2035), + [anon_sym_u16] = ACTIONS(2035), + [anon_sym_i16] = ACTIONS(2035), + [anon_sym_u32] = ACTIONS(2035), + [anon_sym_i32] = ACTIONS(2035), + [anon_sym_u64] = ACTIONS(2035), + [anon_sym_i64] = ACTIONS(2035), + [anon_sym_u128] = ACTIONS(2035), + [anon_sym_i128] = ACTIONS(2035), + [anon_sym_isize] = ACTIONS(2035), + [anon_sym_usize] = ACTIONS(2035), + [anon_sym_f32] = ACTIONS(2035), + [anon_sym_f64] = ACTIONS(2035), + [anon_sym_bool] = ACTIONS(2035), + [anon_sym_str] = ACTIONS(2035), + [anon_sym_char] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_PIPE] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_COLON_COLON] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_default] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_fn] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_gen] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_impl] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_mod] = ACTIONS(2035), + [anon_sym_pub] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_static] = ACTIONS(2035), + [anon_sym_struct] = ACTIONS(2035), + [anon_sym_trait] = ACTIONS(2035), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_union] = ACTIONS(2035), + [anon_sym_unsafe] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_move] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [sym_integer_literal] = ACTIONS(2033), + [aux_sym_string_literal_token1] = ACTIONS(2033), + [sym_char_literal] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2035), + [sym_super] = ACTIONS(2035), + [sym_crate] = ACTIONS(2035), + [sym_metavariable] = ACTIONS(2033), + [sym__raw_string_literal_start] = ACTIONS(2033), + [sym_float_literal] = ACTIONS(2033), + }, + [STATE(554)] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_identifier] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_macro_rules_BANG] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_u8] = ACTIONS(2039), + [anon_sym_i8] = ACTIONS(2039), + [anon_sym_u16] = ACTIONS(2039), + [anon_sym_i16] = ACTIONS(2039), + [anon_sym_u32] = ACTIONS(2039), + [anon_sym_i32] = ACTIONS(2039), + [anon_sym_u64] = ACTIONS(2039), + [anon_sym_i64] = ACTIONS(2039), + [anon_sym_u128] = ACTIONS(2039), + [anon_sym_i128] = ACTIONS(2039), + [anon_sym_isize] = ACTIONS(2039), + [anon_sym_usize] = ACTIONS(2039), + [anon_sym_f32] = ACTIONS(2039), + [anon_sym_f64] = ACTIONS(2039), + [anon_sym_bool] = ACTIONS(2039), + [anon_sym_str] = ACTIONS(2039), + [anon_sym_char] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_COLON_COLON] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_fn] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_gen] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_impl] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_mod] = ACTIONS(2039), + [anon_sym_pub] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_trait] = ACTIONS(2039), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_unsafe] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_move] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [sym_integer_literal] = ACTIONS(2037), + [aux_sym_string_literal_token1] = ACTIONS(2037), + [sym_char_literal] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2039), + [sym_super] = ACTIONS(2039), + [sym_crate] = ACTIONS(2039), + [sym_metavariable] = ACTIONS(2037), + [sym__raw_string_literal_start] = ACTIONS(2037), + [sym_float_literal] = ACTIONS(2037), + }, + [STATE(555)] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_identifier] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_macro_rules_BANG] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_u8] = ACTIONS(2043), + [anon_sym_i8] = ACTIONS(2043), + [anon_sym_u16] = ACTIONS(2043), + [anon_sym_i16] = ACTIONS(2043), + [anon_sym_u32] = ACTIONS(2043), + [anon_sym_i32] = ACTIONS(2043), + [anon_sym_u64] = ACTIONS(2043), + [anon_sym_i64] = ACTIONS(2043), + [anon_sym_u128] = ACTIONS(2043), + [anon_sym_i128] = ACTIONS(2043), + [anon_sym_isize] = ACTIONS(2043), + [anon_sym_usize] = ACTIONS(2043), + [anon_sym_f32] = ACTIONS(2043), + [anon_sym_f64] = ACTIONS(2043), + [anon_sym_bool] = ACTIONS(2043), + [anon_sym_str] = ACTIONS(2043), + [anon_sym_char] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2041), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_fn] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_gen] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_impl] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_mod] = ACTIONS(2043), + [anon_sym_pub] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_union] = ACTIONS(2043), + [anon_sym_unsafe] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_move] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [sym_integer_literal] = ACTIONS(2041), + [aux_sym_string_literal_token1] = ACTIONS(2041), + [sym_char_literal] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2043), + [sym_super] = ACTIONS(2043), + [sym_crate] = ACTIONS(2043), + [sym_metavariable] = ACTIONS(2041), + [sym__raw_string_literal_start] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + }, + [STATE(556)] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(2045), + [sym_identifier] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_macro_rules_BANG] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_u8] = ACTIONS(2047), + [anon_sym_i8] = ACTIONS(2047), + [anon_sym_u16] = ACTIONS(2047), + [anon_sym_i16] = ACTIONS(2047), + [anon_sym_u32] = ACTIONS(2047), + [anon_sym_i32] = ACTIONS(2047), + [anon_sym_u64] = ACTIONS(2047), + [anon_sym_i64] = ACTIONS(2047), + [anon_sym_u128] = ACTIONS(2047), + [anon_sym_i128] = ACTIONS(2047), + [anon_sym_isize] = ACTIONS(2047), + [anon_sym_usize] = ACTIONS(2047), + [anon_sym_f32] = ACTIONS(2047), + [anon_sym_f64] = ACTIONS(2047), + [anon_sym_bool] = ACTIONS(2047), + [anon_sym_str] = ACTIONS(2047), + [anon_sym_char] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_BANG] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2045), + [anon_sym_COLON_COLON] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(2045), + [anon_sym_SQUOTE] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_default] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_fn] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_gen] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_impl] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_mod] = ACTIONS(2047), + [anon_sym_pub] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_static] = ACTIONS(2047), + [anon_sym_struct] = ACTIONS(2047), + [anon_sym_trait] = ACTIONS(2047), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_union] = ACTIONS(2047), + [anon_sym_unsafe] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_move] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [sym_integer_literal] = ACTIONS(2045), + [aux_sym_string_literal_token1] = ACTIONS(2045), + [sym_char_literal] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2047), + [sym_super] = ACTIONS(2047), + [sym_crate] = ACTIONS(2047), + [sym_metavariable] = ACTIONS(2045), + [sym__raw_string_literal_start] = ACTIONS(2045), + [sym_float_literal] = ACTIONS(2045), + }, + [STATE(557)] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_macro_rules_BANG] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2049), + [anon_sym_u8] = ACTIONS(2051), + [anon_sym_i8] = ACTIONS(2051), + [anon_sym_u16] = ACTIONS(2051), + [anon_sym_i16] = ACTIONS(2051), + [anon_sym_u32] = ACTIONS(2051), + [anon_sym_i32] = ACTIONS(2051), + [anon_sym_u64] = ACTIONS(2051), + [anon_sym_i64] = ACTIONS(2051), + [anon_sym_u128] = ACTIONS(2051), + [anon_sym_i128] = ACTIONS(2051), + [anon_sym_isize] = ACTIONS(2051), + [anon_sym_usize] = ACTIONS(2051), + [anon_sym_f32] = ACTIONS(2051), + [anon_sym_f64] = ACTIONS(2051), + [anon_sym_bool] = ACTIONS(2051), + [anon_sym_str] = ACTIONS(2051), + [anon_sym_char] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2049), + [anon_sym_COLON_COLON] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), + [anon_sym_fn] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_gen] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_impl] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_mod] = ACTIONS(2051), + [anon_sym_pub] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2051), + [anon_sym_trait] = ACTIONS(2051), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_union] = ACTIONS(2051), + [anon_sym_unsafe] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2051), + [anon_sym_move] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [sym_integer_literal] = ACTIONS(2049), + [aux_sym_string_literal_token1] = ACTIONS(2049), + [sym_char_literal] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2051), + [sym_super] = ACTIONS(2051), + [sym_crate] = ACTIONS(2051), + [sym_metavariable] = ACTIONS(2049), + [sym__raw_string_literal_start] = ACTIONS(2049), + [sym_float_literal] = ACTIONS(2049), + }, + [STATE(558)] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_macro_rules_BANG] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_u8] = ACTIONS(2055), + [anon_sym_i8] = ACTIONS(2055), + [anon_sym_u16] = ACTIONS(2055), + [anon_sym_i16] = ACTIONS(2055), + [anon_sym_u32] = ACTIONS(2055), + [anon_sym_i32] = ACTIONS(2055), + [anon_sym_u64] = ACTIONS(2055), + [anon_sym_i64] = ACTIONS(2055), + [anon_sym_u128] = ACTIONS(2055), + [anon_sym_i128] = ACTIONS(2055), + [anon_sym_isize] = ACTIONS(2055), + [anon_sym_usize] = ACTIONS(2055), + [anon_sym_f32] = ACTIONS(2055), + [anon_sym_f64] = ACTIONS(2055), + [anon_sym_bool] = ACTIONS(2055), + [anon_sym_str] = ACTIONS(2055), + [anon_sym_char] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_BANG] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [anon_sym_COLON_COLON] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_default] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_gen] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_impl] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_mod] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_static] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_trait] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2055), + [anon_sym_move] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [sym_integer_literal] = ACTIONS(2053), + [aux_sym_string_literal_token1] = ACTIONS(2053), + [sym_char_literal] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2055), + [sym_super] = ACTIONS(2055), + [sym_crate] = ACTIONS(2055), + [sym_metavariable] = ACTIONS(2053), + [sym__raw_string_literal_start] = ACTIONS(2053), + [sym_float_literal] = ACTIONS(2053), + }, + [STATE(559)] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [ts_builtin_sym_end] = ACTIONS(2057), + [sym_identifier] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_macro_rules_BANG] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_u8] = ACTIONS(2059), + [anon_sym_i8] = ACTIONS(2059), + [anon_sym_u16] = ACTIONS(2059), + [anon_sym_i16] = ACTIONS(2059), + [anon_sym_u32] = ACTIONS(2059), + [anon_sym_i32] = ACTIONS(2059), + [anon_sym_u64] = ACTIONS(2059), + [anon_sym_i64] = ACTIONS(2059), + [anon_sym_u128] = ACTIONS(2059), + [anon_sym_i128] = ACTIONS(2059), + [anon_sym_isize] = ACTIONS(2059), + [anon_sym_usize] = ACTIONS(2059), + [anon_sym_f32] = ACTIONS(2059), + [anon_sym_f64] = ACTIONS(2059), + [anon_sym_bool] = ACTIONS(2059), + [anon_sym_str] = ACTIONS(2059), + [anon_sym_char] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2057), + [anon_sym_COLON_COLON] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_async] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_default] = ACTIONS(2059), + [anon_sym_enum] = ACTIONS(2059), + [anon_sym_fn] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_gen] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_impl] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_mod] = ACTIONS(2059), + [anon_sym_pub] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(2059), + [anon_sym_struct] = ACTIONS(2059), + [anon_sym_trait] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2059), + [anon_sym_union] = ACTIONS(2059), + [anon_sym_unsafe] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2059), + [anon_sym_move] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [sym_integer_literal] = ACTIONS(2057), + [aux_sym_string_literal_token1] = ACTIONS(2057), + [sym_char_literal] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2059), + [sym_super] = ACTIONS(2059), + [sym_crate] = ACTIONS(2059), + [sym_metavariable] = ACTIONS(2057), + [sym__raw_string_literal_start] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), + }, + [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1991), - [sym_identifier] = ACTIONS(1993), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_macro_rules_BANG] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_u8] = ACTIONS(1993), - [anon_sym_i8] = ACTIONS(1993), - [anon_sym_u16] = ACTIONS(1993), - [anon_sym_i16] = ACTIONS(1993), - [anon_sym_u32] = ACTIONS(1993), - [anon_sym_i32] = ACTIONS(1993), - [anon_sym_u64] = ACTIONS(1993), - [anon_sym_i64] = ACTIONS(1993), - [anon_sym_u128] = ACTIONS(1993), - [anon_sym_i128] = ACTIONS(1993), - [anon_sym_isize] = ACTIONS(1993), - [anon_sym_usize] = ACTIONS(1993), - [anon_sym_f32] = ACTIONS(1993), - [anon_sym_f64] = ACTIONS(1993), - [anon_sym_bool] = ACTIONS(1993), - [anon_sym_str] = ACTIONS(1993), - [anon_sym_char] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_COLON_COLON] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_default] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_fn] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_gen] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_impl] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_mod] = ACTIONS(1993), - [anon_sym_pub] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_struct] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_union] = ACTIONS(1993), - [anon_sym_unsafe] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_move] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [sym_integer_literal] = ACTIONS(1991), - [aux_sym_string_literal_token1] = ACTIONS(1991), - [sym_char_literal] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1993), - [sym_super] = ACTIONS(1993), - [sym_crate] = ACTIONS(1993), - [sym_metavariable] = ACTIONS(1991), - [sym__raw_string_literal_start] = ACTIONS(1991), - [sym_float_literal] = ACTIONS(1991), - }, - [561] = { + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_macro_rules_BANG] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_u8] = ACTIONS(2063), + [anon_sym_i8] = ACTIONS(2063), + [anon_sym_u16] = ACTIONS(2063), + [anon_sym_i16] = ACTIONS(2063), + [anon_sym_u32] = ACTIONS(2063), + [anon_sym_i32] = ACTIONS(2063), + [anon_sym_u64] = ACTIONS(2063), + [anon_sym_i64] = ACTIONS(2063), + [anon_sym_u128] = ACTIONS(2063), + [anon_sym_i128] = ACTIONS(2063), + [anon_sym_isize] = ACTIONS(2063), + [anon_sym_usize] = ACTIONS(2063), + [anon_sym_f32] = ACTIONS(2063), + [anon_sym_f64] = ACTIONS(2063), + [anon_sym_bool] = ACTIONS(2063), + [anon_sym_str] = ACTIONS(2063), + [anon_sym_char] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_COLON_COLON] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_default] = ACTIONS(2063), + [anon_sym_enum] = ACTIONS(2063), + [anon_sym_fn] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_gen] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_impl] = ACTIONS(2063), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_loop] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_mod] = ACTIONS(2063), + [anon_sym_pub] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2063), + [anon_sym_struct] = ACTIONS(2063), + [anon_sym_trait] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2063), + [anon_sym_union] = ACTIONS(2063), + [anon_sym_unsafe] = ACTIONS(2063), + [anon_sym_use] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_yield] = ACTIONS(2063), + [anon_sym_move] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2061), + [aux_sym_string_literal_token1] = ACTIONS(2061), + [sym_char_literal] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2061), + [sym__raw_string_literal_start] = ACTIONS(2061), + [sym_float_literal] = ACTIONS(2061), + }, + [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_identifier] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_macro_rules_BANG] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_STAR] = ACTIONS(1995), - [anon_sym_u8] = ACTIONS(1997), - [anon_sym_i8] = ACTIONS(1997), - [anon_sym_u16] = ACTIONS(1997), - [anon_sym_i16] = ACTIONS(1997), - [anon_sym_u32] = ACTIONS(1997), - [anon_sym_i32] = ACTIONS(1997), - [anon_sym_u64] = ACTIONS(1997), - [anon_sym_i64] = ACTIONS(1997), - [anon_sym_u128] = ACTIONS(1997), - [anon_sym_i128] = ACTIONS(1997), - [anon_sym_isize] = ACTIONS(1997), - [anon_sym_usize] = ACTIONS(1997), - [anon_sym_f32] = ACTIONS(1997), - [anon_sym_f64] = ACTIONS(1997), - [anon_sym_bool] = ACTIONS(1997), - [anon_sym_str] = ACTIONS(1997), - [anon_sym_char] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(1995), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_async] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1997), - [anon_sym_enum] = ACTIONS(1997), - [anon_sym_fn] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_gen] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_impl] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_mod] = ACTIONS(1997), - [anon_sym_pub] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_static] = ACTIONS(1997), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_trait] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1997), - [anon_sym_union] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_yield] = ACTIONS(1997), - [anon_sym_move] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [sym_integer_literal] = ACTIONS(1995), - [aux_sym_string_literal_token1] = ACTIONS(1995), - [sym_char_literal] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1997), - [sym_super] = ACTIONS(1997), - [sym_crate] = ACTIONS(1997), - [sym_metavariable] = ACTIONS(1995), - [sym__raw_string_literal_start] = ACTIONS(1995), - [sym_float_literal] = ACTIONS(1995), - }, - [562] = { + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_macro_rules_BANG] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_u8] = ACTIONS(2067), + [anon_sym_i8] = ACTIONS(2067), + [anon_sym_u16] = ACTIONS(2067), + [anon_sym_i16] = ACTIONS(2067), + [anon_sym_u32] = ACTIONS(2067), + [anon_sym_i32] = ACTIONS(2067), + [anon_sym_u64] = ACTIONS(2067), + [anon_sym_i64] = ACTIONS(2067), + [anon_sym_u128] = ACTIONS(2067), + [anon_sym_i128] = ACTIONS(2067), + [anon_sym_isize] = ACTIONS(2067), + [anon_sym_usize] = ACTIONS(2067), + [anon_sym_f32] = ACTIONS(2067), + [anon_sym_f64] = ACTIONS(2067), + [anon_sym_bool] = ACTIONS(2067), + [anon_sym_str] = ACTIONS(2067), + [anon_sym_char] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_COLON_COLON] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_gen] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_impl] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_mod] = ACTIONS(2067), + [anon_sym_pub] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_trait] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_move] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2065), + [aux_sym_string_literal_token1] = ACTIONS(2065), + [sym_char_literal] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2065), + [sym__raw_string_literal_start] = ACTIONS(2065), + [sym_float_literal] = ACTIONS(2065), + }, + [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1999), - [sym_identifier] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_macro_rules_BANG] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_u8] = ACTIONS(2001), - [anon_sym_i8] = ACTIONS(2001), - [anon_sym_u16] = ACTIONS(2001), - [anon_sym_i16] = ACTIONS(2001), - [anon_sym_u32] = ACTIONS(2001), - [anon_sym_i32] = ACTIONS(2001), - [anon_sym_u64] = ACTIONS(2001), - [anon_sym_i64] = ACTIONS(2001), - [anon_sym_u128] = ACTIONS(2001), - [anon_sym_i128] = ACTIONS(2001), - [anon_sym_isize] = ACTIONS(2001), - [anon_sym_usize] = ACTIONS(2001), - [anon_sym_f32] = ACTIONS(2001), - [anon_sym_f64] = ACTIONS(2001), - [anon_sym_bool] = ACTIONS(2001), - [anon_sym_str] = ACTIONS(2001), - [anon_sym_char] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1999), - [anon_sym_AMP] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_COLON_COLON] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(1999), - [anon_sym_SQUOTE] = ACTIONS(2001), - [anon_sym_async] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_default] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2001), - [anon_sym_fn] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_gen] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_impl] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_mod] = ACTIONS(2001), - [anon_sym_pub] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_struct] = ACTIONS(2001), - [anon_sym_trait] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_union] = ACTIONS(2001), - [anon_sym_unsafe] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_yield] = ACTIONS(2001), - [anon_sym_move] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [sym_integer_literal] = ACTIONS(1999), - [aux_sym_string_literal_token1] = ACTIONS(1999), - [sym_char_literal] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(2001), - [anon_sym_false] = ACTIONS(2001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2001), - [sym_super] = ACTIONS(2001), - [sym_crate] = ACTIONS(2001), - [sym_metavariable] = ACTIONS(1999), - [sym__raw_string_literal_start] = ACTIONS(1999), - [sym_float_literal] = ACTIONS(1999), - }, - [563] = { + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_macro_rules_BANG] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2069), + [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), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_COLON_COLON] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2071), + [anon_sym_move] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [sym_integer_literal] = ACTIONS(2069), + [aux_sym_string_literal_token1] = ACTIONS(2069), + [sym_char_literal] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_crate] = ACTIONS(2071), + [sym_metavariable] = ACTIONS(2069), + [sym__raw_string_literal_start] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + }, + [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2003), - [sym_identifier] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_macro_rules_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_u8] = ACTIONS(2005), - [anon_sym_i8] = ACTIONS(2005), - [anon_sym_u16] = ACTIONS(2005), - [anon_sym_i16] = ACTIONS(2005), - [anon_sym_u32] = ACTIONS(2005), - [anon_sym_i32] = ACTIONS(2005), - [anon_sym_u64] = ACTIONS(2005), - [anon_sym_i64] = ACTIONS(2005), - [anon_sym_u128] = ACTIONS(2005), - [anon_sym_i128] = ACTIONS(2005), - [anon_sym_isize] = ACTIONS(2005), - [anon_sym_usize] = ACTIONS(2005), - [anon_sym_f32] = ACTIONS(2005), - [anon_sym_f64] = ACTIONS(2005), - [anon_sym_bool] = ACTIONS(2005), - [anon_sym_str] = ACTIONS(2005), - [anon_sym_char] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2003), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2003), - [anon_sym_SQUOTE] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2005), - [anon_sym_enum] = ACTIONS(2005), - [anon_sym_fn] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_gen] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_impl] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_mod] = ACTIONS(2005), - [anon_sym_pub] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_trait] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2005), - [anon_sym_unsafe] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_move] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [sym_integer_literal] = ACTIONS(2003), - [aux_sym_string_literal_token1] = ACTIONS(2003), - [sym_char_literal] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_crate] = ACTIONS(2005), - [sym_metavariable] = ACTIONS(2003), - [sym__raw_string_literal_start] = ACTIONS(2003), - [sym_float_literal] = ACTIONS(2003), - }, - [564] = { + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_macro_rules_BANG] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [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), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_COLON_COLON] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2075), + [anon_sym_move] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2073), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2073), + [sym__raw_string_literal_start] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + }, + [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2007), - [sym_identifier] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_macro_rules_BANG] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_u8] = ACTIONS(2009), - [anon_sym_i8] = ACTIONS(2009), - [anon_sym_u16] = ACTIONS(2009), - [anon_sym_i16] = ACTIONS(2009), - [anon_sym_u32] = ACTIONS(2009), - [anon_sym_i32] = ACTIONS(2009), - [anon_sym_u64] = ACTIONS(2009), - [anon_sym_i64] = ACTIONS(2009), - [anon_sym_u128] = ACTIONS(2009), - [anon_sym_i128] = ACTIONS(2009), - [anon_sym_isize] = ACTIONS(2009), - [anon_sym_usize] = ACTIONS(2009), - [anon_sym_f32] = ACTIONS(2009), - [anon_sym_f64] = ACTIONS(2009), - [anon_sym_bool] = ACTIONS(2009), - [anon_sym_str] = ACTIONS(2009), - [anon_sym_char] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_COLON_COLON] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2009), - [anon_sym_async] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_default] = ACTIONS(2009), - [anon_sym_enum] = ACTIONS(2009), - [anon_sym_fn] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_gen] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_impl] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_mod] = ACTIONS(2009), - [anon_sym_pub] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_static] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2009), - [anon_sym_trait] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2009), - [anon_sym_union] = ACTIONS(2009), - [anon_sym_unsafe] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2009), - [anon_sym_move] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [sym_integer_literal] = ACTIONS(2007), - [aux_sym_string_literal_token1] = ACTIONS(2007), - [sym_char_literal] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2009), - [anon_sym_false] = ACTIONS(2009), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2007), - [sym__raw_string_literal_start] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), - }, - [565] = { + [ts_builtin_sym_end] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_macro_rules_BANG] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2077), + [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), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_COLON_COLON] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_move] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [sym_integer_literal] = ACTIONS(2077), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(2077), + [sym__raw_string_literal_start] = ACTIONS(2077), + [sym_float_literal] = ACTIONS(2077), + }, + [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2011), - [sym_identifier] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_macro_rules_BANG] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_u8] = ACTIONS(2013), - [anon_sym_i8] = ACTIONS(2013), - [anon_sym_u16] = ACTIONS(2013), - [anon_sym_i16] = ACTIONS(2013), - [anon_sym_u32] = ACTIONS(2013), - [anon_sym_i32] = ACTIONS(2013), - [anon_sym_u64] = ACTIONS(2013), - [anon_sym_i64] = ACTIONS(2013), - [anon_sym_u128] = ACTIONS(2013), - [anon_sym_i128] = ACTIONS(2013), - [anon_sym_isize] = ACTIONS(2013), - [anon_sym_usize] = ACTIONS(2013), - [anon_sym_f32] = ACTIONS(2013), - [anon_sym_f64] = ACTIONS(2013), - [anon_sym_bool] = ACTIONS(2013), - [anon_sym_str] = ACTIONS(2013), - [anon_sym_char] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2011), - [anon_sym_COLON_COLON] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_SQUOTE] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_fn] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_gen] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_impl] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_mod] = ACTIONS(2013), - [anon_sym_pub] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_struct] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_union] = ACTIONS(2013), - [anon_sym_unsafe] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_move] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [sym_integer_literal] = ACTIONS(2011), - [aux_sym_string_literal_token1] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2013), - [sym_super] = ACTIONS(2013), - [sym_crate] = ACTIONS(2013), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - }, - [566] = { + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_macro_rules_BANG] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2083), + [anon_sym_i8] = ACTIONS(2083), + [anon_sym_u16] = ACTIONS(2083), + [anon_sym_i16] = ACTIONS(2083), + [anon_sym_u32] = ACTIONS(2083), + [anon_sym_i32] = ACTIONS(2083), + [anon_sym_u64] = ACTIONS(2083), + [anon_sym_i64] = ACTIONS(2083), + [anon_sym_u128] = ACTIONS(2083), + [anon_sym_i128] = ACTIONS(2083), + [anon_sym_isize] = ACTIONS(2083), + [anon_sym_usize] = ACTIONS(2083), + [anon_sym_f32] = ACTIONS(2083), + [anon_sym_f64] = ACTIONS(2083), + [anon_sym_bool] = ACTIONS(2083), + [anon_sym_str] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_COLON_COLON] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_fn] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_gen] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_impl] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_loop] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_mod] = ACTIONS(2083), + [anon_sym_pub] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_trait] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_unsafe] = ACTIONS(2083), + [anon_sym_use] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_extern] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_move] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2081), + [aux_sym_string_literal_token1] = ACTIONS(2081), + [sym_char_literal] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2081), + [sym__raw_string_literal_start] = ACTIONS(2081), + [sym_float_literal] = ACTIONS(2081), + }, + [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_macro_rules_BANG] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_u8] = ACTIONS(2017), - [anon_sym_i8] = ACTIONS(2017), - [anon_sym_u16] = ACTIONS(2017), - [anon_sym_i16] = ACTIONS(2017), - [anon_sym_u32] = ACTIONS(2017), - [anon_sym_i32] = ACTIONS(2017), - [anon_sym_u64] = ACTIONS(2017), - [anon_sym_i64] = ACTIONS(2017), - [anon_sym_u128] = ACTIONS(2017), - [anon_sym_i128] = ACTIONS(2017), - [anon_sym_isize] = ACTIONS(2017), - [anon_sym_usize] = ACTIONS(2017), - [anon_sym_f32] = ACTIONS(2017), - [anon_sym_f64] = ACTIONS(2017), - [anon_sym_bool] = ACTIONS(2017), - [anon_sym_str] = ACTIONS(2017), - [anon_sym_char] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_COLON_COLON] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_fn] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_gen] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_impl] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_mod] = ACTIONS(2017), - [anon_sym_pub] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_struct] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_union] = ACTIONS(2017), - [anon_sym_unsafe] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_move] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [sym_integer_literal] = ACTIONS(2015), - [aux_sym_string_literal_token1] = ACTIONS(2015), - [sym_char_literal] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2017), - [sym_super] = ACTIONS(2017), - [sym_crate] = ACTIONS(2017), - [sym_metavariable] = ACTIONS(2015), - [sym__raw_string_literal_start] = ACTIONS(2015), - [sym_float_literal] = ACTIONS(2015), - }, - [567] = { + [ts_builtin_sym_end] = ACTIONS(2085), + [sym_identifier] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_macro_rules_BANG] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_u8] = ACTIONS(2087), + [anon_sym_i8] = ACTIONS(2087), + [anon_sym_u16] = ACTIONS(2087), + [anon_sym_i16] = ACTIONS(2087), + [anon_sym_u32] = ACTIONS(2087), + [anon_sym_i32] = ACTIONS(2087), + [anon_sym_u64] = ACTIONS(2087), + [anon_sym_i64] = ACTIONS(2087), + [anon_sym_u128] = ACTIONS(2087), + [anon_sym_i128] = ACTIONS(2087), + [anon_sym_isize] = ACTIONS(2087), + [anon_sym_usize] = ACTIONS(2087), + [anon_sym_f32] = ACTIONS(2087), + [anon_sym_f64] = ACTIONS(2087), + [anon_sym_bool] = ACTIONS(2087), + [anon_sym_str] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_fn] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_gen] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_impl] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_mod] = ACTIONS(2087), + [anon_sym_pub] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_trait] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_unsafe] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2087), + [anon_sym_move] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2085), + [aux_sym_string_literal_token1] = ACTIONS(2085), + [sym_char_literal] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2085), + [sym__raw_string_literal_start] = ACTIONS(2085), + [sym_float_literal] = ACTIONS(2085), + }, + [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_identifier] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_macro_rules_BANG] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2021), - [anon_sym_i8] = ACTIONS(2021), - [anon_sym_u16] = ACTIONS(2021), - [anon_sym_i16] = ACTIONS(2021), - [anon_sym_u32] = ACTIONS(2021), - [anon_sym_i32] = ACTIONS(2021), - [anon_sym_u64] = ACTIONS(2021), - [anon_sym_i64] = ACTIONS(2021), - [anon_sym_u128] = ACTIONS(2021), - [anon_sym_i128] = ACTIONS(2021), - [anon_sym_isize] = ACTIONS(2021), - [anon_sym_usize] = ACTIONS(2021), - [anon_sym_f32] = ACTIONS(2021), - [anon_sym_f64] = ACTIONS(2021), - [anon_sym_bool] = ACTIONS(2021), - [anon_sym_str] = ACTIONS(2021), - [anon_sym_char] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_COLON_COLON] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_default] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_fn] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_gen] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_impl] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_mod] = ACTIONS(2021), - [anon_sym_pub] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2021), - [anon_sym_struct] = ACTIONS(2021), - [anon_sym_trait] = ACTIONS(2021), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_union] = ACTIONS(2021), - [anon_sym_unsafe] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_move] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [sym_integer_literal] = ACTIONS(2019), - [aux_sym_string_literal_token1] = ACTIONS(2019), - [sym_char_literal] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2021), - [sym_super] = ACTIONS(2021), - [sym_crate] = ACTIONS(2021), - [sym_metavariable] = ACTIONS(2019), - [sym__raw_string_literal_start] = ACTIONS(2019), - [sym_float_literal] = ACTIONS(2019), - }, - [568] = { + [ts_builtin_sym_end] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_macro_rules_BANG] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_COLON_COLON] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_gen] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_move] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2089), + [aux_sym_string_literal_token1] = ACTIONS(2089), + [sym_char_literal] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2091), + [anon_sym_false] = ACTIONS(2091), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2089), + [sym__raw_string_literal_start] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), + }, + [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_macro_rules_BANG] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_u8] = ACTIONS(2025), - [anon_sym_i8] = ACTIONS(2025), - [anon_sym_u16] = ACTIONS(2025), - [anon_sym_i16] = ACTIONS(2025), - [anon_sym_u32] = ACTIONS(2025), - [anon_sym_i32] = ACTIONS(2025), - [anon_sym_u64] = ACTIONS(2025), - [anon_sym_i64] = ACTIONS(2025), - [anon_sym_u128] = ACTIONS(2025), - [anon_sym_i128] = ACTIONS(2025), - [anon_sym_isize] = ACTIONS(2025), - [anon_sym_usize] = ACTIONS(2025), - [anon_sym_f32] = ACTIONS(2025), - [anon_sym_f64] = ACTIONS(2025), - [anon_sym_bool] = ACTIONS(2025), - [anon_sym_str] = ACTIONS(2025), - [anon_sym_char] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_COLON_COLON] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_default] = ACTIONS(2025), - [anon_sym_enum] = ACTIONS(2025), - [anon_sym_fn] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_gen] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_impl] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_mod] = ACTIONS(2025), - [anon_sym_pub] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_static] = ACTIONS(2025), - [anon_sym_struct] = ACTIONS(2025), - [anon_sym_trait] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_union] = ACTIONS(2025), - [anon_sym_unsafe] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_yield] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [sym_integer_literal] = ACTIONS(2023), - [aux_sym_string_literal_token1] = ACTIONS(2023), - [sym_char_literal] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2025), - [sym_super] = ACTIONS(2025), - [sym_crate] = ACTIONS(2025), - [sym_metavariable] = ACTIONS(2023), - [sym__raw_string_literal_start] = ACTIONS(2023), - [sym_float_literal] = ACTIONS(2023), - }, - [569] = { + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_macro_rules_BANG] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_u8] = ACTIONS(2095), + [anon_sym_i8] = ACTIONS(2095), + [anon_sym_u16] = ACTIONS(2095), + [anon_sym_i16] = ACTIONS(2095), + [anon_sym_u32] = ACTIONS(2095), + [anon_sym_i32] = ACTIONS(2095), + [anon_sym_u64] = ACTIONS(2095), + [anon_sym_i64] = ACTIONS(2095), + [anon_sym_u128] = ACTIONS(2095), + [anon_sym_i128] = ACTIONS(2095), + [anon_sym_isize] = ACTIONS(2095), + [anon_sym_usize] = ACTIONS(2095), + [anon_sym_f32] = ACTIONS(2095), + [anon_sym_f64] = ACTIONS(2095), + [anon_sym_bool] = ACTIONS(2095), + [anon_sym_str] = ACTIONS(2095), + [anon_sym_char] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_gen] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_impl] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_mod] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_trait] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [sym_integer_literal] = ACTIONS(2093), + [aux_sym_string_literal_token1] = ACTIONS(2093), + [sym_char_literal] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2095), + [anon_sym_false] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2095), + [sym_super] = ACTIONS(2095), + [sym_crate] = ACTIONS(2095), + [sym_metavariable] = ACTIONS(2093), + [sym__raw_string_literal_start] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), + }, + [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_macro_rules_BANG] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_u8] = ACTIONS(2029), - [anon_sym_i8] = ACTIONS(2029), - [anon_sym_u16] = ACTIONS(2029), - [anon_sym_i16] = ACTIONS(2029), - [anon_sym_u32] = ACTIONS(2029), - [anon_sym_i32] = ACTIONS(2029), - [anon_sym_u64] = ACTIONS(2029), - [anon_sym_i64] = ACTIONS(2029), - [anon_sym_u128] = ACTIONS(2029), - [anon_sym_i128] = ACTIONS(2029), - [anon_sym_isize] = ACTIONS(2029), - [anon_sym_usize] = ACTIONS(2029), - [anon_sym_f32] = ACTIONS(2029), - [anon_sym_f64] = ACTIONS(2029), - [anon_sym_bool] = ACTIONS(2029), - [anon_sym_str] = ACTIONS(2029), - [anon_sym_char] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_COLON_COLON] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_default] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_gen] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_impl] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_mod] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_static] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_trait] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_yield] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [sym_integer_literal] = ACTIONS(2027), - [aux_sym_string_literal_token1] = ACTIONS(2027), - [sym_char_literal] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2029), - [sym_super] = ACTIONS(2029), - [sym_crate] = ACTIONS(2029), - [sym_metavariable] = ACTIONS(2027), - [sym__raw_string_literal_start] = ACTIONS(2027), - [sym_float_literal] = ACTIONS(2027), - }, - [570] = { + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_macro_rules_BANG] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_u8] = ACTIONS(2099), + [anon_sym_i8] = ACTIONS(2099), + [anon_sym_u16] = ACTIONS(2099), + [anon_sym_i16] = ACTIONS(2099), + [anon_sym_u32] = ACTIONS(2099), + [anon_sym_i32] = ACTIONS(2099), + [anon_sym_u64] = ACTIONS(2099), + [anon_sym_i64] = ACTIONS(2099), + [anon_sym_u128] = ACTIONS(2099), + [anon_sym_i128] = ACTIONS(2099), + [anon_sym_isize] = ACTIONS(2099), + [anon_sym_usize] = ACTIONS(2099), + [anon_sym_f32] = ACTIONS(2099), + [anon_sym_f64] = ACTIONS(2099), + [anon_sym_bool] = ACTIONS(2099), + [anon_sym_str] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_COLON_COLON] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_gen] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_impl] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2099), + [anon_sym_loop] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_mod] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_trait] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_use] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_extern] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_move] = ACTIONS(2099), + [anon_sym_try] = ACTIONS(2099), + [sym_integer_literal] = ACTIONS(2097), + [aux_sym_string_literal_token1] = ACTIONS(2097), + [sym_char_literal] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2099), + [anon_sym_false] = ACTIONS(2099), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2099), + [sym_super] = ACTIONS(2099), + [sym_crate] = ACTIONS(2099), + [sym_metavariable] = ACTIONS(2097), + [sym__raw_string_literal_start] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), + }, + [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_macro_rules_BANG] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_u8] = ACTIONS(2033), - [anon_sym_i8] = ACTIONS(2033), - [anon_sym_u16] = ACTIONS(2033), - [anon_sym_i16] = ACTIONS(2033), - [anon_sym_u32] = ACTIONS(2033), - [anon_sym_i32] = ACTIONS(2033), - [anon_sym_u64] = ACTIONS(2033), - [anon_sym_i64] = ACTIONS(2033), - [anon_sym_u128] = ACTIONS(2033), - [anon_sym_i128] = ACTIONS(2033), - [anon_sym_isize] = ACTIONS(2033), - [anon_sym_usize] = ACTIONS(2033), - [anon_sym_f32] = ACTIONS(2033), - [anon_sym_f64] = ACTIONS(2033), - [anon_sym_bool] = ACTIONS(2033), - [anon_sym_str] = ACTIONS(2033), - [anon_sym_char] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2031), - [anon_sym_COLON_COLON] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_default] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_fn] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_gen] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_impl] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_mod] = ACTIONS(2033), - [anon_sym_pub] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2033), - [anon_sym_unsafe] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_move] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [sym_integer_literal] = ACTIONS(2031), - [aux_sym_string_literal_token1] = ACTIONS(2031), - [sym_char_literal] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2033), - [sym_super] = ACTIONS(2033), - [sym_crate] = ACTIONS(2033), - [sym_metavariable] = ACTIONS(2031), - [sym__raw_string_literal_start] = ACTIONS(2031), - [sym_float_literal] = ACTIONS(2031), - }, - [571] = { + [ts_builtin_sym_end] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_macro_rules_BANG] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_u8] = ACTIONS(2103), + [anon_sym_i8] = ACTIONS(2103), + [anon_sym_u16] = ACTIONS(2103), + [anon_sym_i16] = ACTIONS(2103), + [anon_sym_u32] = ACTIONS(2103), + [anon_sym_i32] = ACTIONS(2103), + [anon_sym_u64] = ACTIONS(2103), + [anon_sym_i64] = ACTIONS(2103), + [anon_sym_u128] = ACTIONS(2103), + [anon_sym_i128] = ACTIONS(2103), + [anon_sym_isize] = ACTIONS(2103), + [anon_sym_usize] = ACTIONS(2103), + [anon_sym_f32] = ACTIONS(2103), + [anon_sym_f64] = ACTIONS(2103), + [anon_sym_bool] = ACTIONS(2103), + [anon_sym_str] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_gen] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_impl] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_loop] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_mod] = ACTIONS(2103), + [anon_sym_pub] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_trait] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_unsafe] = ACTIONS(2103), + [anon_sym_use] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_extern] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_move] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2101), + [aux_sym_string_literal_token1] = ACTIONS(2101), + [sym_char_literal] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2103), + [anon_sym_false] = ACTIONS(2103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_crate] = ACTIONS(2103), + [sym_metavariable] = ACTIONS(2101), + [sym__raw_string_literal_start] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), + }, + [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_macro_rules_BANG] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_u8] = ACTIONS(2037), - [anon_sym_i8] = ACTIONS(2037), - [anon_sym_u16] = ACTIONS(2037), - [anon_sym_i16] = ACTIONS(2037), - [anon_sym_u32] = ACTIONS(2037), - [anon_sym_i32] = ACTIONS(2037), - [anon_sym_u64] = ACTIONS(2037), - [anon_sym_i64] = ACTIONS(2037), - [anon_sym_u128] = ACTIONS(2037), - [anon_sym_i128] = ACTIONS(2037), - [anon_sym_isize] = ACTIONS(2037), - [anon_sym_usize] = ACTIONS(2037), - [anon_sym_f32] = ACTIONS(2037), - [anon_sym_f64] = ACTIONS(2037), - [anon_sym_bool] = ACTIONS(2037), - [anon_sym_str] = ACTIONS(2037), - [anon_sym_char] = ACTIONS(2037), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_COLON_COLON] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_async] = ACTIONS(2037), - [anon_sym_break] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2037), - [anon_sym_continue] = ACTIONS(2037), - [anon_sym_default] = ACTIONS(2037), - [anon_sym_enum] = ACTIONS(2037), - [anon_sym_fn] = ACTIONS(2037), - [anon_sym_for] = ACTIONS(2037), - [anon_sym_gen] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2037), - [anon_sym_impl] = ACTIONS(2037), - [anon_sym_let] = ACTIONS(2037), - [anon_sym_loop] = ACTIONS(2037), - [anon_sym_match] = ACTIONS(2037), - [anon_sym_mod] = ACTIONS(2037), - [anon_sym_pub] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2037), - [anon_sym_static] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2037), - [anon_sym_trait] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2037), - [anon_sym_unsafe] = ACTIONS(2037), - [anon_sym_use] = ACTIONS(2037), - [anon_sym_while] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2037), - [anon_sym_yield] = ACTIONS(2037), - [anon_sym_move] = ACTIONS(2037), - [anon_sym_try] = ACTIONS(2037), - [sym_integer_literal] = ACTIONS(2035), - [aux_sym_string_literal_token1] = ACTIONS(2035), - [sym_char_literal] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2037), - [anon_sym_false] = ACTIONS(2037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2037), - [sym_super] = ACTIONS(2037), - [sym_crate] = ACTIONS(2037), - [sym_metavariable] = ACTIONS(2035), - [sym__raw_string_literal_start] = ACTIONS(2035), - [sym_float_literal] = ACTIONS(2035), - }, - [572] = { + [ts_builtin_sym_end] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_macro_rules_BANG] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_u8] = ACTIONS(2107), + [anon_sym_i8] = ACTIONS(2107), + [anon_sym_u16] = ACTIONS(2107), + [anon_sym_i16] = ACTIONS(2107), + [anon_sym_u32] = ACTIONS(2107), + [anon_sym_i32] = ACTIONS(2107), + [anon_sym_u64] = ACTIONS(2107), + [anon_sym_i64] = ACTIONS(2107), + [anon_sym_u128] = ACTIONS(2107), + [anon_sym_i128] = ACTIONS(2107), + [anon_sym_isize] = ACTIONS(2107), + [anon_sym_usize] = ACTIONS(2107), + [anon_sym_f32] = ACTIONS(2107), + [anon_sym_f64] = ACTIONS(2107), + [anon_sym_bool] = ACTIONS(2107), + [anon_sym_str] = ACTIONS(2107), + [anon_sym_char] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_COLON_COLON] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2107), + [anon_sym_default] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(2107), + [anon_sym_for] = ACTIONS(2107), + [anon_sym_gen] = ACTIONS(2107), + [anon_sym_if] = ACTIONS(2107), + [anon_sym_impl] = ACTIONS(2107), + [anon_sym_let] = ACTIONS(2107), + [anon_sym_loop] = ACTIONS(2107), + [anon_sym_match] = ACTIONS(2107), + [anon_sym_mod] = ACTIONS(2107), + [anon_sym_pub] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(2107), + [anon_sym_trait] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_union] = ACTIONS(2107), + [anon_sym_unsafe] = ACTIONS(2107), + [anon_sym_use] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_move] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2107), + [sym_integer_literal] = ACTIONS(2105), + [aux_sym_string_literal_token1] = ACTIONS(2105), + [sym_char_literal] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2107), + [sym_super] = ACTIONS(2107), + [sym_crate] = ACTIONS(2107), + [sym_metavariable] = ACTIONS(2105), + [sym__raw_string_literal_start] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + }, + [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_macro_rules_BANG] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_u8] = ACTIONS(2041), - [anon_sym_i8] = ACTIONS(2041), - [anon_sym_u16] = ACTIONS(2041), - [anon_sym_i16] = ACTIONS(2041), - [anon_sym_u32] = ACTIONS(2041), - [anon_sym_i32] = ACTIONS(2041), - [anon_sym_u64] = ACTIONS(2041), - [anon_sym_i64] = ACTIONS(2041), - [anon_sym_u128] = ACTIONS(2041), - [anon_sym_i128] = ACTIONS(2041), - [anon_sym_isize] = ACTIONS(2041), - [anon_sym_usize] = ACTIONS(2041), - [anon_sym_f32] = ACTIONS(2041), - [anon_sym_f64] = ACTIONS(2041), - [anon_sym_bool] = ACTIONS(2041), - [anon_sym_str] = ACTIONS(2041), - [anon_sym_char] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2039), - [anon_sym_POUND] = ACTIONS(2039), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_gen] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_impl] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_mod] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_move] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [sym_integer_literal] = ACTIONS(2039), - [aux_sym_string_literal_token1] = ACTIONS(2039), - [sym_char_literal] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2041), - [sym_super] = ACTIONS(2041), - [sym_crate] = ACTIONS(2041), - [sym_metavariable] = ACTIONS(2039), - [sym__raw_string_literal_start] = ACTIONS(2039), - [sym_float_literal] = ACTIONS(2039), - }, - [573] = { + [ts_builtin_sym_end] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_macro_rules_BANG] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_u8] = ACTIONS(2111), + [anon_sym_i8] = ACTIONS(2111), + [anon_sym_u16] = ACTIONS(2111), + [anon_sym_i16] = ACTIONS(2111), + [anon_sym_u32] = ACTIONS(2111), + [anon_sym_i32] = ACTIONS(2111), + [anon_sym_u64] = ACTIONS(2111), + [anon_sym_i64] = ACTIONS(2111), + [anon_sym_u128] = ACTIONS(2111), + [anon_sym_i128] = ACTIONS(2111), + [anon_sym_isize] = ACTIONS(2111), + [anon_sym_usize] = ACTIONS(2111), + [anon_sym_f32] = ACTIONS(2111), + [anon_sym_f64] = ACTIONS(2111), + [anon_sym_bool] = ACTIONS(2111), + [anon_sym_str] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_gen] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_impl] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_mod] = ACTIONS(2111), + [anon_sym_pub] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_trait] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_use] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_move] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(2109), + [aux_sym_string_literal_token1] = ACTIONS(2109), + [sym_char_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(2109), + [sym__raw_string_literal_start] = ACTIONS(2109), + [sym_float_literal] = ACTIONS(2109), + }, + [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_macro_rules_BANG] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_u8] = ACTIONS(2045), - [anon_sym_i8] = ACTIONS(2045), - [anon_sym_u16] = ACTIONS(2045), - [anon_sym_i16] = ACTIONS(2045), - [anon_sym_u32] = ACTIONS(2045), - [anon_sym_i32] = ACTIONS(2045), - [anon_sym_u64] = ACTIONS(2045), - [anon_sym_i64] = ACTIONS(2045), - [anon_sym_u128] = ACTIONS(2045), - [anon_sym_i128] = ACTIONS(2045), - [anon_sym_isize] = ACTIONS(2045), - [anon_sym_usize] = ACTIONS(2045), - [anon_sym_f32] = ACTIONS(2045), - [anon_sym_f64] = ACTIONS(2045), - [anon_sym_bool] = ACTIONS(2045), - [anon_sym_str] = ACTIONS(2045), - [anon_sym_char] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_COLON_COLON] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_gen] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_impl] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_mod] = ACTIONS(2045), - [anon_sym_pub] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_move] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [sym_integer_literal] = ACTIONS(2043), - [aux_sym_string_literal_token1] = ACTIONS(2043), - [sym_char_literal] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2045), - [sym_super] = ACTIONS(2045), - [sym_crate] = ACTIONS(2045), - [sym_metavariable] = ACTIONS(2043), - [sym__raw_string_literal_start] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), - }, - [574] = { + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_macro_rules_BANG] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_u8] = ACTIONS(2115), + [anon_sym_i8] = ACTIONS(2115), + [anon_sym_u16] = ACTIONS(2115), + [anon_sym_i16] = ACTIONS(2115), + [anon_sym_u32] = ACTIONS(2115), + [anon_sym_i32] = ACTIONS(2115), + [anon_sym_u64] = ACTIONS(2115), + [anon_sym_i64] = ACTIONS(2115), + [anon_sym_u128] = ACTIONS(2115), + [anon_sym_i128] = ACTIONS(2115), + [anon_sym_isize] = ACTIONS(2115), + [anon_sym_usize] = ACTIONS(2115), + [anon_sym_f32] = ACTIONS(2115), + [anon_sym_f64] = ACTIONS(2115), + [anon_sym_bool] = ACTIONS(2115), + [anon_sym_str] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_COLON_COLON] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_gen] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_impl] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_mod] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_trait] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_yield] = ACTIONS(2115), + [anon_sym_move] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2113), + [aux_sym_string_literal_token1] = ACTIONS(2113), + [sym_char_literal] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2113), + [sym__raw_string_literal_start] = ACTIONS(2113), + [sym_float_literal] = ACTIONS(2113), + }, + [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_macro_rules_BANG] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2049), - [anon_sym_i8] = ACTIONS(2049), - [anon_sym_u16] = ACTIONS(2049), - [anon_sym_i16] = ACTIONS(2049), - [anon_sym_u32] = ACTIONS(2049), - [anon_sym_i32] = ACTIONS(2049), - [anon_sym_u64] = ACTIONS(2049), - [anon_sym_i64] = ACTIONS(2049), - [anon_sym_u128] = ACTIONS(2049), - [anon_sym_i128] = ACTIONS(2049), - [anon_sym_isize] = ACTIONS(2049), - [anon_sym_usize] = ACTIONS(2049), - [anon_sym_f32] = ACTIONS(2049), - [anon_sym_f64] = ACTIONS(2049), - [anon_sym_bool] = ACTIONS(2049), - [anon_sym_str] = ACTIONS(2049), - [anon_sym_char] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_COLON_COLON] = ACTIONS(2047), - [anon_sym_POUND] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_gen] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_impl] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_mod] = ACTIONS(2049), - [anon_sym_pub] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_union] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_move] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(2047), - [aux_sym_string_literal_token1] = ACTIONS(2047), - [sym_char_literal] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2049), - [sym_super] = ACTIONS(2049), - [sym_crate] = ACTIONS(2049), - [sym_metavariable] = ACTIONS(2047), - [sym__raw_string_literal_start] = ACTIONS(2047), - [sym_float_literal] = ACTIONS(2047), - }, - [575] = { + [ts_builtin_sym_end] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_macro_rules_BANG] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_u8] = ACTIONS(2119), + [anon_sym_i8] = ACTIONS(2119), + [anon_sym_u16] = ACTIONS(2119), + [anon_sym_i16] = ACTIONS(2119), + [anon_sym_u32] = ACTIONS(2119), + [anon_sym_i32] = ACTIONS(2119), + [anon_sym_u64] = ACTIONS(2119), + [anon_sym_i64] = ACTIONS(2119), + [anon_sym_u128] = ACTIONS(2119), + [anon_sym_i128] = ACTIONS(2119), + [anon_sym_isize] = ACTIONS(2119), + [anon_sym_usize] = ACTIONS(2119), + [anon_sym_f32] = ACTIONS(2119), + [anon_sym_f64] = ACTIONS(2119), + [anon_sym_bool] = ACTIONS(2119), + [anon_sym_str] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2117), + [anon_sym_COLON_COLON] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_gen] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_impl] = ACTIONS(2119), + [anon_sym_let] = ACTIONS(2119), + [anon_sym_loop] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_mod] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_trait] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_use] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2119), + [anon_sym_move] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2119), + [sym_integer_literal] = ACTIONS(2117), + [aux_sym_string_literal_token1] = ACTIONS(2117), + [sym_char_literal] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2119), + [sym_super] = ACTIONS(2119), + [sym_crate] = ACTIONS(2119), + [sym_metavariable] = ACTIONS(2117), + [sym__raw_string_literal_start] = ACTIONS(2117), + [sym_float_literal] = ACTIONS(2117), + }, + [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_macro_rules_BANG] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2051), - [anon_sym_u8] = ACTIONS(2053), - [anon_sym_i8] = ACTIONS(2053), - [anon_sym_u16] = ACTIONS(2053), - [anon_sym_i16] = ACTIONS(2053), - [anon_sym_u32] = ACTIONS(2053), - [anon_sym_i32] = ACTIONS(2053), - [anon_sym_u64] = ACTIONS(2053), - [anon_sym_i64] = ACTIONS(2053), - [anon_sym_u128] = ACTIONS(2053), - [anon_sym_i128] = ACTIONS(2053), - [anon_sym_isize] = ACTIONS(2053), - [anon_sym_usize] = ACTIONS(2053), - [anon_sym_f32] = ACTIONS(2053), - [anon_sym_f64] = ACTIONS(2053), - [anon_sym_bool] = ACTIONS(2053), - [anon_sym_str] = ACTIONS(2053), - [anon_sym_char] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(2051), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_default] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_fn] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_gen] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_impl] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_loop] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_mod] = ACTIONS(2053), - [anon_sym_pub] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_union] = ACTIONS(2053), - [anon_sym_unsafe] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_extern] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_move] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(2051), - [aux_sym_string_literal_token1] = ACTIONS(2051), - [sym_char_literal] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2053), - [sym_super] = ACTIONS(2053), - [sym_crate] = ACTIONS(2053), - [sym_metavariable] = ACTIONS(2051), - [sym__raw_string_literal_start] = ACTIONS(2051), - [sym_float_literal] = ACTIONS(2051), - }, - [576] = { + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_macro_rules_BANG] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_u8] = ACTIONS(2123), + [anon_sym_i8] = ACTIONS(2123), + [anon_sym_u16] = ACTIONS(2123), + [anon_sym_i16] = ACTIONS(2123), + [anon_sym_u32] = ACTIONS(2123), + [anon_sym_i32] = ACTIONS(2123), + [anon_sym_u64] = ACTIONS(2123), + [anon_sym_i64] = ACTIONS(2123), + [anon_sym_u128] = ACTIONS(2123), + [anon_sym_i128] = ACTIONS(2123), + [anon_sym_isize] = ACTIONS(2123), + [anon_sym_usize] = ACTIONS(2123), + [anon_sym_f32] = ACTIONS(2123), + [anon_sym_f64] = ACTIONS(2123), + [anon_sym_bool] = ACTIONS(2123), + [anon_sym_str] = ACTIONS(2123), + [anon_sym_char] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_COLON_COLON] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_gen] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_impl] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_mod] = ACTIONS(2123), + [anon_sym_pub] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_static] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_trait] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_move] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [sym_integer_literal] = ACTIONS(2121), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2123), + [sym_super] = ACTIONS(2123), + [sym_crate] = ACTIONS(2123), + [sym_metavariable] = ACTIONS(2121), + [sym__raw_string_literal_start] = ACTIONS(2121), + [sym_float_literal] = ACTIONS(2121), + }, + [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2055), - [sym_identifier] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_macro_rules_BANG] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_u8] = ACTIONS(2057), - [anon_sym_i8] = ACTIONS(2057), - [anon_sym_u16] = ACTIONS(2057), - [anon_sym_i16] = ACTIONS(2057), - [anon_sym_u32] = ACTIONS(2057), - [anon_sym_i32] = ACTIONS(2057), - [anon_sym_u64] = ACTIONS(2057), - [anon_sym_i64] = ACTIONS(2057), - [anon_sym_u128] = ACTIONS(2057), - [anon_sym_i128] = ACTIONS(2057), - [anon_sym_isize] = ACTIONS(2057), - [anon_sym_usize] = ACTIONS(2057), - [anon_sym_f32] = ACTIONS(2057), - [anon_sym_f64] = ACTIONS(2057), - [anon_sym_bool] = ACTIONS(2057), - [anon_sym_str] = ACTIONS(2057), - [anon_sym_char] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_COLON_COLON] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_fn] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_gen] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_impl] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_mod] = ACTIONS(2057), - [anon_sym_pub] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_union] = ACTIONS(2057), - [anon_sym_unsafe] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_move] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2055), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_crate] = ACTIONS(2057), - [sym_metavariable] = ACTIONS(2055), - [sym__raw_string_literal_start] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), - }, - [577] = { + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_macro_rules_BANG] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2127), + [anon_sym_i8] = ACTIONS(2127), + [anon_sym_u16] = ACTIONS(2127), + [anon_sym_i16] = ACTIONS(2127), + [anon_sym_u32] = ACTIONS(2127), + [anon_sym_i32] = ACTIONS(2127), + [anon_sym_u64] = ACTIONS(2127), + [anon_sym_i64] = ACTIONS(2127), + [anon_sym_u128] = ACTIONS(2127), + [anon_sym_i128] = ACTIONS(2127), + [anon_sym_isize] = ACTIONS(2127), + [anon_sym_usize] = ACTIONS(2127), + [anon_sym_f32] = ACTIONS(2127), + [anon_sym_f64] = ACTIONS(2127), + [anon_sym_bool] = ACTIONS(2127), + [anon_sym_str] = ACTIONS(2127), + [anon_sym_char] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_COLON_COLON] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_gen] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_impl] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_loop] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_mod] = ACTIONS(2127), + [anon_sym_pub] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_trait] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_use] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_move] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [sym_integer_literal] = ACTIONS(2125), + [aux_sym_string_literal_token1] = ACTIONS(2125), + [sym_char_literal] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2127), + [sym_super] = ACTIONS(2127), + [sym_crate] = ACTIONS(2127), + [sym_metavariable] = ACTIONS(2125), + [sym__raw_string_literal_start] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), + }, + [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_macro_rules_BANG] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_u8] = ACTIONS(2061), - [anon_sym_i8] = ACTIONS(2061), - [anon_sym_u16] = ACTIONS(2061), - [anon_sym_i16] = ACTIONS(2061), - [anon_sym_u32] = ACTIONS(2061), - [anon_sym_i32] = ACTIONS(2061), - [anon_sym_u64] = ACTIONS(2061), - [anon_sym_i64] = ACTIONS(2061), - [anon_sym_u128] = ACTIONS(2061), - [anon_sym_i128] = ACTIONS(2061), - [anon_sym_isize] = ACTIONS(2061), - [anon_sym_usize] = ACTIONS(2061), - [anon_sym_f32] = ACTIONS(2061), - [anon_sym_f64] = ACTIONS(2061), - [anon_sym_bool] = ACTIONS(2061), - [anon_sym_str] = ACTIONS(2061), - [anon_sym_char] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_COLON_COLON] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_async] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_default] = ACTIONS(2061), - [anon_sym_enum] = ACTIONS(2061), - [anon_sym_fn] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_gen] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_impl] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_mod] = ACTIONS(2061), - [anon_sym_pub] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_static] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2061), - [anon_sym_trait] = ACTIONS(2061), - [anon_sym_type] = ACTIONS(2061), - [anon_sym_union] = ACTIONS(2061), - [anon_sym_unsafe] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(2061), - [anon_sym_move] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [sym_integer_literal] = ACTIONS(2059), - [aux_sym_string_literal_token1] = ACTIONS(2059), - [sym_char_literal] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2061), - [sym_super] = ACTIONS(2061), - [sym_crate] = ACTIONS(2061), - [sym_metavariable] = ACTIONS(2059), - [sym__raw_string_literal_start] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - }, - [578] = { + [ts_builtin_sym_end] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_macro_rules_BANG] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u128] = ACTIONS(2131), + [anon_sym_i128] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_str] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_fn] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_gen] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_impl] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_mod] = ACTIONS(2131), + [anon_sym_pub] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_trait] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_unsafe] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_move] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [sym_integer_literal] = ACTIONS(2129), + [aux_sym_string_literal_token1] = ACTIONS(2129), + [sym_char_literal] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2131), + [sym_super] = ACTIONS(2131), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(2129), + [sym__raw_string_literal_start] = ACTIONS(2129), + [sym_float_literal] = ACTIONS(2129), + }, + [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2063), - [sym_identifier] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_macro_rules_BANG] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2063), - [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), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_AMP] = ACTIONS(2063), - [anon_sym_PIPE] = ACTIONS(2063), - [anon_sym_LT] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2063), - [anon_sym_COLON_COLON] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2065), - [anon_sym_extern] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_move] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [sym_integer_literal] = ACTIONS(2063), - [aux_sym_string_literal_token1] = ACTIONS(2063), - [sym_char_literal] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2065), - [sym_super] = ACTIONS(2065), - [sym_crate] = ACTIONS(2065), - [sym_metavariable] = ACTIONS(2063), - [sym__raw_string_literal_start] = ACTIONS(2063), - [sym_float_literal] = ACTIONS(2063), - }, - [579] = { + [ts_builtin_sym_end] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_macro_rules_BANG] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_gen] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_move] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2133), + [aux_sym_string_literal_token1] = ACTIONS(2133), + [sym_char_literal] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2133), + [sym__raw_string_literal_start] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + }, + [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_macro_rules_BANG] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [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), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [anon_sym_COLON_COLON] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2069), - [anon_sym_extern] = ACTIONS(2069), - [anon_sym_yield] = ACTIONS(2069), - [anon_sym_move] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(2067), - [aux_sym_string_literal_token1] = ACTIONS(2067), - [sym_char_literal] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_crate] = ACTIONS(2069), - [sym_metavariable] = ACTIONS(2067), - [sym__raw_string_literal_start] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), - }, - [580] = { + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_macro_rules_BANG] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [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), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_move] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2137), + [aux_sym_string_literal_token1] = ACTIONS(2137), + [sym_char_literal] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2137), + [sym__raw_string_literal_start] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + }, + [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2071), - [anon_sym_macro_rules_BANG] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_STAR] = ACTIONS(2071), - [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), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [anon_sym_COLON_COLON] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2071), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2073), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_move] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2071), - [aux_sym_string_literal_token1] = ACTIONS(2071), - [sym_char_literal] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2071), - [sym__raw_string_literal_start] = ACTIONS(2071), - [sym_float_literal] = ACTIONS(2071), - }, - [581] = { + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_macro_rules_BANG] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_u8] = ACTIONS(2143), + [anon_sym_i8] = ACTIONS(2143), + [anon_sym_u16] = ACTIONS(2143), + [anon_sym_i16] = ACTIONS(2143), + [anon_sym_u32] = ACTIONS(2143), + [anon_sym_i32] = ACTIONS(2143), + [anon_sym_u64] = ACTIONS(2143), + [anon_sym_i64] = ACTIONS(2143), + [anon_sym_u128] = ACTIONS(2143), + [anon_sym_i128] = ACTIONS(2143), + [anon_sym_isize] = ACTIONS(2143), + [anon_sym_usize] = ACTIONS(2143), + [anon_sym_f32] = ACTIONS(2143), + [anon_sym_f64] = ACTIONS(2143), + [anon_sym_bool] = ACTIONS(2143), + [anon_sym_str] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_gen] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_impl] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_mod] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_static] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_trait] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_move] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [sym_integer_literal] = ACTIONS(2141), + [aux_sym_string_literal_token1] = ACTIONS(2141), + [sym_char_literal] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2143), + [sym_super] = ACTIONS(2143), + [sym_crate] = ACTIONS(2143), + [sym_metavariable] = ACTIONS(2141), + [sym__raw_string_literal_start] = ACTIONS(2141), + [sym_float_literal] = ACTIONS(2141), + }, + [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_macro_rules_BANG] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_u8] = ACTIONS(2077), - [anon_sym_i8] = ACTIONS(2077), - [anon_sym_u16] = ACTIONS(2077), - [anon_sym_i16] = ACTIONS(2077), - [anon_sym_u32] = ACTIONS(2077), - [anon_sym_i32] = ACTIONS(2077), - [anon_sym_u64] = ACTIONS(2077), - [anon_sym_i64] = ACTIONS(2077), - [anon_sym_u128] = ACTIONS(2077), - [anon_sym_i128] = ACTIONS(2077), - [anon_sym_isize] = ACTIONS(2077), - [anon_sym_usize] = ACTIONS(2077), - [anon_sym_f32] = ACTIONS(2077), - [anon_sym_f64] = ACTIONS(2077), - [anon_sym_bool] = ACTIONS(2077), - [anon_sym_str] = ACTIONS(2077), - [anon_sym_char] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2075), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [anon_sym_fn] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_gen] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_impl] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_pub] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2077), - [anon_sym_trait] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_union] = ACTIONS(2077), - [anon_sym_unsafe] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_move] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2075), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_crate] = ACTIONS(2077), - [sym_metavariable] = ACTIONS(2075), - [sym__raw_string_literal_start] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - }, - [582] = { + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_macro_rules_BANG] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_COLON_COLON] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_gen] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_move] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2145), + [aux_sym_string_literal_token1] = ACTIONS(2145), + [sym_char_literal] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2145), + [sym__raw_string_literal_start] = ACTIONS(2145), + [sym_float_literal] = ACTIONS(2145), + }, + [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_macro_rules_BANG] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_DOT_DOT] = ACTIONS(2079), - [anon_sym_COLON_COLON] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_gen] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_move] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2079), - [aux_sym_string_literal_token1] = ACTIONS(2079), - [sym_char_literal] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2079), - [sym__raw_string_literal_start] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), - }, - [583] = { + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_macro_rules_BANG] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2151), + [anon_sym_i8] = ACTIONS(2151), + [anon_sym_u16] = ACTIONS(2151), + [anon_sym_i16] = ACTIONS(2151), + [anon_sym_u32] = ACTIONS(2151), + [anon_sym_i32] = ACTIONS(2151), + [anon_sym_u64] = ACTIONS(2151), + [anon_sym_i64] = ACTIONS(2151), + [anon_sym_u128] = ACTIONS(2151), + [anon_sym_i128] = ACTIONS(2151), + [anon_sym_isize] = ACTIONS(2151), + [anon_sym_usize] = ACTIONS(2151), + [anon_sym_f32] = ACTIONS(2151), + [anon_sym_f64] = ACTIONS(2151), + [anon_sym_bool] = ACTIONS(2151), + [anon_sym_str] = ACTIONS(2151), + [anon_sym_char] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_COLON_COLON] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_gen] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_impl] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_mod] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_trait] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_move] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2149), + [aux_sym_string_literal_token1] = ACTIONS(2149), + [sym_char_literal] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_crate] = ACTIONS(2151), + [sym_metavariable] = ACTIONS(2149), + [sym__raw_string_literal_start] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), + }, + [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_macro_rules_BANG] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2085), - [anon_sym_i8] = ACTIONS(2085), - [anon_sym_u16] = ACTIONS(2085), - [anon_sym_i16] = ACTIONS(2085), - [anon_sym_u32] = ACTIONS(2085), - [anon_sym_i32] = ACTIONS(2085), - [anon_sym_u64] = ACTIONS(2085), - [anon_sym_i64] = ACTIONS(2085), - [anon_sym_u128] = ACTIONS(2085), - [anon_sym_i128] = ACTIONS(2085), - [anon_sym_isize] = ACTIONS(2085), - [anon_sym_usize] = ACTIONS(2085), - [anon_sym_f32] = ACTIONS(2085), - [anon_sym_f64] = ACTIONS(2085), - [anon_sym_bool] = ACTIONS(2085), - [anon_sym_str] = ACTIONS(2085), - [anon_sym_char] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [anon_sym_COLON_COLON] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_fn] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_gen] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_impl] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_mod] = ACTIONS(2085), - [anon_sym_pub] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_struct] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_union] = ACTIONS(2085), - [anon_sym_unsafe] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_move] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [sym_integer_literal] = ACTIONS(2083), - [aux_sym_string_literal_token1] = ACTIONS(2083), - [sym_char_literal] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_crate] = ACTIONS(2085), - [sym_metavariable] = ACTIONS(2083), - [sym__raw_string_literal_start] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), - }, - [584] = { + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_macro_rules_BANG] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [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), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_move] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2153), + [sym__raw_string_literal_start] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), + }, + [STATE(584)] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_macro_rules_BANG] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_u8] = ACTIONS(2089), - [anon_sym_i8] = ACTIONS(2089), - [anon_sym_u16] = ACTIONS(2089), - [anon_sym_i16] = ACTIONS(2089), - [anon_sym_u32] = ACTIONS(2089), - [anon_sym_i32] = ACTIONS(2089), - [anon_sym_u64] = ACTIONS(2089), - [anon_sym_i64] = ACTIONS(2089), - [anon_sym_u128] = ACTIONS(2089), - [anon_sym_i128] = ACTIONS(2089), - [anon_sym_isize] = ACTIONS(2089), - [anon_sym_usize] = ACTIONS(2089), - [anon_sym_f32] = ACTIONS(2089), - [anon_sym_f64] = ACTIONS(2089), - [anon_sym_bool] = ACTIONS(2089), - [anon_sym_str] = ACTIONS(2089), - [anon_sym_char] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_gen] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_impl] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_mod] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_move] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(2087), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2087), - [sym__raw_string_literal_start] = ACTIONS(2087), - [sym_float_literal] = ACTIONS(2087), - }, - [585] = { + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_macro_rules_BANG] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2159), + [anon_sym_i8] = ACTIONS(2159), + [anon_sym_u16] = ACTIONS(2159), + [anon_sym_i16] = ACTIONS(2159), + [anon_sym_u32] = ACTIONS(2159), + [anon_sym_i32] = ACTIONS(2159), + [anon_sym_u64] = ACTIONS(2159), + [anon_sym_i64] = ACTIONS(2159), + [anon_sym_u128] = ACTIONS(2159), + [anon_sym_i128] = ACTIONS(2159), + [anon_sym_isize] = ACTIONS(2159), + [anon_sym_usize] = ACTIONS(2159), + [anon_sym_f32] = ACTIONS(2159), + [anon_sym_f64] = ACTIONS(2159), + [anon_sym_bool] = ACTIONS(2159), + [anon_sym_str] = ACTIONS(2159), + [anon_sym_char] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_COLON_COLON] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_gen] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_impl] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_mod] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_trait] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_crate] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2157), + [sym__raw_string_literal_start] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), + }, + [STATE(585)] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_macro_rules_BANG] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_COLON_COLON] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_gen] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_extern] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_move] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(2091), - [aux_sym_string_literal_token1] = ACTIONS(2091), - [sym_char_literal] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2091), - [sym__raw_string_literal_start] = ACTIONS(2091), - [sym_float_literal] = ACTIONS(2091), - }, - [586] = { + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_macro_rules_BANG] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [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), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_COLON_COLON] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_move] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_crate] = ACTIONS(2163), + [sym_metavariable] = ACTIONS(2161), + [sym__raw_string_literal_start] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), + }, + [STATE(586)] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_macro_rules_BANG] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2095), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_gen] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_move] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2095), - [aux_sym_string_literal_token1] = ACTIONS(2095), - [sym_char_literal] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2095), - [sym__raw_string_literal_start] = ACTIONS(2095), - [sym_float_literal] = ACTIONS(2095), - }, - [587] = { + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_macro_rules_BANG] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2165), + [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), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_COLON_COLON] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_move] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2165), + [aux_sym_string_literal_token1] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2165), + [sym__raw_string_literal_start] = ACTIONS(2165), + [sym_float_literal] = ACTIONS(2165), + }, + [STATE(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_macro_rules_BANG] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_COLON_COLON] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_gen] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_move] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2099), - [aux_sym_string_literal_token1] = ACTIONS(2099), - [sym_char_literal] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2099), - [sym__raw_string_literal_start] = ACTIONS(2099), - [sym_float_literal] = ACTIONS(2099), - }, - [588] = { + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_macro_rules_BANG] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [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), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_move] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2171), + [sym_integer_literal] = ACTIONS(2169), + [aux_sym_string_literal_token1] = ACTIONS(2169), + [sym_char_literal] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2169), + [sym__raw_string_literal_start] = ACTIONS(2169), + [sym_float_literal] = ACTIONS(2169), + }, + [STATE(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_macro_rules_BANG] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_u8] = ACTIONS(2105), - [anon_sym_i8] = ACTIONS(2105), - [anon_sym_u16] = ACTIONS(2105), - [anon_sym_i16] = ACTIONS(2105), - [anon_sym_u32] = ACTIONS(2105), - [anon_sym_i32] = ACTIONS(2105), - [anon_sym_u64] = ACTIONS(2105), - [anon_sym_i64] = ACTIONS(2105), - [anon_sym_u128] = ACTIONS(2105), - [anon_sym_i128] = ACTIONS(2105), - [anon_sym_isize] = ACTIONS(2105), - [anon_sym_usize] = ACTIONS(2105), - [anon_sym_f32] = ACTIONS(2105), - [anon_sym_f64] = ACTIONS(2105), - [anon_sym_bool] = ACTIONS(2105), - [anon_sym_str] = ACTIONS(2105), - [anon_sym_char] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2103), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_gen] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_impl] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_mod] = ACTIONS(2105), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_move] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(2103), - [aux_sym_string_literal_token1] = ACTIONS(2103), - [sym_char_literal] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_crate] = ACTIONS(2105), - [sym_metavariable] = ACTIONS(2103), - [sym__raw_string_literal_start] = ACTIONS(2103), - [sym_float_literal] = ACTIONS(2103), - }, - [589] = { + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_macro_rules_BANG] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_u8] = ACTIONS(2175), + [anon_sym_i8] = ACTIONS(2175), + [anon_sym_u16] = ACTIONS(2175), + [anon_sym_i16] = ACTIONS(2175), + [anon_sym_u32] = ACTIONS(2175), + [anon_sym_i32] = ACTIONS(2175), + [anon_sym_u64] = ACTIONS(2175), + [anon_sym_i64] = ACTIONS(2175), + [anon_sym_u128] = ACTIONS(2175), + [anon_sym_i128] = ACTIONS(2175), + [anon_sym_isize] = ACTIONS(2175), + [anon_sym_usize] = ACTIONS(2175), + [anon_sym_f32] = ACTIONS(2175), + [anon_sym_f64] = ACTIONS(2175), + [anon_sym_bool] = ACTIONS(2175), + [anon_sym_str] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_gen] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_impl] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_mod] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2173), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_crate] = ACTIONS(2175), + [sym_metavariable] = ACTIONS(2173), + [sym__raw_string_literal_start] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + }, + [STATE(589)] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_macro_rules_BANG] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_u8] = ACTIONS(2109), - [anon_sym_i8] = ACTIONS(2109), - [anon_sym_u16] = ACTIONS(2109), - [anon_sym_i16] = ACTIONS(2109), - [anon_sym_u32] = ACTIONS(2109), - [anon_sym_i32] = ACTIONS(2109), - [anon_sym_u64] = ACTIONS(2109), - [anon_sym_i64] = ACTIONS(2109), - [anon_sym_u128] = ACTIONS(2109), - [anon_sym_i128] = ACTIONS(2109), - [anon_sym_isize] = ACTIONS(2109), - [anon_sym_usize] = ACTIONS(2109), - [anon_sym_f32] = ACTIONS(2109), - [anon_sym_f64] = ACTIONS(2109), - [anon_sym_bool] = ACTIONS(2109), - [anon_sym_str] = ACTIONS(2109), - [anon_sym_char] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2107), - [anon_sym_COLON_COLON] = ACTIONS(2107), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_fn] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_gen] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_impl] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_mod] = ACTIONS(2109), - [anon_sym_pub] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_struct] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_union] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_move] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [sym_integer_literal] = ACTIONS(2107), - [aux_sym_string_literal_token1] = ACTIONS(2107), - [sym_char_literal] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_crate] = ACTIONS(2109), - [sym_metavariable] = ACTIONS(2107), - [sym__raw_string_literal_start] = ACTIONS(2107), - [sym_float_literal] = ACTIONS(2107), - }, - [590] = { + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_macro_rules_BANG] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [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), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_COLON_COLON] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2179), + [anon_sym_extern] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [anon_sym_try] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2177), + [aux_sym_string_literal_token1] = ACTIONS(2177), + [sym_char_literal] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2177), + [sym__raw_string_literal_start] = ACTIONS(2177), + [sym_float_literal] = ACTIONS(2177), + }, + [STATE(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_macro_rules_BANG] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_u8] = ACTIONS(2113), - [anon_sym_i8] = ACTIONS(2113), - [anon_sym_u16] = ACTIONS(2113), - [anon_sym_i16] = ACTIONS(2113), - [anon_sym_u32] = ACTIONS(2113), - [anon_sym_i32] = ACTIONS(2113), - [anon_sym_u64] = ACTIONS(2113), - [anon_sym_i64] = ACTIONS(2113), - [anon_sym_u128] = ACTIONS(2113), - [anon_sym_i128] = ACTIONS(2113), - [anon_sym_isize] = ACTIONS(2113), - [anon_sym_usize] = ACTIONS(2113), - [anon_sym_f32] = ACTIONS(2113), - [anon_sym_f64] = ACTIONS(2113), - [anon_sym_bool] = ACTIONS(2113), - [anon_sym_str] = ACTIONS(2113), - [anon_sym_char] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_DOT_DOT] = ACTIONS(2111), - [anon_sym_COLON_COLON] = ACTIONS(2111), - [anon_sym_POUND] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_fn] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_gen] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_impl] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_mod] = ACTIONS(2113), - [anon_sym_pub] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_union] = ACTIONS(2113), - [anon_sym_unsafe] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_move] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [sym_integer_literal] = ACTIONS(2111), - [aux_sym_string_literal_token1] = ACTIONS(2111), - [sym_char_literal] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2113), - [sym_super] = ACTIONS(2113), - [sym_crate] = ACTIONS(2113), - [sym_metavariable] = ACTIONS(2111), - [sym__raw_string_literal_start] = ACTIONS(2111), - [sym_float_literal] = ACTIONS(2111), - }, - [591] = { + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_macro_rules_BANG] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [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), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_move] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [sym_integer_literal] = ACTIONS(2181), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_crate] = ACTIONS(2183), + [sym_metavariable] = ACTIONS(2181), + [sym__raw_string_literal_start] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), + }, + [STATE(591)] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_macro_rules_BANG] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_u8] = ACTIONS(2117), - [anon_sym_i8] = ACTIONS(2117), - [anon_sym_u16] = ACTIONS(2117), - [anon_sym_i16] = ACTIONS(2117), - [anon_sym_u32] = ACTIONS(2117), - [anon_sym_i32] = ACTIONS(2117), - [anon_sym_u64] = ACTIONS(2117), - [anon_sym_i64] = ACTIONS(2117), - [anon_sym_u128] = ACTIONS(2117), - [anon_sym_i128] = ACTIONS(2117), - [anon_sym_isize] = ACTIONS(2117), - [anon_sym_usize] = ACTIONS(2117), - [anon_sym_f32] = ACTIONS(2117), - [anon_sym_f64] = ACTIONS(2117), - [anon_sym_bool] = ACTIONS(2117), - [anon_sym_str] = ACTIONS(2117), - [anon_sym_char] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_DOT_DOT] = ACTIONS(2115), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_gen] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_impl] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_mod] = ACTIONS(2117), - [anon_sym_pub] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_trait] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_move] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [sym_integer_literal] = ACTIONS(2115), - [aux_sym_string_literal_token1] = ACTIONS(2115), - [sym_char_literal] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2117), - [sym_super] = ACTIONS(2117), - [sym_crate] = ACTIONS(2117), - [sym_metavariable] = ACTIONS(2115), - [sym__raw_string_literal_start] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), - }, - [592] = { + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_macro_rules_BANG] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [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), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_COLON_COLON] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_move] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2185), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2187), + [anon_sym_false] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2185), + [sym__raw_string_literal_start] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + }, + [STATE(592)] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_macro_rules_BANG] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_u8] = ACTIONS(2121), - [anon_sym_i8] = ACTIONS(2121), - [anon_sym_u16] = ACTIONS(2121), - [anon_sym_i16] = ACTIONS(2121), - [anon_sym_u32] = ACTIONS(2121), - [anon_sym_i32] = ACTIONS(2121), - [anon_sym_u64] = ACTIONS(2121), - [anon_sym_i64] = ACTIONS(2121), - [anon_sym_u128] = ACTIONS(2121), - [anon_sym_i128] = ACTIONS(2121), - [anon_sym_isize] = ACTIONS(2121), - [anon_sym_usize] = ACTIONS(2121), - [anon_sym_f32] = ACTIONS(2121), - [anon_sym_f64] = ACTIONS(2121), - [anon_sym_bool] = ACTIONS(2121), - [anon_sym_str] = ACTIONS(2121), - [anon_sym_char] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2119), - [anon_sym_COLON_COLON] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_fn] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_gen] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_impl] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_loop] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_mod] = ACTIONS(2121), - [anon_sym_pub] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_unsafe] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_move] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2119), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_crate] = ACTIONS(2121), - [sym_metavariable] = ACTIONS(2119), - [sym__raw_string_literal_start] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - }, - [593] = { + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_macro_rules_BANG] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_gen] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_move] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2189), + [sym__raw_string_literal_start] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + }, + [STATE(593)] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_macro_rules_BANG] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2123), - [anon_sym_COLON_COLON] = ACTIONS(2123), - [anon_sym_POUND] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_gen] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_move] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2123), - [aux_sym_string_literal_token1] = ACTIONS(2123), - [sym_char_literal] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2123), - [sym__raw_string_literal_start] = ACTIONS(2123), - [sym_float_literal] = ACTIONS(2123), - }, - [594] = { + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_macro_rules_BANG] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [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), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2195), + [anon_sym_extern] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_move] = ACTIONS(2195), + [anon_sym_try] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2193), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2193), + [sym__raw_string_literal_start] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), + }, + [STATE(594)] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_macro_rules_BANG] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_u8] = ACTIONS(2129), - [anon_sym_i8] = ACTIONS(2129), - [anon_sym_u16] = ACTIONS(2129), - [anon_sym_i16] = ACTIONS(2129), - [anon_sym_u32] = ACTIONS(2129), - [anon_sym_i32] = ACTIONS(2129), - [anon_sym_u64] = ACTIONS(2129), - [anon_sym_i64] = ACTIONS(2129), - [anon_sym_u128] = ACTIONS(2129), - [anon_sym_i128] = ACTIONS(2129), - [anon_sym_isize] = ACTIONS(2129), - [anon_sym_usize] = ACTIONS(2129), - [anon_sym_f32] = ACTIONS(2129), - [anon_sym_f64] = ACTIONS(2129), - [anon_sym_bool] = ACTIONS(2129), - [anon_sym_str] = ACTIONS(2129), - [anon_sym_char] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_COLON_COLON] = ACTIONS(2127), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_fn] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_gen] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_impl] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_mod] = ACTIONS(2129), - [anon_sym_pub] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_trait] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_unsafe] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_move] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [sym_integer_literal] = ACTIONS(2127), - [aux_sym_string_literal_token1] = ACTIONS(2127), - [sym_char_literal] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_crate] = ACTIONS(2129), - [sym_metavariable] = ACTIONS(2127), - [sym__raw_string_literal_start] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2127), - }, - [595] = { + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_macro_rules_BANG] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2199), + [anon_sym_i8] = ACTIONS(2199), + [anon_sym_u16] = ACTIONS(2199), + [anon_sym_i16] = ACTIONS(2199), + [anon_sym_u32] = ACTIONS(2199), + [anon_sym_i32] = ACTIONS(2199), + [anon_sym_u64] = ACTIONS(2199), + [anon_sym_i64] = ACTIONS(2199), + [anon_sym_u128] = ACTIONS(2199), + [anon_sym_i128] = ACTIONS(2199), + [anon_sym_isize] = ACTIONS(2199), + [anon_sym_usize] = ACTIONS(2199), + [anon_sym_f32] = ACTIONS(2199), + [anon_sym_f64] = ACTIONS(2199), + [anon_sym_bool] = ACTIONS(2199), + [anon_sym_str] = ACTIONS(2199), + [anon_sym_char] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_COLON_COLON] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_gen] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_impl] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2199), + [anon_sym_loop] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_mod] = ACTIONS(2199), + [anon_sym_pub] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_static] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_trait] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_use] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_move] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2197), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2199), + [anon_sym_false] = ACTIONS(2199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_metavariable] = ACTIONS(2197), + [sym__raw_string_literal_start] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), + }, + [STATE(595)] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_macro_rules_BANG] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_u8] = ACTIONS(2133), - [anon_sym_i8] = ACTIONS(2133), - [anon_sym_u16] = ACTIONS(2133), - [anon_sym_i16] = ACTIONS(2133), - [anon_sym_u32] = ACTIONS(2133), - [anon_sym_i32] = ACTIONS(2133), - [anon_sym_u64] = ACTIONS(2133), - [anon_sym_i64] = ACTIONS(2133), - [anon_sym_u128] = ACTIONS(2133), - [anon_sym_i128] = ACTIONS(2133), - [anon_sym_isize] = ACTIONS(2133), - [anon_sym_usize] = ACTIONS(2133), - [anon_sym_f32] = ACTIONS(2133), - [anon_sym_f64] = ACTIONS(2133), - [anon_sym_bool] = ACTIONS(2133), - [anon_sym_str] = ACTIONS(2133), - [anon_sym_char] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_default] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_gen] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_impl] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_mod] = ACTIONS(2133), - [anon_sym_pub] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_move] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [sym_integer_literal] = ACTIONS(2131), - [aux_sym_string_literal_token1] = ACTIONS(2131), - [sym_char_literal] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2133), - [sym_super] = ACTIONS(2133), - [sym_crate] = ACTIONS(2133), - [sym_metavariable] = ACTIONS(2131), - [sym__raw_string_literal_start] = ACTIONS(2131), - [sym_float_literal] = ACTIONS(2131), - }, - [596] = { + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_macro_rules_BANG] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [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), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_COLON_COLON] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2203), + [anon_sym_extern] = ACTIONS(2203), + [anon_sym_yield] = ACTIONS(2203), + [anon_sym_move] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2201), + [aux_sym_string_literal_token1] = ACTIONS(2201), + [sym_char_literal] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2201), + [sym__raw_string_literal_start] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), + }, + [STATE(596)] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_macro_rules_BANG] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2135), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym_POUND] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_gen] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_extern] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_move] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2135), - [aux_sym_string_literal_token1] = ACTIONS(2135), - [sym_char_literal] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2135), - [sym__raw_string_literal_start] = ACTIONS(2135), - [sym_float_literal] = ACTIONS(2135), - }, - [597] = { + [ts_builtin_sym_end] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_macro_rules_BANG] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [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), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(2205), + [anon_sym_COLON_COLON] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_yield] = ACTIONS(2207), + [anon_sym_move] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [sym_integer_literal] = ACTIONS(2205), + [aux_sym_string_literal_token1] = ACTIONS(2205), + [sym_char_literal] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2207), + [sym_super] = ACTIONS(2207), + [sym_crate] = ACTIONS(2207), + [sym_metavariable] = ACTIONS(2205), + [sym__raw_string_literal_start] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), + }, + [STATE(597)] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_macro_rules_BANG] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [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), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2139), - [anon_sym_COLON_COLON] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2141), - [anon_sym_extern] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_move] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2139), - [aux_sym_string_literal_token1] = ACTIONS(2139), - [sym_char_literal] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2139), - [sym__raw_string_literal_start] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), - }, - [598] = { + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_macro_rules_BANG] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [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), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_COLON_COLON] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2211), + [anon_sym_move] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2209), + [aux_sym_string_literal_token1] = ACTIONS(2209), + [sym_char_literal] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2209), + [sym__raw_string_literal_start] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), + }, + [STATE(598)] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_macro_rules_BANG] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_u8] = ACTIONS(2145), - [anon_sym_i8] = ACTIONS(2145), - [anon_sym_u16] = ACTIONS(2145), - [anon_sym_i16] = ACTIONS(2145), - [anon_sym_u32] = ACTIONS(2145), - [anon_sym_i32] = ACTIONS(2145), - [anon_sym_u64] = ACTIONS(2145), - [anon_sym_i64] = ACTIONS(2145), - [anon_sym_u128] = ACTIONS(2145), - [anon_sym_i128] = ACTIONS(2145), - [anon_sym_isize] = ACTIONS(2145), - [anon_sym_usize] = ACTIONS(2145), - [anon_sym_f32] = ACTIONS(2145), - [anon_sym_f64] = ACTIONS(2145), - [anon_sym_bool] = ACTIONS(2145), - [anon_sym_str] = ACTIONS(2145), - [anon_sym_char] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2143), - [anon_sym_COLON_COLON] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(2143), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_fn] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_gen] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_impl] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_loop] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_mod] = ACTIONS(2145), - [anon_sym_pub] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_unsafe] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_extern] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_move] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2143), - [aux_sym_string_literal_token1] = ACTIONS(2143), - [sym_char_literal] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_crate] = ACTIONS(2145), - [sym_metavariable] = ACTIONS(2143), - [sym__raw_string_literal_start] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2143), - }, - [599] = { + [ts_builtin_sym_end] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_macro_rules_BANG] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [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), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_move] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [sym_integer_literal] = ACTIONS(2213), + [aux_sym_string_literal_token1] = ACTIONS(2213), + [sym_char_literal] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2213), + [sym__raw_string_literal_start] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), + }, + [STATE(599)] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_macro_rules_BANG] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2149), - [anon_sym_i8] = ACTIONS(2149), - [anon_sym_u16] = ACTIONS(2149), - [anon_sym_i16] = ACTIONS(2149), - [anon_sym_u32] = ACTIONS(2149), - [anon_sym_i32] = ACTIONS(2149), - [anon_sym_u64] = ACTIONS(2149), - [anon_sym_i64] = ACTIONS(2149), - [anon_sym_u128] = ACTIONS(2149), - [anon_sym_i128] = ACTIONS(2149), - [anon_sym_isize] = ACTIONS(2149), - [anon_sym_usize] = ACTIONS(2149), - [anon_sym_f32] = ACTIONS(2149), - [anon_sym_f64] = ACTIONS(2149), - [anon_sym_bool] = ACTIONS(2149), - [anon_sym_str] = ACTIONS(2149), - [anon_sym_char] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_COLON_COLON] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_gen] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_impl] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_loop] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_mod] = ACTIONS(2149), - [anon_sym_pub] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_union] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_extern] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_move] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [sym_integer_literal] = ACTIONS(2147), - [aux_sym_string_literal_token1] = ACTIONS(2147), - [sym_char_literal] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_crate] = ACTIONS(2149), - [sym_metavariable] = ACTIONS(2147), - [sym__raw_string_literal_start] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), - }, - [600] = { + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_macro_rules_BANG] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_COLON_COLON] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_gen] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_move] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2217), + [aux_sym_string_literal_token1] = ACTIONS(2217), + [sym_char_literal] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2219), + [anon_sym_false] = ACTIONS(2219), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2217), + [sym__raw_string_literal_start] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + }, + [STATE(600)] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_macro_rules_BANG] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2153), - [anon_sym_i8] = ACTIONS(2153), - [anon_sym_u16] = ACTIONS(2153), - [anon_sym_i16] = ACTIONS(2153), - [anon_sym_u32] = ACTIONS(2153), - [anon_sym_i32] = ACTIONS(2153), - [anon_sym_u64] = ACTIONS(2153), - [anon_sym_i64] = ACTIONS(2153), - [anon_sym_u128] = ACTIONS(2153), - [anon_sym_i128] = ACTIONS(2153), - [anon_sym_isize] = ACTIONS(2153), - [anon_sym_usize] = ACTIONS(2153), - [anon_sym_f32] = ACTIONS(2153), - [anon_sym_f64] = ACTIONS(2153), - [anon_sym_bool] = ACTIONS(2153), - [anon_sym_str] = ACTIONS(2153), - [anon_sym_char] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_DOT_DOT] = ACTIONS(2151), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_gen] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_impl] = ACTIONS(2153), - [anon_sym_let] = ACTIONS(2153), - [anon_sym_loop] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_mod] = ACTIONS(2153), - [anon_sym_pub] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_extern] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_move] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [sym_integer_literal] = ACTIONS(2151), - [aux_sym_string_literal_token1] = ACTIONS(2151), - [sym_char_literal] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2153), - [sym_super] = ACTIONS(2153), - [sym_crate] = ACTIONS(2153), - [sym_metavariable] = ACTIONS(2151), - [sym__raw_string_literal_start] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2151), - }, - [601] = { + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_macro_rules_BANG] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [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), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2221), + [anon_sym_COLON_COLON] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2223), + [anon_sym_extern] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_move] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2221), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2221), + [sym__raw_string_literal_start] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + }, + [STATE(601)] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2157), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_macro_rules_BANG] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [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), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_COLON_COLON] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_move] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [sym_integer_literal] = ACTIONS(2155), - [aux_sym_string_literal_token1] = ACTIONS(2155), - [sym_char_literal] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2157), - [sym_super] = ACTIONS(2157), - [sym_crate] = ACTIONS(2157), - [sym_metavariable] = ACTIONS(2155), - [sym__raw_string_literal_start] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), - }, - [602] = { + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_macro_rules_BANG] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [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), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_COLON_COLON] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_move] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2225), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(2225), + [sym__raw_string_literal_start] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), + }, + [STATE(602)] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_macro_rules_BANG] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [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), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_DOT_DOT] = ACTIONS(2159), - [anon_sym_COLON_COLON] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2161), - [anon_sym_extern] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_move] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2159), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2159), - [sym__raw_string_literal_start] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - }, - [603] = { + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_macro_rules_BANG] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [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), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2231), + [anon_sym_extern] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_move] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(2229), + [aux_sym_string_literal_token1] = ACTIONS(2229), + [sym_char_literal] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2231), + [anon_sym_false] = ACTIONS(2231), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2229), + [sym__raw_string_literal_start] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), + }, + [STATE(603)] = { + [sym_empty_statement] = STATE(1314), + [sym_macro_definition] = STATE(1314), + [sym_attribute_item] = STATE(1314), + [sym_inner_attribute_item] = STATE(1314), + [sym_mod_item] = STATE(1314), + [sym_foreign_mod_item] = STATE(1314), + [sym_struct_item] = STATE(1314), + [sym_union_item] = STATE(1314), + [sym_enum_item] = STATE(1314), + [sym_extern_crate_declaration] = STATE(1314), + [sym_const_item] = STATE(1314), + [sym_static_item] = STATE(1314), + [sym_type_item] = STATE(1314), + [sym_function_item] = STATE(1314), + [sym_function_signature_item] = STATE(1314), + [sym_function_modifiers] = STATE(3640), + [sym_impl_item] = STATE(1314), + [sym_trait_item] = STATE(1314), + [sym_associated_type] = STATE(1314), + [sym_let_declaration] = STATE(1314), + [sym_use_declaration] = STATE(1314), + [sym_extern_modifier] = STATE(2199), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3370), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_macro_invocation] = STATE(1314), + [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_macro_rules_BANG] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [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), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2163), - [anon_sym_COLON_COLON] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_move] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [sym_integer_literal] = ACTIONS(2163), - [aux_sym_string_literal_token1] = ACTIONS(2163), - [sym_char_literal] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2165), - [sym_super] = ACTIONS(2165), - [sym_crate] = ACTIONS(2165), - [sym_metavariable] = ACTIONS(2163), - [sym__raw_string_literal_start] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), - }, - [604] = { + [aux_sym_declaration_list_repeat1] = STATE(736), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_gen] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2283), + }, + [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_macro_rules_BANG] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [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), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_DOT_DOT] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2169), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2169), - [anon_sym_extern] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_move] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [sym_integer_literal] = ACTIONS(2167), - [aux_sym_string_literal_token1] = ACTIONS(2167), - [sym_char_literal] = ACTIONS(2167), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2169), - [sym_super] = ACTIONS(2169), - [sym_crate] = ACTIONS(2169), - [sym_metavariable] = ACTIONS(2167), - [sym__raw_string_literal_start] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), - }, - [605] = { + [ts_builtin_sym_end] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_macro_rules_BANG] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_u8] = ACTIONS(2287), + [anon_sym_i8] = ACTIONS(2287), + [anon_sym_u16] = ACTIONS(2287), + [anon_sym_i16] = ACTIONS(2287), + [anon_sym_u32] = ACTIONS(2287), + [anon_sym_i32] = ACTIONS(2287), + [anon_sym_u64] = ACTIONS(2287), + [anon_sym_i64] = ACTIONS(2287), + [anon_sym_u128] = ACTIONS(2287), + [anon_sym_i128] = ACTIONS(2287), + [anon_sym_isize] = ACTIONS(2287), + [anon_sym_usize] = ACTIONS(2287), + [anon_sym_f32] = ACTIONS(2287), + [anon_sym_f64] = ACTIONS(2287), + [anon_sym_bool] = ACTIONS(2287), + [anon_sym_str] = ACTIONS(2287), + [anon_sym_char] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_DOT_DOT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_fn] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_gen] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_impl] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_mod] = ACTIONS(2287), + [anon_sym_pub] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_trait] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_unsafe] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_yield] = ACTIONS(2287), + [anon_sym_move] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [sym_integer_literal] = ACTIONS(2285), + [aux_sym_string_literal_token1] = ACTIONS(2285), + [sym_char_literal] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_metavariable] = ACTIONS(2285), + [sym__raw_string_literal_start] = ACTIONS(2285), + [sym_float_literal] = ACTIONS(2285), + }, + [STATE(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_macro_rules_BANG] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2173), - [anon_sym_i8] = ACTIONS(2173), - [anon_sym_u16] = ACTIONS(2173), - [anon_sym_i16] = ACTIONS(2173), - [anon_sym_u32] = ACTIONS(2173), - [anon_sym_i32] = ACTIONS(2173), - [anon_sym_u64] = ACTIONS(2173), - [anon_sym_i64] = ACTIONS(2173), - [anon_sym_u128] = ACTIONS(2173), - [anon_sym_i128] = ACTIONS(2173), - [anon_sym_isize] = ACTIONS(2173), - [anon_sym_usize] = ACTIONS(2173), - [anon_sym_f32] = ACTIONS(2173), - [anon_sym_f64] = ACTIONS(2173), - [anon_sym_bool] = ACTIONS(2173), - [anon_sym_str] = ACTIONS(2173), - [anon_sym_char] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_DOT_DOT] = ACTIONS(2171), - [anon_sym_COLON_COLON] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_gen] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_impl] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_mod] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_move] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [sym_integer_literal] = ACTIONS(2171), - [aux_sym_string_literal_token1] = ACTIONS(2171), - [sym_char_literal] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_crate] = ACTIONS(2173), - [sym_metavariable] = ACTIONS(2171), - [sym__raw_string_literal_start] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), - }, - [606] = { + [ts_builtin_sym_end] = ACTIONS(2289), + [sym_identifier] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_macro_rules_BANG] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_u8] = ACTIONS(2291), + [anon_sym_i8] = ACTIONS(2291), + [anon_sym_u16] = ACTIONS(2291), + [anon_sym_i16] = ACTIONS(2291), + [anon_sym_u32] = ACTIONS(2291), + [anon_sym_i32] = ACTIONS(2291), + [anon_sym_u64] = ACTIONS(2291), + [anon_sym_i64] = ACTIONS(2291), + [anon_sym_u128] = ACTIONS(2291), + [anon_sym_i128] = ACTIONS(2291), + [anon_sym_isize] = ACTIONS(2291), + [anon_sym_usize] = ACTIONS(2291), + [anon_sym_f32] = ACTIONS(2291), + [anon_sym_f64] = ACTIONS(2291), + [anon_sym_bool] = ACTIONS(2291), + [anon_sym_str] = ACTIONS(2291), + [anon_sym_char] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_fn] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_gen] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_impl] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_mod] = ACTIONS(2291), + [anon_sym_pub] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_trait] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_unsafe] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_yield] = ACTIONS(2291), + [anon_sym_move] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2289), + [aux_sym_string_literal_token1] = ACTIONS(2289), + [sym_char_literal] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(2289), + [sym__raw_string_literal_start] = ACTIONS(2289), + [sym_float_literal] = ACTIONS(2289), + }, + [STATE(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_macro_rules_BANG] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [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), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_COLON_COLON] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2177), - [anon_sym_extern] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_move] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2175), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_metavariable] = ACTIONS(2175), - [sym__raw_string_literal_start] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), - }, - [607] = { + [ts_builtin_sym_end] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym_macro_rules_BANG] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [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), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2295), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2295), + [anon_sym_move] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [sym_integer_literal] = ACTIONS(2293), + [aux_sym_string_literal_token1] = ACTIONS(2293), + [sym_char_literal] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2293), + [sym__raw_string_literal_start] = ACTIONS(2293), + [sym_float_literal] = ACTIONS(2293), + }, + [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_macro_rules_BANG] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_STAR] = ACTIONS(2179), - [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), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_AMP] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_DOT_DOT] = ACTIONS(2179), - [anon_sym_COLON_COLON] = ACTIONS(2179), - [anon_sym_POUND] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2181), - [anon_sym_extern] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_move] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2179), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2179), - [sym__raw_string_literal_start] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - }, - [608] = { + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_macro_rules_BANG] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_u8] = ACTIONS(2299), + [anon_sym_i8] = ACTIONS(2299), + [anon_sym_u16] = ACTIONS(2299), + [anon_sym_i16] = ACTIONS(2299), + [anon_sym_u32] = ACTIONS(2299), + [anon_sym_i32] = ACTIONS(2299), + [anon_sym_u64] = ACTIONS(2299), + [anon_sym_i64] = ACTIONS(2299), + [anon_sym_u128] = ACTIONS(2299), + [anon_sym_i128] = ACTIONS(2299), + [anon_sym_isize] = ACTIONS(2299), + [anon_sym_usize] = ACTIONS(2299), + [anon_sym_f32] = ACTIONS(2299), + [anon_sym_f64] = ACTIONS(2299), + [anon_sym_bool] = ACTIONS(2299), + [anon_sym_str] = ACTIONS(2299), + [anon_sym_char] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_fn] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_gen] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_impl] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_mod] = ACTIONS(2299), + [anon_sym_pub] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_trait] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_unsafe] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_move] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [sym_integer_literal] = ACTIONS(2297), + [aux_sym_string_literal_token1] = ACTIONS(2297), + [sym_char_literal] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2299), + [anon_sym_false] = ACTIONS(2299), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_metavariable] = ACTIONS(2297), + [sym__raw_string_literal_start] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), + }, + [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_macro_rules_BANG] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [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), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_COLON_COLON] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2185), - [anon_sym_extern] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_move] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2183), - [aux_sym_string_literal_token1] = ACTIONS(2183), - [sym_char_literal] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_metavariable] = ACTIONS(2183), - [sym__raw_string_literal_start] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), - }, - [609] = { + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_macro_rules_BANG] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2301), + [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), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2301), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2303), + [anon_sym_move] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2301), + [aux_sym_string_literal_token1] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2301), + [sym__raw_string_literal_start] = ACTIONS(2301), + [sym_float_literal] = ACTIONS(2301), + }, + [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_macro_rules_BANG] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2189), - [anon_sym_i8] = ACTIONS(2189), - [anon_sym_u16] = ACTIONS(2189), - [anon_sym_i16] = ACTIONS(2189), - [anon_sym_u32] = ACTIONS(2189), - [anon_sym_i32] = ACTIONS(2189), - [anon_sym_u64] = ACTIONS(2189), - [anon_sym_i64] = ACTIONS(2189), - [anon_sym_u128] = ACTIONS(2189), - [anon_sym_i128] = ACTIONS(2189), - [anon_sym_isize] = ACTIONS(2189), - [anon_sym_usize] = ACTIONS(2189), - [anon_sym_f32] = ACTIONS(2189), - [anon_sym_f64] = ACTIONS(2189), - [anon_sym_bool] = ACTIONS(2189), - [anon_sym_str] = ACTIONS(2189), - [anon_sym_char] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2187), - [anon_sym_POUND] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_gen] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_impl] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_loop] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_mod] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_extern] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_move] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_crate] = ACTIONS(2189), - [sym_metavariable] = ACTIONS(2187), - [sym__raw_string_literal_start] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - }, - [610] = { + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_macro_rules_BANG] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2305), + [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), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_move] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2305), + [aux_sym_string_literal_token1] = ACTIONS(2305), + [sym_char_literal] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(2305), + [sym__raw_string_literal_start] = ACTIONS(2305), + [sym_float_literal] = ACTIONS(2305), + }, + [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_macro_rules_BANG] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2193), - [anon_sym_i8] = ACTIONS(2193), - [anon_sym_u16] = ACTIONS(2193), - [anon_sym_i16] = ACTIONS(2193), - [anon_sym_u32] = ACTIONS(2193), - [anon_sym_i32] = ACTIONS(2193), - [anon_sym_u64] = ACTIONS(2193), - [anon_sym_i64] = ACTIONS(2193), - [anon_sym_u128] = ACTIONS(2193), - [anon_sym_i128] = ACTIONS(2193), - [anon_sym_isize] = ACTIONS(2193), - [anon_sym_usize] = ACTIONS(2193), - [anon_sym_f32] = ACTIONS(2193), - [anon_sym_f64] = ACTIONS(2193), - [anon_sym_bool] = ACTIONS(2193), - [anon_sym_str] = ACTIONS(2193), - [anon_sym_char] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2191), - [anon_sym_COLON_COLON] = ACTIONS(2191), - [anon_sym_POUND] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_gen] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_impl] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_mod] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_move] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2191), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_crate] = ACTIONS(2193), - [sym_metavariable] = ACTIONS(2191), - [sym__raw_string_literal_start] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), - }, - [611] = { + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_macro_rules_BANG] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [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), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_DOT_DOT] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_yield] = ACTIONS(2311), + [anon_sym_move] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2309), + [aux_sym_string_literal_token1] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_metavariable] = ACTIONS(2309), + [sym__raw_string_literal_start] = ACTIONS(2309), + [sym_float_literal] = ACTIONS(2309), + }, + [STATE(611)] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_macro_rules_BANG] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [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), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_COLON_COLON] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_move] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2195), - [aux_sym_string_literal_token1] = ACTIONS(2195), - [sym_char_literal] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2195), - [sym__raw_string_literal_start] = ACTIONS(2195), - [sym_float_literal] = ACTIONS(2195), - }, - [612] = { + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2313), + [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), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_move] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2313), + [aux_sym_string_literal_token1] = ACTIONS(2313), + [sym_char_literal] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_metavariable] = ACTIONS(2313), + [sym__raw_string_literal_start] = ACTIONS(2313), + [sym_float_literal] = ACTIONS(2313), + }, + [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_macro_rules_BANG] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [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), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_DOT_DOT] = ACTIONS(2199), - [anon_sym_COLON_COLON] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_move] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2199), - [aux_sym_string_literal_token1] = ACTIONS(2199), - [sym_char_literal] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_metavariable] = ACTIONS(2199), - [sym__raw_string_literal_start] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), - }, - [613] = { + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_macro_rules_BANG] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2317), + [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), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_PIPE] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_DOT_DOT] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_move] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [sym_integer_literal] = ACTIONS(2317), + [aux_sym_string_literal_token1] = ACTIONS(2317), + [sym_char_literal] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_crate] = ACTIONS(2319), + [sym_metavariable] = ACTIONS(2317), + [sym__raw_string_literal_start] = ACTIONS(2317), + [sym_float_literal] = ACTIONS(2317), + }, + [STATE(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_macro_rules_BANG] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [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), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_DOT_DOT] = ACTIONS(2203), - [anon_sym_COLON_COLON] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2205), - [anon_sym_extern] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_move] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2203), - [aux_sym_string_literal_token1] = ACTIONS(2203), - [sym_char_literal] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_crate] = ACTIONS(2205), - [sym_metavariable] = ACTIONS(2203), - [sym__raw_string_literal_start] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), - }, - [614] = { + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_macro_rules_BANG] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [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), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2323), + [anon_sym_move] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2321), + [aux_sym_string_literal_token1] = ACTIONS(2321), + [sym_char_literal] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_metavariable] = ACTIONS(2321), + [sym__raw_string_literal_start] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), + }, + [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_macro_rules_BANG] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2207), - [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), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_COLON_COLON] = ACTIONS(2207), - [anon_sym_POUND] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2209), - [anon_sym_extern] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_move] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2207), - [aux_sym_string_literal_token1] = ACTIONS(2207), - [sym_char_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(2209), - [sym_crate] = ACTIONS(2209), - [sym_metavariable] = ACTIONS(2207), - [sym__raw_string_literal_start] = ACTIONS(2207), - [sym_float_literal] = ACTIONS(2207), - }, - [615] = { + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_macro_rules_BANG] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2325), + [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), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_DOT_DOT] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_move] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [sym_integer_literal] = ACTIONS(2325), + [aux_sym_string_literal_token1] = ACTIONS(2325), + [sym_char_literal] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(2325), + [sym__raw_string_literal_start] = ACTIONS(2325), + [sym_float_literal] = ACTIONS(2325), + }, + [STATE(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_macro_rules_BANG] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2213), - [anon_sym_i8] = ACTIONS(2213), - [anon_sym_u16] = ACTIONS(2213), - [anon_sym_i16] = ACTIONS(2213), - [anon_sym_u32] = ACTIONS(2213), - [anon_sym_i32] = ACTIONS(2213), - [anon_sym_u64] = ACTIONS(2213), - [anon_sym_i64] = ACTIONS(2213), - [anon_sym_u128] = ACTIONS(2213), - [anon_sym_i128] = ACTIONS(2213), - [anon_sym_isize] = ACTIONS(2213), - [anon_sym_usize] = ACTIONS(2213), - [anon_sym_f32] = ACTIONS(2213), - [anon_sym_f64] = ACTIONS(2213), - [anon_sym_bool] = ACTIONS(2213), - [anon_sym_str] = ACTIONS(2213), - [anon_sym_char] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_DOT_DOT] = ACTIONS(2211), - [anon_sym_COLON_COLON] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_gen] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_impl] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_loop] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_mod] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_extern] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_move] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [sym_integer_literal] = ACTIONS(2211), - [aux_sym_string_literal_token1] = ACTIONS(2211), - [sym_char_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_crate] = ACTIONS(2213), - [sym_metavariable] = ACTIONS(2211), - [sym__raw_string_literal_start] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2211), - }, - [616] = { + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_macro_rules_BANG] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2329), + [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), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_move] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [sym_integer_literal] = ACTIONS(2329), + [aux_sym_string_literal_token1] = ACTIONS(2329), + [sym_char_literal] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_crate] = ACTIONS(2331), + [sym_metavariable] = ACTIONS(2329), + [sym__raw_string_literal_start] = ACTIONS(2329), + [sym_float_literal] = ACTIONS(2329), + }, + [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_macro_rules_BANG] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2215), - [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), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2215), - [anon_sym_DOT_DOT] = ACTIONS(2215), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_POUND] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2217), - [anon_sym_extern] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_move] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2215), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2215), - [sym__raw_string_literal_start] = ACTIONS(2215), - [sym_float_literal] = ACTIONS(2215), - }, - [617] = { + [ts_builtin_sym_end] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_macro_rules_BANG] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_u8] = ACTIONS(2335), + [anon_sym_i8] = ACTIONS(2335), + [anon_sym_u16] = ACTIONS(2335), + [anon_sym_i16] = ACTIONS(2335), + [anon_sym_u32] = ACTIONS(2335), + [anon_sym_i32] = ACTIONS(2335), + [anon_sym_u64] = ACTIONS(2335), + [anon_sym_i64] = ACTIONS(2335), + [anon_sym_u128] = ACTIONS(2335), + [anon_sym_i128] = ACTIONS(2335), + [anon_sym_isize] = ACTIONS(2335), + [anon_sym_usize] = ACTIONS(2335), + [anon_sym_f32] = ACTIONS(2335), + [anon_sym_f64] = ACTIONS(2335), + [anon_sym_bool] = ACTIONS(2335), + [anon_sym_str] = ACTIONS(2335), + [anon_sym_char] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_gen] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_mod] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_trait] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_move] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [sym_integer_literal] = ACTIONS(2333), + [aux_sym_string_literal_token1] = ACTIONS(2333), + [sym_char_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_crate] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(2333), + [sym__raw_string_literal_start] = ACTIONS(2333), + [sym_float_literal] = ACTIONS(2333), + }, + [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_macro_rules_BANG] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [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), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_DOT_DOT] = ACTIONS(2219), - [anon_sym_COLON_COLON] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_move] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2219), - [aux_sym_string_literal_token1] = ACTIONS(2219), - [sym_char_literal] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2219), - [sym__raw_string_literal_start] = ACTIONS(2219), - [sym_float_literal] = ACTIONS(2219), - }, - [618] = { + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_macro_rules_BANG] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [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), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2339), + [anon_sym_yield] = ACTIONS(2339), + [anon_sym_move] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [sym_integer_literal] = ACTIONS(2337), + [aux_sym_string_literal_token1] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(2339), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(2337), + [sym__raw_string_literal_start] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), + }, + [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_macro_rules_BANG] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [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), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2223), - [anon_sym_COLON_COLON] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2225), - [anon_sym_extern] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_move] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2223), - [aux_sym_string_literal_token1] = ACTIONS(2223), - [sym_char_literal] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_metavariable] = ACTIONS(2223), - [sym__raw_string_literal_start] = ACTIONS(2223), - [sym_float_literal] = ACTIONS(2223), - }, - [619] = { + [ts_builtin_sym_end] = ACTIONS(2341), + [sym_identifier] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_macro_rules_BANG] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [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), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2343), + [anon_sym_yield] = ACTIONS(2343), + [anon_sym_move] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2343), + [sym_integer_literal] = ACTIONS(2341), + [aux_sym_string_literal_token1] = ACTIONS(2341), + [sym_char_literal] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2343), + [anon_sym_false] = ACTIONS(2343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2343), + [sym_super] = ACTIONS(2343), + [sym_crate] = ACTIONS(2343), + [sym_metavariable] = ACTIONS(2341), + [sym__raw_string_literal_start] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), + }, + [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_macro_rules_BANG] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2227), - [anon_sym_COLON_COLON] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_gen] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_move] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2227), - [aux_sym_string_literal_token1] = ACTIONS(2227), - [sym_char_literal] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), - [sym_metavariable] = ACTIONS(2227), - [sym__raw_string_literal_start] = ACTIONS(2227), - [sym_float_literal] = ACTIONS(2227), - }, - [620] = { + [ts_builtin_sym_end] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_macro_rules_BANG] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [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), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_yield] = ACTIONS(2347), + [anon_sym_move] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2345), + [aux_sym_string_literal_token1] = ACTIONS(2345), + [sym_char_literal] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2345), + [sym__raw_string_literal_start] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), + }, + [STATE(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_macro_rules_BANG] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_STAR] = ACTIONS(2231), - [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), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_DOT_DOT] = ACTIONS(2231), - [anon_sym_COLON_COLON] = ACTIONS(2231), - [anon_sym_POUND] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_move] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [sym_integer_literal] = ACTIONS(2231), - [aux_sym_string_literal_token1] = ACTIONS(2231), - [sym_char_literal] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), - [sym_metavariable] = ACTIONS(2231), - [sym__raw_string_literal_start] = ACTIONS(2231), - [sym_float_literal] = ACTIONS(2231), - }, - [621] = { + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_macro_rules_BANG] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2351), + [anon_sym_i8] = ACTIONS(2351), + [anon_sym_u16] = ACTIONS(2351), + [anon_sym_i16] = ACTIONS(2351), + [anon_sym_u32] = ACTIONS(2351), + [anon_sym_i32] = ACTIONS(2351), + [anon_sym_u64] = ACTIONS(2351), + [anon_sym_i64] = ACTIONS(2351), + [anon_sym_u128] = ACTIONS(2351), + [anon_sym_i128] = ACTIONS(2351), + [anon_sym_isize] = ACTIONS(2351), + [anon_sym_usize] = ACTIONS(2351), + [anon_sym_f32] = ACTIONS(2351), + [anon_sym_f64] = ACTIONS(2351), + [anon_sym_bool] = ACTIONS(2351), + [anon_sym_str] = ACTIONS(2351), + [anon_sym_char] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2349), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_default] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_gen] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_impl] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_mod] = ACTIONS(2351), + [anon_sym_pub] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_trait] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_yield] = ACTIONS(2351), + [anon_sym_move] = ACTIONS(2351), + [anon_sym_try] = ACTIONS(2351), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2351), + [anon_sym_false] = ACTIONS(2351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2351), + [sym_super] = ACTIONS(2351), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(2349), + [sym__raw_string_literal_start] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), + }, + [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(2235), - [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), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2235), - [anon_sym_PIPE] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2235), - [anon_sym_DOT_DOT] = ACTIONS(2235), - [anon_sym_COLON_COLON] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_move] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [sym_integer_literal] = ACTIONS(2235), - [aux_sym_string_literal_token1] = ACTIONS(2235), - [sym_char_literal] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_crate] = ACTIONS(2237), - [sym_metavariable] = ACTIONS(2235), - [sym__raw_string_literal_start] = ACTIONS(2235), - [sym_float_literal] = ACTIONS(2235), - }, - [622] = { + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_macro_rules_BANG] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2355), + [anon_sym_i8] = ACTIONS(2355), + [anon_sym_u16] = ACTIONS(2355), + [anon_sym_i16] = ACTIONS(2355), + [anon_sym_u32] = ACTIONS(2355), + [anon_sym_i32] = ACTIONS(2355), + [anon_sym_u64] = ACTIONS(2355), + [anon_sym_i64] = ACTIONS(2355), + [anon_sym_u128] = ACTIONS(2355), + [anon_sym_i128] = ACTIONS(2355), + [anon_sym_isize] = ACTIONS(2355), + [anon_sym_usize] = ACTIONS(2355), + [anon_sym_f32] = ACTIONS(2355), + [anon_sym_f64] = ACTIONS(2355), + [anon_sym_bool] = ACTIONS(2355), + [anon_sym_str] = ACTIONS(2355), + [anon_sym_char] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_async] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_fn] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_gen] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_impl] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_mod] = ACTIONS(2355), + [anon_sym_pub] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_trait] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_unsafe] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_yield] = ACTIONS(2355), + [anon_sym_move] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [sym_integer_literal] = ACTIONS(2353), + [aux_sym_string_literal_token1] = ACTIONS(2353), + [sym_char_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2355), + [sym_super] = ACTIONS(2355), + [sym_crate] = ACTIONS(2355), + [sym_metavariable] = ACTIONS(2353), + [sym__raw_string_literal_start] = ACTIONS(2353), + [sym_float_literal] = ACTIONS(2353), + }, + [STATE(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_macro_rules_BANG] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_DOT_DOT] = ACTIONS(2239), - [anon_sym_COLON_COLON] = ACTIONS(2239), - [anon_sym_POUND] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_gen] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_mod] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_move] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [sym_integer_literal] = ACTIONS(2239), - [aux_sym_string_literal_token1] = ACTIONS(2239), - [sym_char_literal] = ACTIONS(2239), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_crate] = ACTIONS(2241), - [sym_metavariable] = ACTIONS(2239), - [sym__raw_string_literal_start] = ACTIONS(2239), - [sym_float_literal] = ACTIONS(2239), - }, - [623] = { + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_macro_rules_BANG] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2359), + [anon_sym_i8] = ACTIONS(2359), + [anon_sym_u16] = ACTIONS(2359), + [anon_sym_i16] = ACTIONS(2359), + [anon_sym_u32] = ACTIONS(2359), + [anon_sym_i32] = ACTIONS(2359), + [anon_sym_u64] = ACTIONS(2359), + [anon_sym_i64] = ACTIONS(2359), + [anon_sym_u128] = ACTIONS(2359), + [anon_sym_i128] = ACTIONS(2359), + [anon_sym_isize] = ACTIONS(2359), + [anon_sym_usize] = ACTIONS(2359), + [anon_sym_f32] = ACTIONS(2359), + [anon_sym_f64] = ACTIONS(2359), + [anon_sym_bool] = ACTIONS(2359), + [anon_sym_str] = ACTIONS(2359), + [anon_sym_char] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_fn] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_gen] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_impl] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_mod] = ACTIONS(2359), + [anon_sym_pub] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_trait] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_unsafe] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_move] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [sym_integer_literal] = ACTIONS(2357), + [aux_sym_string_literal_token1] = ACTIONS(2357), + [sym_char_literal] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(2359), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2357), + [sym__raw_string_literal_start] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), + }, + [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_macro_rules_BANG] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u128] = ACTIONS(2245), - [anon_sym_i128] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_str] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_DOT_DOT] = ACTIONS(2243), - [anon_sym_COLON_COLON] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2243), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_gen] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_move] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2243), - [aux_sym_string_literal_token1] = ACTIONS(2243), - [sym_char_literal] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_metavariable] = ACTIONS(2243), - [sym__raw_string_literal_start] = ACTIONS(2243), - [sym_float_literal] = ACTIONS(2243), - }, - [624] = { + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_macro_rules_BANG] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2363), + [anon_sym_i8] = ACTIONS(2363), + [anon_sym_u16] = ACTIONS(2363), + [anon_sym_i16] = ACTIONS(2363), + [anon_sym_u32] = ACTIONS(2363), + [anon_sym_i32] = ACTIONS(2363), + [anon_sym_u64] = ACTIONS(2363), + [anon_sym_i64] = ACTIONS(2363), + [anon_sym_u128] = ACTIONS(2363), + [anon_sym_i128] = ACTIONS(2363), + [anon_sym_isize] = ACTIONS(2363), + [anon_sym_usize] = ACTIONS(2363), + [anon_sym_f32] = ACTIONS(2363), + [anon_sym_f64] = ACTIONS(2363), + [anon_sym_bool] = ACTIONS(2363), + [anon_sym_str] = ACTIONS(2363), + [anon_sym_char] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_gen] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_impl] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_mod] = ACTIONS(2363), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_trait] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_move] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [sym_integer_literal] = ACTIONS(2361), + [aux_sym_string_literal_token1] = ACTIONS(2361), + [sym_char_literal] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_crate] = ACTIONS(2363), + [sym_metavariable] = ACTIONS(2361), + [sym__raw_string_literal_start] = ACTIONS(2361), + [sym_float_literal] = ACTIONS(2361), + }, + [STATE(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_macro_rules_BANG] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_COLON_COLON] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_gen] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_extern] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_move] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2247), - [aux_sym_string_literal_token1] = ACTIONS(2247), - [sym_char_literal] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(2247), - [sym__raw_string_literal_start] = ACTIONS(2247), - [sym_float_literal] = ACTIONS(2247), - }, - [625] = { + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_macro_rules_BANG] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2367), + [anon_sym_i8] = ACTIONS(2367), + [anon_sym_u16] = ACTIONS(2367), + [anon_sym_i16] = ACTIONS(2367), + [anon_sym_u32] = ACTIONS(2367), + [anon_sym_i32] = ACTIONS(2367), + [anon_sym_u64] = ACTIONS(2367), + [anon_sym_i64] = ACTIONS(2367), + [anon_sym_u128] = ACTIONS(2367), + [anon_sym_i128] = ACTIONS(2367), + [anon_sym_isize] = ACTIONS(2367), + [anon_sym_usize] = ACTIONS(2367), + [anon_sym_f32] = ACTIONS(2367), + [anon_sym_f64] = ACTIONS(2367), + [anon_sym_bool] = ACTIONS(2367), + [anon_sym_str] = ACTIONS(2367), + [anon_sym_char] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_gen] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_impl] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_mod] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_trait] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_move] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2365), + [aux_sym_string_literal_token1] = ACTIONS(2365), + [sym_char_literal] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2365), + [sym__raw_string_literal_start] = ACTIONS(2365), + [sym_float_literal] = ACTIONS(2365), + }, + [STATE(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_macro_rules_BANG] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_u8] = ACTIONS(2253), - [anon_sym_i8] = ACTIONS(2253), - [anon_sym_u16] = ACTIONS(2253), - [anon_sym_i16] = ACTIONS(2253), - [anon_sym_u32] = ACTIONS(2253), - [anon_sym_i32] = ACTIONS(2253), - [anon_sym_u64] = ACTIONS(2253), - [anon_sym_i64] = ACTIONS(2253), - [anon_sym_u128] = ACTIONS(2253), - [anon_sym_i128] = ACTIONS(2253), - [anon_sym_isize] = ACTIONS(2253), - [anon_sym_usize] = ACTIONS(2253), - [anon_sym_f32] = ACTIONS(2253), - [anon_sym_f64] = ACTIONS(2253), - [anon_sym_bool] = ACTIONS(2253), - [anon_sym_str] = ACTIONS(2253), - [anon_sym_char] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_DOT_DOT] = ACTIONS(2251), - [anon_sym_COLON_COLON] = ACTIONS(2251), - [anon_sym_POUND] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_gen] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_mod] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_move] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2251), - [aux_sym_string_literal_token1] = ACTIONS(2251), - [sym_char_literal] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(2251), - [sym__raw_string_literal_start] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2251), - }, - [626] = { + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_macro_rules_BANG] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_DOT_DOT] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_gen] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_impl] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_mod] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_trait] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2371), + [anon_sym_move] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2369), + [sym__raw_string_literal_start] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), + }, + [STATE(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_macro_rules_BANG] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2255), - [anon_sym_u8] = ACTIONS(2257), - [anon_sym_i8] = ACTIONS(2257), - [anon_sym_u16] = ACTIONS(2257), - [anon_sym_i16] = ACTIONS(2257), - [anon_sym_u32] = ACTIONS(2257), - [anon_sym_i32] = ACTIONS(2257), - [anon_sym_u64] = ACTIONS(2257), - [anon_sym_i64] = ACTIONS(2257), - [anon_sym_u128] = ACTIONS(2257), - [anon_sym_i128] = ACTIONS(2257), - [anon_sym_isize] = ACTIONS(2257), - [anon_sym_usize] = ACTIONS(2257), - [anon_sym_f32] = ACTIONS(2257), - [anon_sym_f64] = ACTIONS(2257), - [anon_sym_bool] = ACTIONS(2257), - [anon_sym_str] = ACTIONS(2257), - [anon_sym_char] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2255), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_DOT_DOT] = ACTIONS(2255), - [anon_sym_COLON_COLON] = ACTIONS(2255), - [anon_sym_POUND] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_gen] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_loop] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_mod] = ACTIONS(2257), - [anon_sym_pub] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_move] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2255), - [aux_sym_string_literal_token1] = ACTIONS(2255), - [sym_char_literal] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_crate] = ACTIONS(2257), - [sym_metavariable] = ACTIONS(2255), - [sym__raw_string_literal_start] = ACTIONS(2255), - [sym_float_literal] = ACTIONS(2255), - }, - [627] = { + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_macro_rules_BANG] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_DOT_DOT] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_gen] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2375), + [anon_sym_move] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_crate] = ACTIONS(2375), + [sym_metavariable] = ACTIONS(2373), + [sym__raw_string_literal_start] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + }, + [STATE(627)] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_macro_rules_BANG] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2261), - [anon_sym_i8] = ACTIONS(2261), - [anon_sym_u16] = ACTIONS(2261), - [anon_sym_i16] = ACTIONS(2261), - [anon_sym_u32] = ACTIONS(2261), - [anon_sym_i32] = ACTIONS(2261), - [anon_sym_u64] = ACTIONS(2261), - [anon_sym_i64] = ACTIONS(2261), - [anon_sym_u128] = ACTIONS(2261), - [anon_sym_i128] = ACTIONS(2261), - [anon_sym_isize] = ACTIONS(2261), - [anon_sym_usize] = ACTIONS(2261), - [anon_sym_f32] = ACTIONS(2261), - [anon_sym_f64] = ACTIONS(2261), - [anon_sym_bool] = ACTIONS(2261), - [anon_sym_str] = ACTIONS(2261), - [anon_sym_char] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_POUND] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_gen] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_impl] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_loop] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_extern] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_move] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2259), - [aux_sym_string_literal_token1] = ACTIONS(2259), - [sym_char_literal] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_crate] = ACTIONS(2261), - [sym_metavariable] = ACTIONS(2259), - [sym__raw_string_literal_start] = ACTIONS(2259), - [sym_float_literal] = ACTIONS(2259), - }, - [628] = { + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_macro_rules_BANG] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [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_DASH] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_DOT_DOT] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_gen] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2379), + [anon_sym_move] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2377), + [sym__raw_string_literal_start] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + }, + [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_macro_rules_BANG] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2263), - [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), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2263), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2263), - [anon_sym_POUND] = ACTIONS(2263), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2265), - [anon_sym_extern] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_move] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [sym_integer_literal] = ACTIONS(2263), - [aux_sym_string_literal_token1] = ACTIONS(2263), - [sym_char_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2265), - [sym_super] = ACTIONS(2265), - [sym_crate] = ACTIONS(2265), - [sym_metavariable] = ACTIONS(2263), - [sym__raw_string_literal_start] = ACTIONS(2263), - [sym_float_literal] = ACTIONS(2263), - }, - [629] = { + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_macro_rules_BANG] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_DOT_DOT] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_gen] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_yield] = ACTIONS(2383), + [anon_sym_move] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2381), + [sym__raw_string_literal_start] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), + }, + [STATE(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_macro_rules_BANG] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u128] = ACTIONS(2269), - [anon_sym_i128] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_str] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_COLON_COLON] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_gen] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_impl] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_mod] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_extern] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_move] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2267), - [aux_sym_string_literal_token1] = ACTIONS(2267), - [sym_char_literal] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_metavariable] = ACTIONS(2267), - [sym__raw_string_literal_start] = ACTIONS(2267), - [sym_float_literal] = ACTIONS(2267), - }, - [630] = { + [ts_builtin_sym_end] = ACTIONS(2385), + [sym_identifier] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_macro_rules_BANG] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2387), + [anon_sym_i8] = ACTIONS(2387), + [anon_sym_u16] = ACTIONS(2387), + [anon_sym_i16] = ACTIONS(2387), + [anon_sym_u32] = ACTIONS(2387), + [anon_sym_i32] = ACTIONS(2387), + [anon_sym_u64] = ACTIONS(2387), + [anon_sym_i64] = ACTIONS(2387), + [anon_sym_u128] = ACTIONS(2387), + [anon_sym_i128] = ACTIONS(2387), + [anon_sym_isize] = ACTIONS(2387), + [anon_sym_usize] = ACTIONS(2387), + [anon_sym_f32] = ACTIONS(2387), + [anon_sym_f64] = ACTIONS(2387), + [anon_sym_bool] = ACTIONS(2387), + [anon_sym_str] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_mod] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_trait] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_extern] = ACTIONS(2387), + [anon_sym_yield] = ACTIONS(2387), + [anon_sym_move] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2387), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2387), + [sym_super] = ACTIONS(2387), + [sym_crate] = ACTIONS(2387), + [sym_metavariable] = ACTIONS(2385), + [sym__raw_string_literal_start] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), + }, + [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_macro_rules_BANG] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_COLON_COLON] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_fn] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [anon_sym_mod] = ACTIONS(1275), - [anon_sym_pub] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_trait] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_yield] = ACTIONS(1275), - [anon_sym_move] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1273), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1275), - [anon_sym_false] = ACTIONS(1275), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_crate] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1273), - [sym__raw_string_literal_start] = ACTIONS(1273), - [sym_float_literal] = ACTIONS(1273), - }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_macro_rules_BANG] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2271), - [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), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_COLON_COLON] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_move] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2271), - [aux_sym_string_literal_token1] = ACTIONS(2271), - [sym_char_literal] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_metavariable] = ACTIONS(2271), - [sym__raw_string_literal_start] = ACTIONS(2271), - [sym_float_literal] = ACTIONS(2271), - }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_macro_rules_BANG] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2275), - [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), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2275), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_DOT_DOT] = ACTIONS(2275), - [anon_sym_COLON_COLON] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_move] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2275), - [aux_sym_string_literal_token1] = ACTIONS(2275), - [sym_char_literal] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2275), - [sym__raw_string_literal_start] = ACTIONS(2275), - [sym_float_literal] = ACTIONS(2275), - }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_macro_rules_BANG] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_u8] = ACTIONS(2281), - [anon_sym_i8] = ACTIONS(2281), - [anon_sym_u16] = ACTIONS(2281), - [anon_sym_i16] = ACTIONS(2281), - [anon_sym_u32] = ACTIONS(2281), - [anon_sym_i32] = ACTIONS(2281), - [anon_sym_u64] = ACTIONS(2281), - [anon_sym_i64] = ACTIONS(2281), - [anon_sym_u128] = ACTIONS(2281), - [anon_sym_i128] = ACTIONS(2281), - [anon_sym_isize] = ACTIONS(2281), - [anon_sym_usize] = ACTIONS(2281), - [anon_sym_f32] = ACTIONS(2281), - [anon_sym_f64] = ACTIONS(2281), - [anon_sym_bool] = ACTIONS(2281), - [anon_sym_str] = ACTIONS(2281), - [anon_sym_char] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(2279), - [anon_sym_SQUOTE] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_gen] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_impl] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_mod] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_move] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2279), - [aux_sym_string_literal_token1] = ACTIONS(2279), - [sym_char_literal] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2281), - [sym_super] = ACTIONS(2281), - [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2279), - [sym__raw_string_literal_start] = ACTIONS(2279), - [sym_float_literal] = ACTIONS(2279), - }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_macro_rules_BANG] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(2283), - [anon_sym_u8] = ACTIONS(2285), - [anon_sym_i8] = ACTIONS(2285), - [anon_sym_u16] = ACTIONS(2285), - [anon_sym_i16] = ACTIONS(2285), - [anon_sym_u32] = ACTIONS(2285), - [anon_sym_i32] = ACTIONS(2285), - [anon_sym_u64] = ACTIONS(2285), - [anon_sym_i64] = ACTIONS(2285), - [anon_sym_u128] = ACTIONS(2285), - [anon_sym_i128] = ACTIONS(2285), - [anon_sym_isize] = ACTIONS(2285), - [anon_sym_usize] = ACTIONS(2285), - [anon_sym_f32] = ACTIONS(2285), - [anon_sym_f64] = ACTIONS(2285), - [anon_sym_bool] = ACTIONS(2285), - [anon_sym_str] = ACTIONS(2285), - [anon_sym_char] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_AMP] = ACTIONS(2283), - [anon_sym_PIPE] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_DOT_DOT] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_gen] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_impl] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_loop] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_mod] = ACTIONS(2285), - [anon_sym_pub] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_extern] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_move] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(2283), - [aux_sym_string_literal_token1] = ACTIONS(2283), - [sym_char_literal] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2283), - [sym__raw_string_literal_start] = ACTIONS(2283), - [sym_float_literal] = ACTIONS(2283), - }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_macro_rules_BANG] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u128] = ACTIONS(2289), - [anon_sym_i128] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_str] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_DOT_DOT] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_gen] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_impl] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_mod] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_move] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2287), - [aux_sym_string_literal_token1] = ACTIONS(2287), - [sym_char_literal] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_metavariable] = ACTIONS(2287), - [sym__raw_string_literal_start] = ACTIONS(2287), - [sym_float_literal] = ACTIONS(2287), - }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_macro_rules_BANG] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2291), - [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), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2291), - [anon_sym_POUND] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_move] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [sym_integer_literal] = ACTIONS(2291), - [aux_sym_string_literal_token1] = ACTIONS(2291), - [sym_char_literal] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(2293), - [sym_crate] = ACTIONS(2293), - [sym_metavariable] = ACTIONS(2291), - [sym__raw_string_literal_start] = ACTIONS(2291), - [sym_float_literal] = ACTIONS(2291), - }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_u8] = ACTIONS(2297), - [anon_sym_i8] = ACTIONS(2297), - [anon_sym_u16] = ACTIONS(2297), - [anon_sym_i16] = ACTIONS(2297), - [anon_sym_u32] = ACTIONS(2297), - [anon_sym_i32] = ACTIONS(2297), - [anon_sym_u64] = ACTIONS(2297), - [anon_sym_i64] = ACTIONS(2297), - [anon_sym_u128] = ACTIONS(2297), - [anon_sym_i128] = ACTIONS(2297), - [anon_sym_isize] = ACTIONS(2297), - [anon_sym_usize] = ACTIONS(2297), - [anon_sym_f32] = ACTIONS(2297), - [anon_sym_f64] = ACTIONS(2297), - [anon_sym_bool] = ACTIONS(2297), - [anon_sym_str] = ACTIONS(2297), - [anon_sym_char] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2295), - [anon_sym_COLON_COLON] = ACTIONS(2295), - [anon_sym_POUND] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_gen] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_impl] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_mod] = ACTIONS(2297), - [anon_sym_pub] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_union] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_move] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [sym_integer_literal] = ACTIONS(2295), - [aux_sym_string_literal_token1] = ACTIONS(2295), - [sym_char_literal] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_crate] = ACTIONS(2297), - [sym_metavariable] = ACTIONS(2295), - [sym__raw_string_literal_start] = ACTIONS(2295), - [sym_float_literal] = ACTIONS(2295), - }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_macro_rules_BANG] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(2299), - [anon_sym_u8] = ACTIONS(2301), - [anon_sym_i8] = ACTIONS(2301), - [anon_sym_u16] = ACTIONS(2301), - [anon_sym_i16] = ACTIONS(2301), - [anon_sym_u32] = ACTIONS(2301), - [anon_sym_i32] = ACTIONS(2301), - [anon_sym_u64] = ACTIONS(2301), - [anon_sym_i64] = ACTIONS(2301), - [anon_sym_u128] = ACTIONS(2301), - [anon_sym_i128] = ACTIONS(2301), - [anon_sym_isize] = ACTIONS(2301), - [anon_sym_usize] = ACTIONS(2301), - [anon_sym_f32] = ACTIONS(2301), - [anon_sym_f64] = ACTIONS(2301), - [anon_sym_bool] = ACTIONS(2301), - [anon_sym_str] = ACTIONS(2301), - [anon_sym_char] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2299), - [anon_sym_COLON_COLON] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_fn] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_gen] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_impl] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_mod] = ACTIONS(2301), - [anon_sym_pub] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_move] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2299), - [aux_sym_string_literal_token1] = ACTIONS(2299), - [sym_char_literal] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), - [sym_metavariable] = ACTIONS(2299), - [sym__raw_string_literal_start] = ACTIONS(2299), - [sym_float_literal] = ACTIONS(2299), - }, - [639] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_macro_rules_BANG] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2312), - [anon_sym_u8] = ACTIONS(2314), - [anon_sym_i8] = ACTIONS(2314), - [anon_sym_u16] = ACTIONS(2314), - [anon_sym_i16] = ACTIONS(2314), - [anon_sym_u32] = ACTIONS(2314), - [anon_sym_i32] = ACTIONS(2314), - [anon_sym_u64] = ACTIONS(2314), - [anon_sym_i64] = ACTIONS(2314), - [anon_sym_u128] = ACTIONS(2314), - [anon_sym_i128] = ACTIONS(2314), - [anon_sym_isize] = ACTIONS(2314), - [anon_sym_usize] = ACTIONS(2314), - [anon_sym_f32] = ACTIONS(2314), - [anon_sym_f64] = ACTIONS(2314), - [anon_sym_bool] = ACTIONS(2314), - [anon_sym_str] = ACTIONS(2314), - [anon_sym_char] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2338), - [anon_sym_gen] = ACTIONS(2341), - [anon_sym_impl] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_mod] = ACTIONS(2350), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_unsafe] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2377), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2380), - [sym_super] = ACTIONS(2380), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2386), - }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2389), [sym_identifier] = ACTIONS(2391), [anon_sym_SEMI] = ACTIONS(2389), @@ -82674,9 +81988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2389), [sym_float_literal] = ACTIONS(2389), }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2393), [sym_identifier] = ACTIONS(2395), [anon_sym_SEMI] = ACTIONS(2393), @@ -82755,9 +82069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2393), [sym_float_literal] = ACTIONS(2393), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [STATE(632)] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2397), [sym_identifier] = ACTIONS(2399), [anon_sym_SEMI] = ACTIONS(2397), @@ -82836,9 +82150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2397), [sym_float_literal] = ACTIONS(2397), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [STATE(633)] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2401), [sym_identifier] = ACTIONS(2403), [anon_sym_SEMI] = ACTIONS(2401), @@ -82917,9 +82231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2401), [sym_float_literal] = ACTIONS(2401), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [STATE(634)] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2405), [sym_identifier] = ACTIONS(2407), [anon_sym_SEMI] = ACTIONS(2405), @@ -82998,9 +82312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2405), [sym_float_literal] = ACTIONS(2405), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [STATE(635)] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2409), [sym_identifier] = ACTIONS(2411), [anon_sym_SEMI] = ACTIONS(2409), @@ -83079,90 +82393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2409), [sym_float_literal] = ACTIONS(2409), }, - [646] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_macro_rules_BANG] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_fn] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_pub] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_trait] = ACTIONS(1259), - [anon_sym_type] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_yield] = ACTIONS(1259), - [anon_sym_move] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym__raw_string_literal_start] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), - }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [STATE(636)] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2413), [sym_identifier] = ACTIONS(2415), [anon_sym_SEMI] = ACTIONS(2413), @@ -83241,9 +82474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2413), [sym_float_literal] = ACTIONS(2413), }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [STATE(637)] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2417), [sym_identifier] = ACTIONS(2419), [anon_sym_SEMI] = ACTIONS(2417), @@ -83322,252 +82555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2417), [sym_float_literal] = ACTIONS(2417), }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_macro_rules_BANG] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_gen] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_impl] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_loop] = ACTIONS(1271), - [anon_sym_match] = ACTIONS(1271), - [anon_sym_mod] = ACTIONS(1271), - [anon_sym_pub] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_trait] = ACTIONS(1271), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1271), - [anon_sym_use] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym_yield] = ACTIONS(1271), - [anon_sym_move] = ACTIONS(1271), - [anon_sym_try] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), - }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_macro_rules_BANG] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_async] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_gen] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_impl] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_loop] = ACTIONS(1267), - [anon_sym_match] = ACTIONS(1267), - [anon_sym_mod] = ACTIONS(1267), - [anon_sym_pub] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_trait] = ACTIONS(1267), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_unsafe] = ACTIONS(1267), - [anon_sym_use] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym_yield] = ACTIONS(1267), - [anon_sym_move] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym__raw_string_literal_start] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), - }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_macro_rules_BANG] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_gen] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_unsafe] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_move] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym__raw_string_literal_start] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), - }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [STATE(638)] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2421), [sym_identifier] = ACTIONS(2423), [anon_sym_SEMI] = ACTIONS(2421), @@ -83646,9 +82636,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2421), [sym_float_literal] = ACTIONS(2421), }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2425), [sym_identifier] = ACTIONS(2427), [anon_sym_SEMI] = ACTIONS(2425), @@ -83727,9 +82717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2425), [sym_float_literal] = ACTIONS(2425), }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2429), [sym_identifier] = ACTIONS(2431), [anon_sym_SEMI] = ACTIONS(2429), @@ -83808,9 +82798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2429), [sym_float_literal] = ACTIONS(2429), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2433), [sym_identifier] = ACTIONS(2435), [anon_sym_SEMI] = ACTIONS(2433), @@ -83889,9 +82879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2433), [sym_float_literal] = ACTIONS(2433), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2437), [sym_identifier] = ACTIONS(2439), [anon_sym_SEMI] = ACTIONS(2437), @@ -83970,9 +82960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2437), [sym_float_literal] = ACTIONS(2437), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2441), [sym_identifier] = ACTIONS(2443), [anon_sym_SEMI] = ACTIONS(2441), @@ -84051,9 +83041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2441), [sym_float_literal] = ACTIONS(2441), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [STATE(644)] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2445), [sym_identifier] = ACTIONS(2447), [anon_sym_SEMI] = ACTIONS(2445), @@ -84132,9 +83122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2445), [sym_float_literal] = ACTIONS(2445), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [STATE(645)] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2449), [sym_identifier] = ACTIONS(2451), [anon_sym_SEMI] = ACTIONS(2449), @@ -84213,9 +83203,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2449), [sym_float_literal] = ACTIONS(2449), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [STATE(646)] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2453), [sym_identifier] = ACTIONS(2455), [anon_sym_SEMI] = ACTIONS(2453), @@ -84294,9 +83284,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2453), [sym_float_literal] = ACTIONS(2453), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [STATE(647)] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), [ts_builtin_sym_end] = ACTIONS(2457), [sym_identifier] = ACTIONS(2459), [anon_sym_SEMI] = ACTIONS(2457), @@ -84375,90 +83365,1143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2457), [sym_float_literal] = ACTIONS(2457), }, - [662] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [aux_sym_declaration_list_repeat1] = STATE(667), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), + [STATE(648)] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_macro_rules_BANG] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2463), + [anon_sym_i8] = ACTIONS(2463), + [anon_sym_u16] = ACTIONS(2463), + [anon_sym_i16] = ACTIONS(2463), + [anon_sym_u32] = ACTIONS(2463), + [anon_sym_i32] = ACTIONS(2463), + [anon_sym_u64] = ACTIONS(2463), + [anon_sym_i64] = ACTIONS(2463), + [anon_sym_u128] = ACTIONS(2463), + [anon_sym_i128] = ACTIONS(2463), + [anon_sym_isize] = ACTIONS(2463), + [anon_sym_usize] = ACTIONS(2463), + [anon_sym_f32] = ACTIONS(2463), + [anon_sym_f64] = ACTIONS(2463), + [anon_sym_bool] = ACTIONS(2463), + [anon_sym_str] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_async] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_default] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_gen] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_impl] = ACTIONS(2463), + [anon_sym_let] = ACTIONS(2463), + [anon_sym_loop] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_mod] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_static] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_trait] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_use] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym_yield] = ACTIONS(2463), + [anon_sym_move] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [sym_integer_literal] = ACTIONS(2461), + [aux_sym_string_literal_token1] = ACTIONS(2461), + [sym_char_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2463), + [anon_sym_false] = ACTIONS(2463), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2463), + [sym_super] = ACTIONS(2463), + [sym_crate] = ACTIONS(2463), + [sym_metavariable] = ACTIONS(2461), + [sym__raw_string_literal_start] = ACTIONS(2461), + [sym_float_literal] = ACTIONS(2461), + }, + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2465), [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u128] = ACTIONS(2469), - [anon_sym_i128] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_str] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_async] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_default] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_gen] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_impl] = ACTIONS(2467), + [anon_sym_let] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_mod] = ACTIONS(2467), + [anon_sym_pub] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_static] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_trait] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_move] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [sym_integer_literal] = ACTIONS(2465), + [aux_sym_string_literal_token1] = ACTIONS(2465), + [sym_char_literal] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2467), + [sym_metavariable] = ACTIONS(2465), + [sym__raw_string_literal_start] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + }, + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_macro_rules_BANG] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_DOT_DOT] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_async] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_default] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_gen] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_impl] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_mod] = ACTIONS(2471), + [anon_sym_pub] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_static] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_trait] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_yield] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [sym_integer_literal] = ACTIONS(2469), + [aux_sym_string_literal_token1] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2471), + [anon_sym_false] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(2471), + [sym_crate] = ACTIONS(2471), + [sym_metavariable] = ACTIONS(2469), + [sym__raw_string_literal_start] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + }, + [STATE(651)] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_macro_rules_BANG] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_u8] = ACTIONS(2475), + [anon_sym_i8] = ACTIONS(2475), + [anon_sym_u16] = ACTIONS(2475), + [anon_sym_i16] = ACTIONS(2475), + [anon_sym_u32] = ACTIONS(2475), + [anon_sym_i32] = ACTIONS(2475), + [anon_sym_u64] = ACTIONS(2475), + [anon_sym_i64] = ACTIONS(2475), + [anon_sym_u128] = ACTIONS(2475), + [anon_sym_i128] = ACTIONS(2475), + [anon_sym_isize] = ACTIONS(2475), + [anon_sym_usize] = ACTIONS(2475), + [anon_sym_f32] = ACTIONS(2475), + [anon_sym_f64] = ACTIONS(2475), + [anon_sym_bool] = ACTIONS(2475), + [anon_sym_str] = ACTIONS(2475), + [anon_sym_char] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_COLON_COLON] = ACTIONS(2473), [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_default] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_gen] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_impl] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), + [anon_sym_loop] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_mod] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_static] = ACTIONS(2475), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_trait] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_use] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2475), + [anon_sym_move] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2473), + [aux_sym_string_literal_token1] = ACTIONS(2473), + [sym_char_literal] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2475), + [sym_super] = ACTIONS(2475), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2473), + [sym__raw_string_literal_start] = ACTIONS(2473), + [sym_float_literal] = ACTIONS(2473), + }, + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_macro_rules_BANG] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_u8] = ACTIONS(2479), + [anon_sym_i8] = ACTIONS(2479), + [anon_sym_u16] = ACTIONS(2479), + [anon_sym_i16] = ACTIONS(2479), + [anon_sym_u32] = ACTIONS(2479), + [anon_sym_i32] = ACTIONS(2479), + [anon_sym_u64] = ACTIONS(2479), + [anon_sym_i64] = ACTIONS(2479), + [anon_sym_u128] = ACTIONS(2479), + [anon_sym_i128] = ACTIONS(2479), + [anon_sym_isize] = ACTIONS(2479), + [anon_sym_usize] = ACTIONS(2479), + [anon_sym_f32] = ACTIONS(2479), + [anon_sym_f64] = ACTIONS(2479), + [anon_sym_bool] = ACTIONS(2479), + [anon_sym_str] = ACTIONS(2479), + [anon_sym_char] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_async] = ACTIONS(2479), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_const] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_default] = ACTIONS(2479), [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_gen] = ACTIONS(2479), + [anon_sym_if] = ACTIONS(2479), + [anon_sym_impl] = ACTIONS(2479), + [anon_sym_let] = ACTIONS(2479), + [anon_sym_loop] = ACTIONS(2479), + [anon_sym_match] = ACTIONS(2479), + [anon_sym_mod] = ACTIONS(2479), + [anon_sym_pub] = ACTIONS(2479), + [anon_sym_return] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2479), + [anon_sym_trait] = ACTIONS(2479), + [anon_sym_type] = ACTIONS(2479), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(2479), + [anon_sym_use] = ACTIONS(2479), + [anon_sym_while] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2479), + [anon_sym_move] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [sym_integer_literal] = ACTIONS(2477), + [aux_sym_string_literal_token1] = ACTIONS(2477), + [sym_char_literal] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(2479), + [sym_crate] = ACTIONS(2479), + [sym_metavariable] = ACTIONS(2477), + [sym__raw_string_literal_start] = ACTIONS(2477), + [sym_float_literal] = ACTIONS(2477), + }, + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_macro_rules_BANG] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_u8] = ACTIONS(2483), + [anon_sym_i8] = ACTIONS(2483), + [anon_sym_u16] = ACTIONS(2483), + [anon_sym_i16] = ACTIONS(2483), + [anon_sym_u32] = ACTIONS(2483), + [anon_sym_i32] = ACTIONS(2483), + [anon_sym_u64] = ACTIONS(2483), + [anon_sym_i64] = ACTIONS(2483), + [anon_sym_u128] = ACTIONS(2483), + [anon_sym_i128] = ACTIONS(2483), + [anon_sym_isize] = ACTIONS(2483), + [anon_sym_usize] = ACTIONS(2483), + [anon_sym_f32] = ACTIONS(2483), + [anon_sym_f64] = ACTIONS(2483), + [anon_sym_bool] = ACTIONS(2483), + [anon_sym_str] = ACTIONS(2483), + [anon_sym_char] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_fn] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_impl] = ACTIONS(2483), + [anon_sym_let] = ACTIONS(2483), + [anon_sym_loop] = ACTIONS(2483), + [anon_sym_match] = ACTIONS(2483), + [anon_sym_mod] = ACTIONS(2483), + [anon_sym_pub] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_trait] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_unsafe] = ACTIONS(2483), + [anon_sym_use] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_move] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [sym_integer_literal] = ACTIONS(2481), + [aux_sym_string_literal_token1] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2481), + [sym__raw_string_literal_start] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), + }, + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_macro_rules_BANG] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(2487), + [anon_sym_i8] = ACTIONS(2487), + [anon_sym_u16] = ACTIONS(2487), + [anon_sym_i16] = ACTIONS(2487), + [anon_sym_u32] = ACTIONS(2487), + [anon_sym_i32] = ACTIONS(2487), + [anon_sym_u64] = ACTIONS(2487), + [anon_sym_i64] = ACTIONS(2487), + [anon_sym_u128] = ACTIONS(2487), + [anon_sym_i128] = ACTIONS(2487), + [anon_sym_isize] = ACTIONS(2487), + [anon_sym_usize] = ACTIONS(2487), + [anon_sym_f32] = ACTIONS(2487), + [anon_sym_f64] = ACTIONS(2487), + [anon_sym_bool] = ACTIONS(2487), + [anon_sym_str] = ACTIONS(2487), + [anon_sym_char] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_fn] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_gen] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_impl] = ACTIONS(2487), [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), + [anon_sym_loop] = ACTIONS(2487), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_mod] = ACTIONS(2487), + [anon_sym_pub] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_trait] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_unsafe] = ACTIONS(2487), + [anon_sym_use] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_move] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [sym_integer_literal] = ACTIONS(2485), + [aux_sym_string_literal_token1] = ACTIONS(2485), + [sym_char_literal] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2487), + [anon_sym_false] = ACTIONS(2487), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_crate] = ACTIONS(2487), + [sym_metavariable] = ACTIONS(2485), + [sym__raw_string_literal_start] = ACTIONS(2485), + [sym_float_literal] = ACTIONS(2485), + }, + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_macro_rules_BANG] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_u8] = ACTIONS(2491), + [anon_sym_i8] = ACTIONS(2491), + [anon_sym_u16] = ACTIONS(2491), + [anon_sym_i16] = ACTIONS(2491), + [anon_sym_u32] = ACTIONS(2491), + [anon_sym_i32] = ACTIONS(2491), + [anon_sym_u64] = ACTIONS(2491), + [anon_sym_i64] = ACTIONS(2491), + [anon_sym_u128] = ACTIONS(2491), + [anon_sym_i128] = ACTIONS(2491), + [anon_sym_isize] = ACTIONS(2491), + [anon_sym_usize] = ACTIONS(2491), + [anon_sym_f32] = ACTIONS(2491), + [anon_sym_f64] = ACTIONS(2491), + [anon_sym_bool] = ACTIONS(2491), + [anon_sym_str] = ACTIONS(2491), + [anon_sym_char] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_gen] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_impl] = ACTIONS(2491), + [anon_sym_let] = ACTIONS(2491), + [anon_sym_loop] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_mod] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_trait] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_use] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym_yield] = ACTIONS(2491), + [anon_sym_move] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [sym_integer_literal] = ACTIONS(2489), + [aux_sym_string_literal_token1] = ACTIONS(2489), + [sym_char_literal] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2489), + [sym__raw_string_literal_start] = ACTIONS(2489), + [sym_float_literal] = ACTIONS(2489), + }, + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_identifier] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_macro_rules_BANG] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1369), + [anon_sym_i8] = ACTIONS(1369), + [anon_sym_u16] = ACTIONS(1369), + [anon_sym_i16] = ACTIONS(1369), + [anon_sym_u32] = ACTIONS(1369), + [anon_sym_i32] = ACTIONS(1369), + [anon_sym_u64] = ACTIONS(1369), + [anon_sym_i64] = ACTIONS(1369), + [anon_sym_u128] = ACTIONS(1369), + [anon_sym_i128] = ACTIONS(1369), + [anon_sym_isize] = ACTIONS(1369), + [anon_sym_usize] = ACTIONS(1369), + [anon_sym_f32] = ACTIONS(1369), + [anon_sym_f64] = ACTIONS(1369), + [anon_sym_bool] = ACTIONS(1369), + [anon_sym_str] = ACTIONS(1369), + [anon_sym_char] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_gen] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_impl] = ACTIONS(1369), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_loop] = ACTIONS(1369), + [anon_sym_match] = ACTIONS(1369), + [anon_sym_mod] = ACTIONS(1369), + [anon_sym_pub] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_trait] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_unsafe] = ACTIONS(1369), + [anon_sym_use] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym_yield] = ACTIONS(1369), + [anon_sym_move] = ACTIONS(1369), + [anon_sym_try] = ACTIONS(1369), + [sym_integer_literal] = ACTIONS(1367), + [aux_sym_string_literal_token1] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1369), + [anon_sym_false] = ACTIONS(1369), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1369), + [sym_super] = ACTIONS(1369), + [sym_crate] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym__raw_string_literal_start] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), + }, + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_macro_rules_BANG] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_u8] = ACTIONS(2495), + [anon_sym_i8] = ACTIONS(2495), + [anon_sym_u16] = ACTIONS(2495), + [anon_sym_i16] = ACTIONS(2495), + [anon_sym_u32] = ACTIONS(2495), + [anon_sym_i32] = ACTIONS(2495), + [anon_sym_u64] = ACTIONS(2495), + [anon_sym_i64] = ACTIONS(2495), + [anon_sym_u128] = ACTIONS(2495), + [anon_sym_i128] = ACTIONS(2495), + [anon_sym_isize] = ACTIONS(2495), + [anon_sym_usize] = ACTIONS(2495), + [anon_sym_f32] = ACTIONS(2495), + [anon_sym_f64] = ACTIONS(2495), + [anon_sym_bool] = ACTIONS(2495), + [anon_sym_str] = ACTIONS(2495), + [anon_sym_char] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_DOT_DOT] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_fn] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_gen] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_impl] = ACTIONS(2495), + [anon_sym_let] = ACTIONS(2495), + [anon_sym_loop] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2495), + [anon_sym_mod] = ACTIONS(2495), + [anon_sym_pub] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_unsafe] = ACTIONS(2495), + [anon_sym_use] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2495), + [anon_sym_move] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [sym_integer_literal] = ACTIONS(2493), + [aux_sym_string_literal_token1] = ACTIONS(2493), + [sym_char_literal] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2495), + [anon_sym_false] = ACTIONS(2495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(2495), + [sym_crate] = ACTIONS(2495), + [sym_metavariable] = ACTIONS(2493), + [sym__raw_string_literal_start] = ACTIONS(2493), + [sym_float_literal] = ACTIONS(2493), + }, + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_macro_rules_BANG] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_u8] = ACTIONS(2499), + [anon_sym_i8] = ACTIONS(2499), + [anon_sym_u16] = ACTIONS(2499), + [anon_sym_i16] = ACTIONS(2499), + [anon_sym_u32] = ACTIONS(2499), + [anon_sym_i32] = ACTIONS(2499), + [anon_sym_u64] = ACTIONS(2499), + [anon_sym_i64] = ACTIONS(2499), + [anon_sym_u128] = ACTIONS(2499), + [anon_sym_i128] = ACTIONS(2499), + [anon_sym_isize] = ACTIONS(2499), + [anon_sym_usize] = ACTIONS(2499), + [anon_sym_f32] = ACTIONS(2499), + [anon_sym_f64] = ACTIONS(2499), + [anon_sym_bool] = ACTIONS(2499), + [anon_sym_str] = ACTIONS(2499), + [anon_sym_char] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_DOT_DOT] = ACTIONS(2497), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_async] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_gen] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_impl] = ACTIONS(2499), + [anon_sym_let] = ACTIONS(2499), + [anon_sym_loop] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_mod] = ACTIONS(2499), + [anon_sym_pub] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_trait] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_use] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_yield] = ACTIONS(2499), + [anon_sym_move] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [sym_integer_literal] = ACTIONS(2497), + [aux_sym_string_literal_token1] = ACTIONS(2497), + [sym_char_literal] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2499), + [sym_super] = ACTIONS(2499), + [sym_crate] = ACTIONS(2499), + [sym_metavariable] = ACTIONS(2497), + [sym__raw_string_literal_start] = ACTIONS(2497), + [sym_float_literal] = ACTIONS(2497), + }, + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_macro_rules_BANG] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_u8] = ACTIONS(2503), + [anon_sym_i8] = ACTIONS(2503), + [anon_sym_u16] = ACTIONS(2503), + [anon_sym_i16] = ACTIONS(2503), + [anon_sym_u32] = ACTIONS(2503), + [anon_sym_i32] = ACTIONS(2503), + [anon_sym_u64] = ACTIONS(2503), + [anon_sym_i64] = ACTIONS(2503), + [anon_sym_u128] = ACTIONS(2503), + [anon_sym_i128] = ACTIONS(2503), + [anon_sym_isize] = ACTIONS(2503), + [anon_sym_usize] = ACTIONS(2503), + [anon_sym_f32] = ACTIONS(2503), + [anon_sym_f64] = ACTIONS(2503), + [anon_sym_bool] = ACTIONS(2503), + [anon_sym_str] = ACTIONS(2503), + [anon_sym_char] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2501), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_fn] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_gen] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_impl] = ACTIONS(2503), + [anon_sym_let] = ACTIONS(2503), + [anon_sym_loop] = ACTIONS(2503), + [anon_sym_match] = ACTIONS(2503), + [anon_sym_mod] = ACTIONS(2503), + [anon_sym_pub] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_trait] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2503), [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2503), + [anon_sym_move] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [sym_integer_literal] = ACTIONS(2501), + [aux_sym_string_literal_token1] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2503), + [anon_sym_false] = ACTIONS(2503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2503), + [sym_super] = ACTIONS(2503), + [sym_crate] = ACTIONS(2503), + [sym_metavariable] = ACTIONS(2501), + [sym__raw_string_literal_start] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + }, + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_macro_rules_BANG] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_u8] = ACTIONS(2507), + [anon_sym_i8] = ACTIONS(2507), + [anon_sym_u16] = ACTIONS(2507), + [anon_sym_i16] = ACTIONS(2507), + [anon_sym_u32] = ACTIONS(2507), + [anon_sym_i32] = ACTIONS(2507), + [anon_sym_u64] = ACTIONS(2507), + [anon_sym_i64] = ACTIONS(2507), + [anon_sym_u128] = ACTIONS(2507), + [anon_sym_i128] = ACTIONS(2507), + [anon_sym_isize] = ACTIONS(2507), + [anon_sym_usize] = ACTIONS(2507), + [anon_sym_f32] = ACTIONS(2507), + [anon_sym_f64] = ACTIONS(2507), + [anon_sym_bool] = ACTIONS(2507), + [anon_sym_str] = ACTIONS(2507), + [anon_sym_char] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_default] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_gen] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_impl] = ACTIONS(2507), + [anon_sym_let] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_mod] = ACTIONS(2507), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_trait] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_use] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2507), + [anon_sym_move] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [sym_integer_literal] = ACTIONS(2505), + [aux_sym_string_literal_token1] = ACTIONS(2505), + [sym_char_literal] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2507), [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), + [sym_crate] = ACTIONS(2507), + [sym_metavariable] = ACTIONS(2505), + [sym__raw_string_literal_start] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_macro_rules_BANG] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_u8] = ACTIONS(2511), + [anon_sym_i8] = ACTIONS(2511), + [anon_sym_u16] = ACTIONS(2511), + [anon_sym_i16] = ACTIONS(2511), + [anon_sym_u32] = ACTIONS(2511), + [anon_sym_i32] = ACTIONS(2511), + [anon_sym_u64] = ACTIONS(2511), + [anon_sym_i64] = ACTIONS(2511), + [anon_sym_u128] = ACTIONS(2511), + [anon_sym_i128] = ACTIONS(2511), + [anon_sym_isize] = ACTIONS(2511), + [anon_sym_usize] = ACTIONS(2511), + [anon_sym_f32] = ACTIONS(2511), + [anon_sym_f64] = ACTIONS(2511), + [anon_sym_bool] = ACTIONS(2511), + [anon_sym_str] = ACTIONS(2511), + [anon_sym_char] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_async] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_gen] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_impl] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_mod] = ACTIONS(2511), + [anon_sym_pub] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_trait] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_unsafe] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_move] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [sym_integer_literal] = ACTIONS(2509), + [aux_sym_string_literal_token1] = ACTIONS(2509), + [sym_char_literal] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2511), + [sym_super] = ACTIONS(2511), + [sym_crate] = ACTIONS(2511), + [sym_metavariable] = ACTIONS(2509), + [sym__raw_string_literal_start] = ACTIONS(2509), + [sym_float_literal] = ACTIONS(2509), + }, + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), [ts_builtin_sym_end] = ACTIONS(2513), [sym_identifier] = ACTIONS(2515), [anon_sym_SEMI] = ACTIONS(2513), @@ -84537,9 +84580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2513), [sym_float_literal] = ACTIONS(2513), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), [ts_builtin_sym_end] = ACTIONS(2517), [sym_identifier] = ACTIONS(2519), [anon_sym_SEMI] = ACTIONS(2517), @@ -84618,90 +84661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2517), [sym_float_literal] = ACTIONS(2517), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), - }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [ts_builtin_sym_end] = ACTIONS(2521), [sym_identifier] = ACTIONS(2523), [anon_sym_SEMI] = ACTIONS(2521), @@ -84780,657 +84742,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2521), [sym_float_literal] = ACTIONS(2521), }, - [667] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_macro_rules_BANG] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_u8] = ACTIONS(2527), + [anon_sym_i8] = ACTIONS(2527), + [anon_sym_u16] = ACTIONS(2527), + [anon_sym_i16] = ACTIONS(2527), + [anon_sym_u32] = ACTIONS(2527), + [anon_sym_i32] = ACTIONS(2527), + [anon_sym_u64] = ACTIONS(2527), + [anon_sym_i64] = ACTIONS(2527), + [anon_sym_u128] = ACTIONS(2527), + [anon_sym_i128] = ACTIONS(2527), + [anon_sym_isize] = ACTIONS(2527), + [anon_sym_usize] = ACTIONS(2527), + [anon_sym_f32] = ACTIONS(2527), + [anon_sym_f64] = ACTIONS(2527), + [anon_sym_bool] = ACTIONS(2527), + [anon_sym_str] = ACTIONS(2527), + [anon_sym_char] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_DOT_DOT] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_async] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_fn] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_gen] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_impl] = ACTIONS(2527), + [anon_sym_let] = ACTIONS(2527), + [anon_sym_loop] = ACTIONS(2527), + [anon_sym_match] = ACTIONS(2527), + [anon_sym_mod] = ACTIONS(2527), + [anon_sym_pub] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_trait] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_unsafe] = ACTIONS(2527), + [anon_sym_use] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2527), + [anon_sym_move] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [sym_integer_literal] = ACTIONS(2525), + [aux_sym_string_literal_token1] = ACTIONS(2525), + [sym_char_literal] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2527), + [anon_sym_false] = ACTIONS(2527), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2527), + [sym_super] = ACTIONS(2527), + [sym_crate] = ACTIONS(2527), + [sym_metavariable] = ACTIONS(2525), + [sym__raw_string_literal_start] = ACTIONS(2525), + [sym_float_literal] = ACTIONS(2525), + }, + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_macro_rules_BANG] = ACTIONS(2529), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_u8] = ACTIONS(2531), + [anon_sym_i8] = ACTIONS(2531), + [anon_sym_u16] = ACTIONS(2531), + [anon_sym_i16] = ACTIONS(2531), + [anon_sym_u32] = ACTIONS(2531), + [anon_sym_i32] = ACTIONS(2531), + [anon_sym_u64] = ACTIONS(2531), + [anon_sym_i64] = ACTIONS(2531), + [anon_sym_u128] = ACTIONS(2531), + [anon_sym_i128] = ACTIONS(2531), + [anon_sym_isize] = ACTIONS(2531), + [anon_sym_usize] = ACTIONS(2531), + [anon_sym_f32] = ACTIONS(2531), + [anon_sym_f64] = ACTIONS(2531), + [anon_sym_bool] = ACTIONS(2531), + [anon_sym_str] = ACTIONS(2531), + [anon_sym_char] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_DOT_DOT] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_fn] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_gen] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_impl] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_mod] = ACTIONS(2531), + [anon_sym_pub] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_trait] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_unsafe] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_move] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [sym_integer_literal] = ACTIONS(2529), + [aux_sym_string_literal_token1] = ACTIONS(2529), + [sym_char_literal] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(2531), + [anon_sym_false] = ACTIONS(2531), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_crate] = ACTIONS(2531), + [sym_metavariable] = ACTIONS(2529), + [sym__raw_string_literal_start] = ACTIONS(2529), + [sym_float_literal] = ACTIONS(2529), + }, + [STATE(667)] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u128] = ACTIONS(2469), - [anon_sym_i128] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_str] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), - }, - [668] = { + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_macro_rules_BANG] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_u8] = ACTIONS(2535), + [anon_sym_i8] = ACTIONS(2535), + [anon_sym_u16] = ACTIONS(2535), + [anon_sym_i16] = ACTIONS(2535), + [anon_sym_u32] = ACTIONS(2535), + [anon_sym_i32] = ACTIONS(2535), + [anon_sym_u64] = ACTIONS(2535), + [anon_sym_i64] = ACTIONS(2535), + [anon_sym_u128] = ACTIONS(2535), + [anon_sym_i128] = ACTIONS(2535), + [anon_sym_isize] = ACTIONS(2535), + [anon_sym_usize] = ACTIONS(2535), + [anon_sym_f32] = ACTIONS(2535), + [anon_sym_f64] = ACTIONS(2535), + [anon_sym_bool] = ACTIONS(2535), + [anon_sym_str] = ACTIONS(2535), + [anon_sym_char] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_DOT_DOT] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_async] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_fn] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_gen] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_impl] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_mod] = ACTIONS(2535), + [anon_sym_pub] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_trait] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_unsafe] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_yield] = ACTIONS(2535), + [anon_sym_move] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [sym_integer_literal] = ACTIONS(2533), + [aux_sym_string_literal_token1] = ACTIONS(2533), + [sym_char_literal] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2535), + [sym_super] = ACTIONS(2535), + [sym_crate] = ACTIONS(2535), + [sym_metavariable] = ACTIONS(2533), + [sym__raw_string_literal_start] = ACTIONS(2533), + [sym_float_literal] = ACTIONS(2533), + }, + [STATE(668)] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2529), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_macro_rules_BANG] = ACTIONS(2527), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_u8] = ACTIONS(2529), - [anon_sym_i8] = ACTIONS(2529), - [anon_sym_u16] = ACTIONS(2529), - [anon_sym_i16] = ACTIONS(2529), - [anon_sym_u32] = ACTIONS(2529), - [anon_sym_i32] = ACTIONS(2529), - [anon_sym_u64] = ACTIONS(2529), - [anon_sym_i64] = ACTIONS(2529), - [anon_sym_u128] = ACTIONS(2529), - [anon_sym_i128] = ACTIONS(2529), - [anon_sym_isize] = ACTIONS(2529), - [anon_sym_usize] = ACTIONS(2529), - [anon_sym_f32] = ACTIONS(2529), - [anon_sym_f64] = ACTIONS(2529), - [anon_sym_bool] = ACTIONS(2529), - [anon_sym_str] = ACTIONS(2529), - [anon_sym_char] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2527), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_POUND] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_fn] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_gen] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_impl] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_mod] = ACTIONS(2529), - [anon_sym_pub] = ACTIONS(2529), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_struct] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_union] = ACTIONS(2529), - [anon_sym_unsafe] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_move] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [sym_integer_literal] = ACTIONS(2527), - [aux_sym_string_literal_token1] = ACTIONS(2527), - [sym_char_literal] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2529), - [sym_super] = ACTIONS(2529), - [sym_crate] = ACTIONS(2529), - [sym_metavariable] = ACTIONS(2527), - [sym__raw_string_literal_start] = ACTIONS(2527), - [sym_float_literal] = ACTIONS(2527), - }, - [669] = { + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_macro_rules_BANG] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_u8] = ACTIONS(2539), + [anon_sym_i8] = ACTIONS(2539), + [anon_sym_u16] = ACTIONS(2539), + [anon_sym_i16] = ACTIONS(2539), + [anon_sym_u32] = ACTIONS(2539), + [anon_sym_i32] = ACTIONS(2539), + [anon_sym_u64] = ACTIONS(2539), + [anon_sym_i64] = ACTIONS(2539), + [anon_sym_u128] = ACTIONS(2539), + [anon_sym_i128] = ACTIONS(2539), + [anon_sym_isize] = ACTIONS(2539), + [anon_sym_usize] = ACTIONS(2539), + [anon_sym_f32] = ACTIONS(2539), + [anon_sym_f64] = ACTIONS(2539), + [anon_sym_bool] = ACTIONS(2539), + [anon_sym_str] = ACTIONS(2539), + [anon_sym_char] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_DOT_DOT] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_async] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_fn] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_gen] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_impl] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_mod] = ACTIONS(2539), + [anon_sym_pub] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_trait] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_unsafe] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2539), + [anon_sym_move] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [sym_integer_literal] = ACTIONS(2537), + [aux_sym_string_literal_token1] = ACTIONS(2537), + [sym_char_literal] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2539), + [anon_sym_false] = ACTIONS(2539), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2539), + [sym_super] = ACTIONS(2539), + [sym_crate] = ACTIONS(2539), + [sym_metavariable] = ACTIONS(2537), + [sym__raw_string_literal_start] = ACTIONS(2537), + [sym_float_literal] = ACTIONS(2537), + }, + [STATE(669)] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_macro_rules_BANG] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_u8] = ACTIONS(2533), - [anon_sym_i8] = ACTIONS(2533), - [anon_sym_u16] = ACTIONS(2533), - [anon_sym_i16] = ACTIONS(2533), - [anon_sym_u32] = ACTIONS(2533), - [anon_sym_i32] = ACTIONS(2533), - [anon_sym_u64] = ACTIONS(2533), - [anon_sym_i64] = ACTIONS(2533), - [anon_sym_u128] = ACTIONS(2533), - [anon_sym_i128] = ACTIONS(2533), - [anon_sym_isize] = ACTIONS(2533), - [anon_sym_usize] = ACTIONS(2533), - [anon_sym_f32] = ACTIONS(2533), - [anon_sym_f64] = ACTIONS(2533), - [anon_sym_bool] = ACTIONS(2533), - [anon_sym_str] = ACTIONS(2533), - [anon_sym_char] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_LT] = ACTIONS(2531), - [anon_sym_DOT_DOT] = ACTIONS(2531), - [anon_sym_COLON_COLON] = ACTIONS(2531), - [anon_sym_POUND] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_default] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_fn] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_gen] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_impl] = ACTIONS(2533), - [anon_sym_let] = ACTIONS(2533), - [anon_sym_loop] = ACTIONS(2533), - [anon_sym_match] = ACTIONS(2533), - [anon_sym_mod] = ACTIONS(2533), - [anon_sym_pub] = ACTIONS(2533), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_struct] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_union] = ACTIONS(2533), - [anon_sym_unsafe] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_extern] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_move] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [sym_integer_literal] = ACTIONS(2531), - [aux_sym_string_literal_token1] = ACTIONS(2531), - [sym_char_literal] = ACTIONS(2531), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2533), - [sym_super] = ACTIONS(2533), - [sym_crate] = ACTIONS(2533), - [sym_metavariable] = ACTIONS(2531), - [sym__raw_string_literal_start] = ACTIONS(2531), - [sym_float_literal] = ACTIONS(2531), - }, - [670] = { + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_macro_rules_BANG] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_u8] = ACTIONS(2543), + [anon_sym_i8] = ACTIONS(2543), + [anon_sym_u16] = ACTIONS(2543), + [anon_sym_i16] = ACTIONS(2543), + [anon_sym_u32] = ACTIONS(2543), + [anon_sym_i32] = ACTIONS(2543), + [anon_sym_u64] = ACTIONS(2543), + [anon_sym_i64] = ACTIONS(2543), + [anon_sym_u128] = ACTIONS(2543), + [anon_sym_i128] = ACTIONS(2543), + [anon_sym_isize] = ACTIONS(2543), + [anon_sym_usize] = ACTIONS(2543), + [anon_sym_f32] = ACTIONS(2543), + [anon_sym_f64] = ACTIONS(2543), + [anon_sym_bool] = ACTIONS(2543), + [anon_sym_str] = ACTIONS(2543), + [anon_sym_char] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_DOT_DOT] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_gen] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2543), + [anon_sym_move] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2541), + [aux_sym_string_literal_token1] = ACTIONS(2541), + [sym_char_literal] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2543), + [anon_sym_false] = ACTIONS(2543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_metavariable] = ACTIONS(2541), + [sym__raw_string_literal_start] = ACTIONS(2541), + [sym_float_literal] = ACTIONS(2541), + }, + [STATE(670)] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_macro_rules_BANG] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2535), - [anon_sym_u8] = ACTIONS(2537), - [anon_sym_i8] = ACTIONS(2537), - [anon_sym_u16] = ACTIONS(2537), - [anon_sym_i16] = ACTIONS(2537), - [anon_sym_u32] = ACTIONS(2537), - [anon_sym_i32] = ACTIONS(2537), - [anon_sym_u64] = ACTIONS(2537), - [anon_sym_i64] = ACTIONS(2537), - [anon_sym_u128] = ACTIONS(2537), - [anon_sym_i128] = ACTIONS(2537), - [anon_sym_isize] = ACTIONS(2537), - [anon_sym_usize] = ACTIONS(2537), - [anon_sym_f32] = ACTIONS(2537), - [anon_sym_f64] = ACTIONS(2537), - [anon_sym_bool] = ACTIONS(2537), - [anon_sym_str] = ACTIONS(2537), - [anon_sym_char] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2535), - [anon_sym_PIPE] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_DOT_DOT] = ACTIONS(2535), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_POUND] = ACTIONS(2535), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_default] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_fn] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_gen] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_impl] = ACTIONS(2537), - [anon_sym_let] = ACTIONS(2537), - [anon_sym_loop] = ACTIONS(2537), - [anon_sym_match] = ACTIONS(2537), - [anon_sym_mod] = ACTIONS(2537), - [anon_sym_pub] = ACTIONS(2537), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_struct] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_union] = ACTIONS(2537), - [anon_sym_unsafe] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_extern] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_move] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [sym_integer_literal] = ACTIONS(2535), - [aux_sym_string_literal_token1] = ACTIONS(2535), - [sym_char_literal] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2537), - [sym_super] = ACTIONS(2537), - [sym_crate] = ACTIONS(2537), - [sym_metavariable] = ACTIONS(2535), - [sym__raw_string_literal_start] = ACTIONS(2535), - [sym_float_literal] = ACTIONS(2535), - }, - [671] = { + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_macro_rules_BANG] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_u8] = ACTIONS(2547), + [anon_sym_i8] = ACTIONS(2547), + [anon_sym_u16] = ACTIONS(2547), + [anon_sym_i16] = ACTIONS(2547), + [anon_sym_u32] = ACTIONS(2547), + [anon_sym_i32] = ACTIONS(2547), + [anon_sym_u64] = ACTIONS(2547), + [anon_sym_i64] = ACTIONS(2547), + [anon_sym_u128] = ACTIONS(2547), + [anon_sym_i128] = ACTIONS(2547), + [anon_sym_isize] = ACTIONS(2547), + [anon_sym_usize] = ACTIONS(2547), + [anon_sym_f32] = ACTIONS(2547), + [anon_sym_f64] = ACTIONS(2547), + [anon_sym_bool] = ACTIONS(2547), + [anon_sym_str] = ACTIONS(2547), + [anon_sym_char] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2545), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_async] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_gen] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_impl] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_mod] = ACTIONS(2547), + [anon_sym_pub] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_trait] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_yield] = ACTIONS(2547), + [anon_sym_move] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2547), + [sym_super] = ACTIONS(2547), + [sym_crate] = ACTIONS(2547), + [sym_metavariable] = ACTIONS(2545), + [sym__raw_string_literal_start] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), + }, + [STATE(671)] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2539), - [sym_identifier] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_macro_rules_BANG] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_u8] = ACTIONS(2541), - [anon_sym_i8] = ACTIONS(2541), - [anon_sym_u16] = ACTIONS(2541), - [anon_sym_i16] = ACTIONS(2541), - [anon_sym_u32] = ACTIONS(2541), - [anon_sym_i32] = ACTIONS(2541), - [anon_sym_u64] = ACTIONS(2541), - [anon_sym_i64] = ACTIONS(2541), - [anon_sym_u128] = ACTIONS(2541), - [anon_sym_i128] = ACTIONS(2541), - [anon_sym_isize] = ACTIONS(2541), - [anon_sym_usize] = ACTIONS(2541), - [anon_sym_f32] = ACTIONS(2541), - [anon_sym_f64] = ACTIONS(2541), - [anon_sym_bool] = ACTIONS(2541), - [anon_sym_str] = ACTIONS(2541), - [anon_sym_char] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_AMP] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2539), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_DOT_DOT] = ACTIONS(2539), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_POUND] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_fn] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_gen] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_impl] = ACTIONS(2541), - [anon_sym_let] = ACTIONS(2541), - [anon_sym_loop] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_mod] = ACTIONS(2541), - [anon_sym_pub] = ACTIONS(2541), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_struct] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_union] = ACTIONS(2541), - [anon_sym_unsafe] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_extern] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_move] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [sym_integer_literal] = ACTIONS(2539), - [aux_sym_string_literal_token1] = ACTIONS(2539), - [sym_char_literal] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2541), - [sym_super] = ACTIONS(2541), - [sym_crate] = ACTIONS(2541), - [sym_metavariable] = ACTIONS(2539), - [sym__raw_string_literal_start] = ACTIONS(2539), - [sym_float_literal] = ACTIONS(2539), - }, - [672] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_macro_rules_BANG] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_DOT_DOT] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_gen] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_impl] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_mod] = ACTIONS(2551), + [anon_sym_pub] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_trait] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_unsafe] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_move] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2549), + [aux_sym_string_literal_token1] = ACTIONS(2549), + [sym_char_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2551), + [sym_super] = ACTIONS(2551), + [sym_crate] = ACTIONS(2551), + [sym_metavariable] = ACTIONS(2549), + [sym__raw_string_literal_start] = ACTIONS(2549), + [sym_float_literal] = ACTIONS(2549), + }, + [STATE(672)] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2545), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_macro_rules_BANG] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2543), - [anon_sym_u8] = ACTIONS(2545), - [anon_sym_i8] = ACTIONS(2545), - [anon_sym_u16] = ACTIONS(2545), - [anon_sym_i16] = ACTIONS(2545), - [anon_sym_u32] = ACTIONS(2545), - [anon_sym_i32] = ACTIONS(2545), - [anon_sym_u64] = ACTIONS(2545), - [anon_sym_i64] = ACTIONS(2545), - [anon_sym_u128] = ACTIONS(2545), - [anon_sym_i128] = ACTIONS(2545), - [anon_sym_isize] = ACTIONS(2545), - [anon_sym_usize] = ACTIONS(2545), - [anon_sym_f32] = ACTIONS(2545), - [anon_sym_f64] = ACTIONS(2545), - [anon_sym_bool] = ACTIONS(2545), - [anon_sym_str] = ACTIONS(2545), - [anon_sym_char] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2543), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2543), - [anon_sym_POUND] = ACTIONS(2543), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_fn] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_gen] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_impl] = ACTIONS(2545), - [anon_sym_let] = ACTIONS(2545), - [anon_sym_loop] = ACTIONS(2545), - [anon_sym_match] = ACTIONS(2545), - [anon_sym_mod] = ACTIONS(2545), - [anon_sym_pub] = ACTIONS(2545), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_union] = ACTIONS(2545), - [anon_sym_unsafe] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_extern] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_move] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2543), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2545), - [sym_super] = ACTIONS(2545), - [sym_crate] = ACTIONS(2545), - [sym_metavariable] = ACTIONS(2543), - [sym__raw_string_literal_start] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), - }, - [673] = { + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_macro_rules_BANG] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_u8] = ACTIONS(1383), + [anon_sym_i8] = ACTIONS(1383), + [anon_sym_u16] = ACTIONS(1383), + [anon_sym_i16] = ACTIONS(1383), + [anon_sym_u32] = ACTIONS(1383), + [anon_sym_i32] = ACTIONS(1383), + [anon_sym_u64] = ACTIONS(1383), + [anon_sym_i64] = ACTIONS(1383), + [anon_sym_u128] = ACTIONS(1383), + [anon_sym_i128] = ACTIONS(1383), + [anon_sym_isize] = ACTIONS(1383), + [anon_sym_usize] = ACTIONS(1383), + [anon_sym_f32] = ACTIONS(1383), + [anon_sym_f64] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_str] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_gen] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_impl] = ACTIONS(1383), + [anon_sym_let] = ACTIONS(1383), + [anon_sym_loop] = ACTIONS(1383), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_mod] = ACTIONS(1383), + [anon_sym_pub] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_trait] = ACTIONS(1383), + [anon_sym_type] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_unsafe] = ACTIONS(1383), + [anon_sym_use] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1383), + [anon_sym_move] = ACTIONS(1383), + [anon_sym_try] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1381), + [aux_sym_string_literal_token1] = ACTIONS(1381), + [sym_char_literal] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_crate] = ACTIONS(1383), + [sym_metavariable] = ACTIONS(1381), + [sym__raw_string_literal_start] = ACTIONS(1381), + [sym_float_literal] = ACTIONS(1381), + }, + [STATE(673)] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2549), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_macro_rules_BANG] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_default] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_fn] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_gen] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_impl] = ACTIONS(2549), - [anon_sym_let] = ACTIONS(2549), - [anon_sym_loop] = ACTIONS(2549), - [anon_sym_match] = ACTIONS(2549), - [anon_sym_mod] = ACTIONS(2549), - [anon_sym_pub] = ACTIONS(2549), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2549), - [anon_sym_unsafe] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_extern] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_move] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [sym_integer_literal] = ACTIONS(2547), - [aux_sym_string_literal_token1] = ACTIONS(2547), - [sym_char_literal] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2549), - [sym_super] = ACTIONS(2549), - [sym_crate] = ACTIONS(2549), - [sym_metavariable] = ACTIONS(2547), - [sym__raw_string_literal_start] = ACTIONS(2547), - [sym_float_literal] = ACTIONS(2547), - }, - [674] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [aux_sym_declaration_list_repeat1] = STATE(700), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u128] = ACTIONS(2469), - [anon_sym_i128] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_str] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), - }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2553), [sym_identifier] = ACTIONS(2555), [anon_sym_SEMI] = ACTIONS(2553), @@ -85509,9 +85471,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2553), [sym_float_literal] = ACTIONS(2553), }, - [676] = { + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_macro_rules_BANG] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_u8] = ACTIONS(1365), + [anon_sym_i8] = ACTIONS(1365), + [anon_sym_u16] = ACTIONS(1365), + [anon_sym_i16] = ACTIONS(1365), + [anon_sym_u32] = ACTIONS(1365), + [anon_sym_i32] = ACTIONS(1365), + [anon_sym_u64] = ACTIONS(1365), + [anon_sym_i64] = ACTIONS(1365), + [anon_sym_u128] = ACTIONS(1365), + [anon_sym_i128] = ACTIONS(1365), + [anon_sym_isize] = ACTIONS(1365), + [anon_sym_usize] = ACTIONS(1365), + [anon_sym_f32] = ACTIONS(1365), + [anon_sym_f64] = ACTIONS(1365), + [anon_sym_bool] = ACTIONS(1365), + [anon_sym_str] = ACTIONS(1365), + [anon_sym_char] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_COLON_COLON] = ACTIONS(1363), + [anon_sym_POUND] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_gen] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_impl] = ACTIONS(1365), + [anon_sym_let] = ACTIONS(1365), + [anon_sym_loop] = ACTIONS(1365), + [anon_sym_match] = ACTIONS(1365), + [anon_sym_mod] = ACTIONS(1365), + [anon_sym_pub] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_trait] = ACTIONS(1365), + [anon_sym_type] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_unsafe] = ACTIONS(1365), + [anon_sym_use] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym_yield] = ACTIONS(1365), + [anon_sym_move] = ACTIONS(1365), + [anon_sym_try] = ACTIONS(1365), + [sym_integer_literal] = ACTIONS(1363), + [aux_sym_string_literal_token1] = ACTIONS(1363), + [sym_char_literal] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1365), + [anon_sym_false] = ACTIONS(1365), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_crate] = ACTIONS(1365), + [sym_metavariable] = ACTIONS(1363), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1363), + }, + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_macro_rules_BANG] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_u8] = ACTIONS(1387), + [anon_sym_i8] = ACTIONS(1387), + [anon_sym_u16] = ACTIONS(1387), + [anon_sym_i16] = ACTIONS(1387), + [anon_sym_u32] = ACTIONS(1387), + [anon_sym_i32] = ACTIONS(1387), + [anon_sym_u64] = ACTIONS(1387), + [anon_sym_i64] = ACTIONS(1387), + [anon_sym_u128] = ACTIONS(1387), + [anon_sym_i128] = ACTIONS(1387), + [anon_sym_isize] = ACTIONS(1387), + [anon_sym_usize] = ACTIONS(1387), + [anon_sym_f32] = ACTIONS(1387), + [anon_sym_f64] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_str] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_COLON_COLON] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_gen] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_impl] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_pub] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_trait] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_move] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1385), + [aux_sym_string_literal_token1] = ACTIONS(1385), + [sym_char_literal] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_crate] = ACTIONS(1387), + [sym_metavariable] = ACTIONS(1385), + [sym__raw_string_literal_start] = ACTIONS(1385), + [sym_float_literal] = ACTIONS(1385), + }, + [STATE(676)] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(1355), + [sym_identifier] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_macro_rules_BANG] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_u8] = ACTIONS(1357), + [anon_sym_i8] = ACTIONS(1357), + [anon_sym_u16] = ACTIONS(1357), + [anon_sym_i16] = ACTIONS(1357), + [anon_sym_u32] = ACTIONS(1357), + [anon_sym_i32] = ACTIONS(1357), + [anon_sym_u64] = ACTIONS(1357), + [anon_sym_i64] = ACTIONS(1357), + [anon_sym_u128] = ACTIONS(1357), + [anon_sym_i128] = ACTIONS(1357), + [anon_sym_isize] = ACTIONS(1357), + [anon_sym_usize] = ACTIONS(1357), + [anon_sym_f32] = ACTIONS(1357), + [anon_sym_f64] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_str] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(1355), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1355), + [anon_sym_COLON_COLON] = ACTIONS(1355), + [anon_sym_POUND] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_async] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_gen] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_impl] = ACTIONS(1357), + [anon_sym_let] = ACTIONS(1357), + [anon_sym_loop] = ACTIONS(1357), + [anon_sym_match] = ACTIONS(1357), + [anon_sym_mod] = ACTIONS(1357), + [anon_sym_pub] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_trait] = ACTIONS(1357), + [anon_sym_type] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_unsafe] = ACTIONS(1357), + [anon_sym_use] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_yield] = ACTIONS(1357), + [anon_sym_move] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1355), + [aux_sym_string_literal_token1] = ACTIONS(1355), + [sym_char_literal] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1357), + [sym_crate] = ACTIONS(1357), + [sym_metavariable] = ACTIONS(1355), + [sym__raw_string_literal_start] = ACTIONS(1355), + [sym_float_literal] = ACTIONS(1355), + }, + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2557), [sym_identifier] = ACTIONS(2559), [anon_sym_SEMI] = ACTIONS(2557), @@ -85590,9 +85795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2557), [sym_float_literal] = ACTIONS(2557), }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2561), [sym_identifier] = ACTIONS(2563), [anon_sym_SEMI] = ACTIONS(2561), @@ -85671,9 +85876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2561), [sym_float_literal] = ACTIONS(2561), }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2565), [sym_identifier] = ACTIONS(2567), [anon_sym_SEMI] = ACTIONS(2565), @@ -85752,9 +85957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2565), [sym_float_literal] = ACTIONS(2565), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2569), [sym_identifier] = ACTIONS(2571), [anon_sym_SEMI] = ACTIONS(2569), @@ -85833,9 +86038,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2569), [sym_float_literal] = ACTIONS(2569), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2573), [sym_identifier] = ACTIONS(2575), [anon_sym_SEMI] = ACTIONS(2573), @@ -85914,9 +86119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2573), [sym_float_literal] = ACTIONS(2573), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2577), [sym_identifier] = ACTIONS(2579), [anon_sym_SEMI] = ACTIONS(2577), @@ -85995,495 +86200,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2577), [sym_float_literal] = ACTIONS(2577), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_macro_rules_BANG] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_u8] = ACTIONS(2583), - [anon_sym_i8] = ACTIONS(2583), - [anon_sym_u16] = ACTIONS(2583), - [anon_sym_i16] = ACTIONS(2583), - [anon_sym_u32] = ACTIONS(2583), - [anon_sym_i32] = ACTIONS(2583), - [anon_sym_u64] = ACTIONS(2583), - [anon_sym_i64] = ACTIONS(2583), - [anon_sym_u128] = ACTIONS(2583), - [anon_sym_i128] = ACTIONS(2583), - [anon_sym_isize] = ACTIONS(2583), - [anon_sym_usize] = ACTIONS(2583), - [anon_sym_f32] = ACTIONS(2583), - [anon_sym_f64] = ACTIONS(2583), - [anon_sym_bool] = ACTIONS(2583), - [anon_sym_str] = ACTIONS(2583), - [anon_sym_char] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_async] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_fn] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_gen] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_impl] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_loop] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_mod] = ACTIONS(2583), - [anon_sym_pub] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_trait] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_unsafe] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_move] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [sym_integer_literal] = ACTIONS(2581), - [aux_sym_string_literal_token1] = ACTIONS(2581), - [sym_char_literal] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2583), - [anon_sym_false] = ACTIONS(2583), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2583), - [sym_super] = ACTIONS(2583), - [sym_crate] = ACTIONS(2583), - [sym_metavariable] = ACTIONS(2581), - [sym__raw_string_literal_start] = ACTIONS(2581), - [sym_float_literal] = ACTIONS(2581), - }, - [683] = { + [STATE(683)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(3002), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2566), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_macro_rules_BANG] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_u8] = ACTIONS(2587), - [anon_sym_i8] = ACTIONS(2587), - [anon_sym_u16] = ACTIONS(2587), - [anon_sym_i16] = ACTIONS(2587), - [anon_sym_u32] = ACTIONS(2587), - [anon_sym_i32] = ACTIONS(2587), - [anon_sym_u64] = ACTIONS(2587), - [anon_sym_i64] = ACTIONS(2587), - [anon_sym_u128] = ACTIONS(2587), - [anon_sym_i128] = ACTIONS(2587), - [anon_sym_isize] = ACTIONS(2587), - [anon_sym_usize] = ACTIONS(2587), - [anon_sym_f32] = ACTIONS(2587), - [anon_sym_f64] = ACTIONS(2587), - [anon_sym_bool] = ACTIONS(2587), - [anon_sym_str] = ACTIONS(2587), - [anon_sym_char] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_DOT_DOT] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_fn] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_gen] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_impl] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_loop] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_mod] = ACTIONS(2587), - [anon_sym_pub] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_trait] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_unsafe] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_move] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [sym_integer_literal] = ACTIONS(2585), - [aux_sym_string_literal_token1] = ACTIONS(2585), - [sym_char_literal] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2587), - [anon_sym_false] = ACTIONS(2587), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2587), - [sym_super] = ACTIONS(2587), - [sym_crate] = ACTIONS(2587), - [sym_metavariable] = ACTIONS(2585), - [sym__raw_string_literal_start] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2585), - }, - [684] = { + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(684)] = { + [sym_empty_statement] = STATE(1314), + [sym_macro_definition] = STATE(1314), + [sym_attribute_item] = STATE(1314), + [sym_inner_attribute_item] = STATE(1314), + [sym_mod_item] = STATE(1314), + [sym_foreign_mod_item] = STATE(1314), + [sym_struct_item] = STATE(1314), + [sym_union_item] = STATE(1314), + [sym_enum_item] = STATE(1314), + [sym_extern_crate_declaration] = STATE(1314), + [sym_const_item] = STATE(1314), + [sym_static_item] = STATE(1314), + [sym_type_item] = STATE(1314), + [sym_function_item] = STATE(1314), + [sym_function_signature_item] = STATE(1314), + [sym_function_modifiers] = STATE(3640), + [sym_impl_item] = STATE(1314), + [sym_trait_item] = STATE(1314), + [sym_associated_type] = STATE(1314), + [sym_let_declaration] = STATE(1314), + [sym_use_declaration] = STATE(1314), + [sym_extern_modifier] = STATE(2199), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3370), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_macro_invocation] = STATE(1314), + [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_macro_rules_BANG] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_u8] = ACTIONS(2591), - [anon_sym_i8] = ACTIONS(2591), - [anon_sym_u16] = ACTIONS(2591), - [anon_sym_i16] = ACTIONS(2591), - [anon_sym_u32] = ACTIONS(2591), - [anon_sym_i32] = ACTIONS(2591), - [anon_sym_u64] = ACTIONS(2591), - [anon_sym_i64] = ACTIONS(2591), - [anon_sym_u128] = ACTIONS(2591), - [anon_sym_i128] = ACTIONS(2591), - [anon_sym_isize] = ACTIONS(2591), - [anon_sym_usize] = ACTIONS(2591), - [anon_sym_f32] = ACTIONS(2591), - [anon_sym_f64] = ACTIONS(2591), - [anon_sym_bool] = ACTIONS(2591), - [anon_sym_str] = ACTIONS(2591), - [anon_sym_char] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_DOT_DOT] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2591), - [anon_sym_async] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_fn] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_gen] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_impl] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_loop] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_mod] = ACTIONS(2591), - [anon_sym_pub] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_trait] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_unsafe] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_move] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2589), - [aux_sym_string_literal_token1] = ACTIONS(2589), - [sym_char_literal] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2591), - [anon_sym_false] = ACTIONS(2591), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2591), - [sym_super] = ACTIONS(2591), - [sym_crate] = ACTIONS(2591), - [sym_metavariable] = ACTIONS(2589), - [sym__raw_string_literal_start] = ACTIONS(2589), - [sym_float_literal] = ACTIONS(2589), - }, - [685] = { + [aux_sym_declaration_list_repeat1] = STATE(689), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_gen] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2283), + }, + [STATE(685)] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_macro_rules_BANG] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_u8] = ACTIONS(2595), - [anon_sym_i8] = ACTIONS(2595), - [anon_sym_u16] = ACTIONS(2595), - [anon_sym_i16] = ACTIONS(2595), - [anon_sym_u32] = ACTIONS(2595), - [anon_sym_i32] = ACTIONS(2595), - [anon_sym_u64] = ACTIONS(2595), - [anon_sym_i64] = ACTIONS(2595), - [anon_sym_u128] = ACTIONS(2595), - [anon_sym_i128] = ACTIONS(2595), - [anon_sym_isize] = ACTIONS(2595), - [anon_sym_usize] = ACTIONS(2595), - [anon_sym_f32] = ACTIONS(2595), - [anon_sym_f64] = ACTIONS(2595), - [anon_sym_bool] = ACTIONS(2595), - [anon_sym_str] = ACTIONS(2595), - [anon_sym_char] = ACTIONS(2595), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2593), - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_DOT_DOT] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2595), - [anon_sym_async] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_fn] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_gen] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_impl] = ACTIONS(2595), - [anon_sym_let] = ACTIONS(2595), - [anon_sym_loop] = ACTIONS(2595), - [anon_sym_match] = ACTIONS(2595), - [anon_sym_mod] = ACTIONS(2595), - [anon_sym_pub] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_trait] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_unsafe] = ACTIONS(2595), - [anon_sym_use] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym_yield] = ACTIONS(2595), - [anon_sym_move] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2593), - [aux_sym_string_literal_token1] = ACTIONS(2593), - [sym_char_literal] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2595), - [sym_super] = ACTIONS(2595), - [sym_crate] = ACTIONS(2595), - [sym_metavariable] = ACTIONS(2593), - [sym__raw_string_literal_start] = ACTIONS(2593), - [sym_float_literal] = ACTIONS(2593), - }, - [686] = { + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_macro_rules_BANG] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_u8] = ACTIONS(2589), + [anon_sym_i8] = ACTIONS(2589), + [anon_sym_u16] = ACTIONS(2589), + [anon_sym_i16] = ACTIONS(2589), + [anon_sym_u32] = ACTIONS(2589), + [anon_sym_i32] = ACTIONS(2589), + [anon_sym_u64] = ACTIONS(2589), + [anon_sym_i64] = ACTIONS(2589), + [anon_sym_u128] = ACTIONS(2589), + [anon_sym_i128] = ACTIONS(2589), + [anon_sym_isize] = ACTIONS(2589), + [anon_sym_usize] = ACTIONS(2589), + [anon_sym_f32] = ACTIONS(2589), + [anon_sym_f64] = ACTIONS(2589), + [anon_sym_bool] = ACTIONS(2589), + [anon_sym_str] = ACTIONS(2589), + [anon_sym_char] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_PIPE] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2587), + [anon_sym_DOT_DOT] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_POUND] = ACTIONS(2587), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_async] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_gen] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_impl] = ACTIONS(2589), + [anon_sym_let] = ACTIONS(2589), + [anon_sym_loop] = ACTIONS(2589), + [anon_sym_match] = ACTIONS(2589), + [anon_sym_mod] = ACTIONS(2589), + [anon_sym_pub] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_trait] = ACTIONS(2589), + [anon_sym_type] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_unsafe] = ACTIONS(2589), + [anon_sym_use] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_yield] = ACTIONS(2589), + [anon_sym_move] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [sym_integer_literal] = ACTIONS(2587), + [aux_sym_string_literal_token1] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2589), + [sym_super] = ACTIONS(2589), + [sym_crate] = ACTIONS(2589), + [sym_metavariable] = ACTIONS(2587), + [sym__raw_string_literal_start] = ACTIONS(2587), + [sym_float_literal] = ACTIONS(2587), + }, + [STATE(686)] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2597), - [sym_identifier] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_macro_rules_BANG] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_u8] = ACTIONS(2599), - [anon_sym_i8] = ACTIONS(2599), - [anon_sym_u16] = ACTIONS(2599), - [anon_sym_i16] = ACTIONS(2599), - [anon_sym_u32] = ACTIONS(2599), - [anon_sym_i32] = ACTIONS(2599), - [anon_sym_u64] = ACTIONS(2599), - [anon_sym_i64] = ACTIONS(2599), - [anon_sym_u128] = ACTIONS(2599), - [anon_sym_i128] = ACTIONS(2599), - [anon_sym_isize] = ACTIONS(2599), - [anon_sym_usize] = ACTIONS(2599), - [anon_sym_f32] = ACTIONS(2599), - [anon_sym_f64] = ACTIONS(2599), - [anon_sym_bool] = ACTIONS(2599), - [anon_sym_str] = ACTIONS(2599), - [anon_sym_char] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_DOT_DOT] = ACTIONS(2597), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_async] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_fn] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_gen] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_impl] = ACTIONS(2599), - [anon_sym_let] = ACTIONS(2599), - [anon_sym_loop] = ACTIONS(2599), - [anon_sym_match] = ACTIONS(2599), - [anon_sym_mod] = ACTIONS(2599), - [anon_sym_pub] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_trait] = ACTIONS(2599), - [anon_sym_type] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_unsafe] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2599), - [anon_sym_move] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [sym_integer_literal] = ACTIONS(2597), - [aux_sym_string_literal_token1] = ACTIONS(2597), - [sym_char_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2599), - [anon_sym_false] = ACTIONS(2599), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2599), - [sym_super] = ACTIONS(2599), - [sym_crate] = ACTIONS(2599), - [sym_metavariable] = ACTIONS(2597), - [sym__raw_string_literal_start] = ACTIONS(2597), - [sym_float_literal] = ACTIONS(2597), - }, - [687] = { + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_macro_rules_BANG] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_u8] = ACTIONS(2593), + [anon_sym_i8] = ACTIONS(2593), + [anon_sym_u16] = ACTIONS(2593), + [anon_sym_i16] = ACTIONS(2593), + [anon_sym_u32] = ACTIONS(2593), + [anon_sym_i32] = ACTIONS(2593), + [anon_sym_u64] = ACTIONS(2593), + [anon_sym_i64] = ACTIONS(2593), + [anon_sym_u128] = ACTIONS(2593), + [anon_sym_i128] = ACTIONS(2593), + [anon_sym_isize] = ACTIONS(2593), + [anon_sym_usize] = ACTIONS(2593), + [anon_sym_f32] = ACTIONS(2593), + [anon_sym_f64] = ACTIONS(2593), + [anon_sym_bool] = ACTIONS(2593), + [anon_sym_str] = ACTIONS(2593), + [anon_sym_char] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_DOT_DOT] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_fn] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_gen] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_impl] = ACTIONS(2593), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_loop] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_mod] = ACTIONS(2593), + [anon_sym_pub] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_trait] = ACTIONS(2593), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_unsafe] = ACTIONS(2593), + [anon_sym_use] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_move] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2591), + [aux_sym_string_literal_token1] = ACTIONS(2591), + [sym_char_literal] = ACTIONS(2591), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2593), + [sym_super] = ACTIONS(2593), + [sym_crate] = ACTIONS(2593), + [sym_metavariable] = ACTIONS(2591), + [sym__raw_string_literal_start] = ACTIONS(2591), + [sym_float_literal] = ACTIONS(2591), + }, + [STATE(687)] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2601), - [sym_identifier] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_macro_rules_BANG] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_u8] = ACTIONS(2603), - [anon_sym_i8] = ACTIONS(2603), - [anon_sym_u16] = ACTIONS(2603), - [anon_sym_i16] = ACTIONS(2603), - [anon_sym_u32] = ACTIONS(2603), - [anon_sym_i32] = ACTIONS(2603), - [anon_sym_u64] = ACTIONS(2603), - [anon_sym_i64] = ACTIONS(2603), - [anon_sym_u128] = ACTIONS(2603), - [anon_sym_i128] = ACTIONS(2603), - [anon_sym_isize] = ACTIONS(2603), - [anon_sym_usize] = ACTIONS(2603), - [anon_sym_f32] = ACTIONS(2603), - [anon_sym_f64] = ACTIONS(2603), - [anon_sym_bool] = ACTIONS(2603), - [anon_sym_str] = ACTIONS(2603), - [anon_sym_char] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_DOT_DOT] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_async] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_fn] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_gen] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_impl] = ACTIONS(2603), - [anon_sym_let] = ACTIONS(2603), - [anon_sym_loop] = ACTIONS(2603), - [anon_sym_match] = ACTIONS(2603), - [anon_sym_mod] = ACTIONS(2603), - [anon_sym_pub] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_trait] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_unsafe] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2603), - [anon_sym_move] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [sym_integer_literal] = ACTIONS(2601), - [aux_sym_string_literal_token1] = ACTIONS(2601), - [sym_char_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2603), - [anon_sym_false] = ACTIONS(2603), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2603), - [sym_super] = ACTIONS(2603), - [sym_crate] = ACTIONS(2603), - [sym_metavariable] = ACTIONS(2601), - [sym__raw_string_literal_start] = ACTIONS(2601), - [sym_float_literal] = ACTIONS(2601), - }, - [688] = { + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_macro_rules_BANG] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_u8] = ACTIONS(2597), + [anon_sym_i8] = ACTIONS(2597), + [anon_sym_u16] = ACTIONS(2597), + [anon_sym_i16] = ACTIONS(2597), + [anon_sym_u32] = ACTIONS(2597), + [anon_sym_i32] = ACTIONS(2597), + [anon_sym_u64] = ACTIONS(2597), + [anon_sym_i64] = ACTIONS(2597), + [anon_sym_u128] = ACTIONS(2597), + [anon_sym_i128] = ACTIONS(2597), + [anon_sym_isize] = ACTIONS(2597), + [anon_sym_usize] = ACTIONS(2597), + [anon_sym_f32] = ACTIONS(2597), + [anon_sym_f64] = ACTIONS(2597), + [anon_sym_bool] = ACTIONS(2597), + [anon_sym_str] = ACTIONS(2597), + [anon_sym_char] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_POUND] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_break] = ACTIONS(2597), + [anon_sym_const] = ACTIONS(2597), + [anon_sym_continue] = ACTIONS(2597), + [anon_sym_default] = ACTIONS(2597), + [anon_sym_enum] = ACTIONS(2597), + [anon_sym_fn] = ACTIONS(2597), + [anon_sym_for] = ACTIONS(2597), + [anon_sym_gen] = ACTIONS(2597), + [anon_sym_if] = ACTIONS(2597), + [anon_sym_impl] = ACTIONS(2597), + [anon_sym_let] = ACTIONS(2597), + [anon_sym_loop] = ACTIONS(2597), + [anon_sym_match] = ACTIONS(2597), + [anon_sym_mod] = ACTIONS(2597), + [anon_sym_pub] = ACTIONS(2597), + [anon_sym_return] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2597), + [anon_sym_struct] = ACTIONS(2597), + [anon_sym_trait] = ACTIONS(2597), + [anon_sym_type] = ACTIONS(2597), + [anon_sym_union] = ACTIONS(2597), + [anon_sym_unsafe] = ACTIONS(2597), + [anon_sym_use] = ACTIONS(2597), + [anon_sym_while] = ACTIONS(2597), + [anon_sym_extern] = ACTIONS(2597), + [anon_sym_yield] = ACTIONS(2597), + [anon_sym_move] = ACTIONS(2597), + [anon_sym_try] = ACTIONS(2597), + [sym_integer_literal] = ACTIONS(2595), + [aux_sym_string_literal_token1] = ACTIONS(2595), + [sym_char_literal] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(2597), + [anon_sym_false] = ACTIONS(2597), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2597), + [sym_super] = ACTIONS(2597), + [sym_crate] = ACTIONS(2597), + [sym_metavariable] = ACTIONS(2595), + [sym__raw_string_literal_start] = ACTIONS(2595), + [sym_float_literal] = ACTIONS(2595), + }, + [STATE(688)] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2599), + [anon_sym_macro_rules_BANG] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2599), + [anon_sym_RBRACE] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_u8] = ACTIONS(2601), + [anon_sym_i8] = ACTIONS(2601), + [anon_sym_u16] = ACTIONS(2601), + [anon_sym_i16] = ACTIONS(2601), + [anon_sym_u32] = ACTIONS(2601), + [anon_sym_i32] = ACTIONS(2601), + [anon_sym_u64] = ACTIONS(2601), + [anon_sym_i64] = ACTIONS(2601), + [anon_sym_u128] = ACTIONS(2601), + [anon_sym_i128] = ACTIONS(2601), + [anon_sym_isize] = ACTIONS(2601), + [anon_sym_usize] = ACTIONS(2601), + [anon_sym_f32] = ACTIONS(2601), + [anon_sym_f64] = ACTIONS(2601), + [anon_sym_bool] = ACTIONS(2601), + [anon_sym_str] = ACTIONS(2601), + [anon_sym_char] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_DOT_DOT] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(2599), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_async] = ACTIONS(2601), + [anon_sym_break] = ACTIONS(2601), + [anon_sym_const] = ACTIONS(2601), + [anon_sym_continue] = ACTIONS(2601), + [anon_sym_default] = ACTIONS(2601), + [anon_sym_enum] = ACTIONS(2601), + [anon_sym_fn] = ACTIONS(2601), + [anon_sym_for] = ACTIONS(2601), + [anon_sym_gen] = ACTIONS(2601), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_impl] = ACTIONS(2601), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_loop] = ACTIONS(2601), + [anon_sym_match] = ACTIONS(2601), + [anon_sym_mod] = ACTIONS(2601), + [anon_sym_pub] = ACTIONS(2601), + [anon_sym_return] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2601), + [anon_sym_struct] = ACTIONS(2601), + [anon_sym_trait] = ACTIONS(2601), + [anon_sym_type] = ACTIONS(2601), + [anon_sym_union] = ACTIONS(2601), + [anon_sym_unsafe] = ACTIONS(2601), + [anon_sym_use] = ACTIONS(2601), + [anon_sym_while] = ACTIONS(2601), + [anon_sym_extern] = ACTIONS(2601), + [anon_sym_yield] = ACTIONS(2601), + [anon_sym_move] = ACTIONS(2601), + [anon_sym_try] = ACTIONS(2601), + [sym_integer_literal] = ACTIONS(2599), + [aux_sym_string_literal_token1] = ACTIONS(2599), + [sym_char_literal] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(2601), + [anon_sym_false] = ACTIONS(2601), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2601), + [sym_super] = ACTIONS(2601), + [sym_crate] = ACTIONS(2601), + [sym_metavariable] = ACTIONS(2599), + [sym__raw_string_literal_start] = ACTIONS(2599), + [sym_float_literal] = ACTIONS(2599), + }, + [STATE(689)] = { + [sym_empty_statement] = STATE(1314), + [sym_macro_definition] = STATE(1314), + [sym_attribute_item] = STATE(1314), + [sym_inner_attribute_item] = STATE(1314), + [sym_mod_item] = STATE(1314), + [sym_foreign_mod_item] = STATE(1314), + [sym_struct_item] = STATE(1314), + [sym_union_item] = STATE(1314), + [sym_enum_item] = STATE(1314), + [sym_extern_crate_declaration] = STATE(1314), + [sym_const_item] = STATE(1314), + [sym_static_item] = STATE(1314), + [sym_type_item] = STATE(1314), + [sym_function_item] = STATE(1314), + [sym_function_signature_item] = STATE(1314), + [sym_function_modifiers] = STATE(3640), + [sym_impl_item] = STATE(1314), + [sym_trait_item] = STATE(1314), + [sym_associated_type] = STATE(1314), + [sym_let_declaration] = STATE(1314), + [sym_use_declaration] = STATE(1314), + [sym_extern_modifier] = STATE(2199), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3370), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_macro_invocation] = STATE(1314), + [sym_scoped_identifier] = STATE(3297), + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [aux_sym_declaration_list_repeat1] = STATE(760), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_gen] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2283), + }, + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2605), [sym_identifier] = ACTIONS(2607), [anon_sym_SEMI] = ACTIONS(2605), @@ -86562,9 +86848,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2605), [sym_float_literal] = ACTIONS(2605), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_macro_rules_BANG] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_impl] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_pub] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_trait] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), + }, + [STATE(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), [ts_builtin_sym_end] = ACTIONS(2609), [sym_identifier] = ACTIONS(2611), [anon_sym_SEMI] = ACTIONS(2609), @@ -86643,9 +87010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2609), [sym_float_literal] = ACTIONS(2609), }, - [690] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2613), [sym_identifier] = ACTIONS(2615), [anon_sym_SEMI] = ACTIONS(2613), @@ -86724,9 +87091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2613), [sym_float_literal] = ACTIONS(2613), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2617), [sym_identifier] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2617), @@ -86805,9 +87172,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2617), [sym_float_literal] = ACTIONS(2617), }, - [692] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2621), [sym_identifier] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2621), @@ -86886,9 +87253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2621), [sym_float_literal] = ACTIONS(2621), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2625), [sym_identifier] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2625), @@ -86967,9 +87334,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2625), [sym_float_literal] = ACTIONS(2625), }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2629), [sym_identifier] = ACTIONS(2631), [anon_sym_SEMI] = ACTIONS(2629), @@ -87048,9 +87415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2629), [sym_float_literal] = ACTIONS(2629), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2633), [sym_identifier] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2633), @@ -87129,9 +87496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2633), [sym_float_literal] = ACTIONS(2633), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2637), @@ -87210,9 +87577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2637), [sym_float_literal] = ACTIONS(2637), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2641), [sym_identifier] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2641), @@ -87291,9 +87658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2641), [sym_float_literal] = ACTIONS(2641), }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2645), @@ -87372,171 +87739,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2645), [sym_float_literal] = ACTIONS(2645), }, - [699] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_match_pattern] = STATE(3616), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(769), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_u8] = ACTIONS(2658), - [anon_sym_i8] = ACTIONS(2658), - [anon_sym_u16] = ACTIONS(2658), - [anon_sym_i16] = ACTIONS(2658), - [anon_sym_u32] = ACTIONS(2658), - [anon_sym_i32] = ACTIONS(2658), - [anon_sym_u64] = ACTIONS(2658), - [anon_sym_i64] = ACTIONS(2658), - [anon_sym_u128] = ACTIONS(2658), - [anon_sym_i128] = ACTIONS(2658), - [anon_sym_isize] = ACTIONS(2658), - [anon_sym_usize] = ACTIONS(2658), - [anon_sym_f32] = ACTIONS(2658), - [anon_sym_f64] = ACTIONS(2658), - [anon_sym_bool] = ACTIONS(2658), - [anon_sym_str] = ACTIONS(2658), - [anon_sym_char] = ACTIONS(2658), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_macro_rules_BANG] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_u8] = ACTIONS(2651), + [anon_sym_i8] = ACTIONS(2651), + [anon_sym_u16] = ACTIONS(2651), + [anon_sym_i16] = ACTIONS(2651), + [anon_sym_u32] = ACTIONS(2651), + [anon_sym_i32] = ACTIONS(2651), + [anon_sym_u64] = ACTIONS(2651), + [anon_sym_i64] = ACTIONS(2651), + [anon_sym_u128] = ACTIONS(2651), + [anon_sym_i128] = ACTIONS(2651), + [anon_sym_isize] = ACTIONS(2651), + [anon_sym_usize] = ACTIONS(2651), + [anon_sym_f32] = ACTIONS(2651), + [anon_sym_f64] = ACTIONS(2651), + [anon_sym_bool] = ACTIONS(2651), + [anon_sym_str] = ACTIONS(2651), + [anon_sym_char] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_async] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_gen] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_impl] = ACTIONS(2651), + [anon_sym_let] = ACTIONS(2651), + [anon_sym_loop] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_mod] = ACTIONS(2651), + [anon_sym_pub] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_trait] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_use] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2651), + [anon_sym_move] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [sym_integer_literal] = ACTIONS(2649), + [aux_sym_string_literal_token1] = ACTIONS(2649), + [sym_char_literal] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2651), + [sym_super] = ACTIONS(2651), + [sym_crate] = ACTIONS(2651), + [sym_metavariable] = ACTIONS(2649), + [sym__raw_string_literal_start] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + }, + [STATE(703)] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_macro_rules_BANG] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_u8] = ACTIONS(2655), + [anon_sym_i8] = ACTIONS(2655), + [anon_sym_u16] = ACTIONS(2655), + [anon_sym_i16] = ACTIONS(2655), + [anon_sym_u32] = ACTIONS(2655), + [anon_sym_i32] = ACTIONS(2655), + [anon_sym_u64] = ACTIONS(2655), + [anon_sym_i64] = ACTIONS(2655), + [anon_sym_u128] = ACTIONS(2655), + [anon_sym_i128] = ACTIONS(2655), + [anon_sym_isize] = ACTIONS(2655), + [anon_sym_usize] = ACTIONS(2655), + [anon_sym_f32] = ACTIONS(2655), + [anon_sym_f64] = ACTIONS(2655), + [anon_sym_bool] = ACTIONS(2655), + [anon_sym_str] = ACTIONS(2655), + [anon_sym_char] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_async] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_fn] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_gen] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_impl] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_loop] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2655), + [anon_sym_mod] = ACTIONS(2655), + [anon_sym_pub] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_trait] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_unsafe] = ACTIONS(2655), + [anon_sym_use] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2655), + [anon_sym_move] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2653), + [aux_sym_string_literal_token1] = ACTIONS(2653), + [sym_char_literal] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2655), + [anon_sym_false] = ACTIONS(2655), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2655), + [sym_super] = ACTIONS(2655), + [sym_crate] = ACTIONS(2655), + [sym_metavariable] = ACTIONS(2653), + [sym__raw_string_literal_start] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), + }, + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_macro_rules_BANG] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u128] = ACTIONS(2659), + [anon_sym_i128] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_str] = ACTIONS(2659), + [anon_sym_char] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_gen] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_impl] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_loop] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_mod] = ACTIONS(2659), + [anon_sym_pub] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_trait] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_unsafe] = ACTIONS(2659), + [anon_sym_use] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_move] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [sym_integer_literal] = ACTIONS(2657), + [aux_sym_string_literal_token1] = ACTIONS(2657), + [sym_char_literal] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_crate] = ACTIONS(2659), + [sym_metavariable] = ACTIONS(2657), + [sym__raw_string_literal_start] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), + }, + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_macro_rules_BANG] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_u8] = ACTIONS(2663), + [anon_sym_i8] = ACTIONS(2663), + [anon_sym_u16] = ACTIONS(2663), + [anon_sym_i16] = ACTIONS(2663), + [anon_sym_u32] = ACTIONS(2663), + [anon_sym_i32] = ACTIONS(2663), + [anon_sym_u64] = ACTIONS(2663), + [anon_sym_i64] = ACTIONS(2663), + [anon_sym_u128] = ACTIONS(2663), + [anon_sym_i128] = ACTIONS(2663), + [anon_sym_isize] = ACTIONS(2663), + [anon_sym_usize] = ACTIONS(2663), + [anon_sym_f32] = ACTIONS(2663), + [anon_sym_f64] = ACTIONS(2663), + [anon_sym_bool] = ACTIONS(2663), + [anon_sym_str] = ACTIONS(2663), + [anon_sym_char] = ACTIONS(2663), [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym__] = ACTIONS(2673), - [anon_sym_DOT_DOT] = ACTIONS(2676), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_gen] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_ref] = ACTIONS(2691), - [sym_mutable_specifier] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_fn] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_gen] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_impl] = ACTIONS(2663), + [anon_sym_let] = ACTIONS(2663), + [anon_sym_loop] = ACTIONS(2663), + [anon_sym_match] = ACTIONS(2663), + [anon_sym_mod] = ACTIONS(2663), + [anon_sym_pub] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_trait] = ACTIONS(2663), + [anon_sym_type] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_unsafe] = ACTIONS(2663), + [anon_sym_use] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2663), + [anon_sym_move] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [sym_integer_literal] = ACTIONS(2661), + [aux_sym_string_literal_token1] = ACTIONS(2661), + [sym_char_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2663), + [anon_sym_false] = ACTIONS(2663), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2663), + [sym_super] = ACTIONS(2663), + [sym_crate] = ACTIONS(2663), + [sym_metavariable] = ACTIONS(2661), + [sym__raw_string_literal_start] = ACTIONS(2661), + [sym_float_literal] = ACTIONS(2661), + }, + [STATE(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_macro_rules_BANG] = ACTIONS(2665), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_u8] = ACTIONS(2667), + [anon_sym_i8] = ACTIONS(2667), + [anon_sym_u16] = ACTIONS(2667), + [anon_sym_i16] = ACTIONS(2667), + [anon_sym_u32] = ACTIONS(2667), + [anon_sym_i32] = ACTIONS(2667), + [anon_sym_u64] = ACTIONS(2667), + [anon_sym_i64] = ACTIONS(2667), + [anon_sym_u128] = ACTIONS(2667), + [anon_sym_i128] = ACTIONS(2667), + [anon_sym_isize] = ACTIONS(2667), + [anon_sym_usize] = ACTIONS(2667), + [anon_sym_f32] = ACTIONS(2667), + [anon_sym_f64] = ACTIONS(2667), + [anon_sym_bool] = ACTIONS(2667), + [anon_sym_str] = ACTIONS(2667), + [anon_sym_char] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_LT] = ACTIONS(2665), + [anon_sym_DOT_DOT] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_POUND] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_async] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_gen] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_impl] = ACTIONS(2667), + [anon_sym_let] = ACTIONS(2667), + [anon_sym_loop] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2667), + [anon_sym_mod] = ACTIONS(2667), + [anon_sym_pub] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_trait] = ACTIONS(2667), + [anon_sym_type] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_unsafe] = ACTIONS(2667), + [anon_sym_use] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_yield] = ACTIONS(2667), + [anon_sym_move] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [sym_integer_literal] = ACTIONS(2665), + [aux_sym_string_literal_token1] = ACTIONS(2665), + [sym_char_literal] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2667), + [sym_super] = ACTIONS(2667), + [sym_crate] = ACTIONS(2667), + [sym_metavariable] = ACTIONS(2665), + [sym__raw_string_literal_start] = ACTIONS(2665), + [sym_float_literal] = ACTIONS(2665), + }, + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_macro_rules_BANG] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_u8] = ACTIONS(2671), + [anon_sym_i8] = ACTIONS(2671), + [anon_sym_u16] = ACTIONS(2671), + [anon_sym_i16] = ACTIONS(2671), + [anon_sym_u32] = ACTIONS(2671), + [anon_sym_i32] = ACTIONS(2671), + [anon_sym_u64] = ACTIONS(2671), + [anon_sym_i64] = ACTIONS(2671), + [anon_sym_u128] = ACTIONS(2671), + [anon_sym_i128] = ACTIONS(2671), + [anon_sym_isize] = ACTIONS(2671), + [anon_sym_usize] = ACTIONS(2671), + [anon_sym_f32] = ACTIONS(2671), + [anon_sym_f64] = ACTIONS(2671), + [anon_sym_bool] = ACTIONS(2671), + [anon_sym_str] = ACTIONS(2671), + [anon_sym_char] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_DOT_DOT] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_async] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_fn] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_gen] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_impl] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2671), + [anon_sym_loop] = ACTIONS(2671), + [anon_sym_match] = ACTIONS(2671), + [anon_sym_mod] = ACTIONS(2671), + [anon_sym_pub] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_trait] = ACTIONS(2671), + [anon_sym_type] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_unsafe] = ACTIONS(2671), + [anon_sym_use] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2671), + [anon_sym_move] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [sym_integer_literal] = ACTIONS(2669), + [aux_sym_string_literal_token1] = ACTIONS(2669), + [sym_char_literal] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2671), + [sym_super] = ACTIONS(2671), + [sym_crate] = ACTIONS(2671), + [sym_metavariable] = ACTIONS(2669), + [sym__raw_string_literal_start] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + }, + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_macro_rules_BANG] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_u8] = ACTIONS(2675), + [anon_sym_i8] = ACTIONS(2675), + [anon_sym_u16] = ACTIONS(2675), + [anon_sym_i16] = ACTIONS(2675), + [anon_sym_u32] = ACTIONS(2675), + [anon_sym_i32] = ACTIONS(2675), + [anon_sym_u64] = ACTIONS(2675), + [anon_sym_i64] = ACTIONS(2675), + [anon_sym_u128] = ACTIONS(2675), + [anon_sym_i128] = ACTIONS(2675), + [anon_sym_isize] = ACTIONS(2675), + [anon_sym_usize] = ACTIONS(2675), + [anon_sym_f32] = ACTIONS(2675), + [anon_sym_f64] = ACTIONS(2675), + [anon_sym_bool] = ACTIONS(2675), + [anon_sym_str] = ACTIONS(2675), + [anon_sym_char] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_PIPE] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_fn] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_gen] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_impl] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_loop] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_mod] = ACTIONS(2675), + [anon_sym_pub] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_trait] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_unsafe] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_move] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [sym_integer_literal] = ACTIONS(2673), + [aux_sym_string_literal_token1] = ACTIONS(2673), + [sym_char_literal] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2675), + [anon_sym_false] = ACTIONS(2675), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2675), + [sym_super] = ACTIONS(2675), + [sym_crate] = ACTIONS(2675), + [sym_metavariable] = ACTIONS(2673), + [sym__raw_string_literal_start] = ACTIONS(2673), + [sym_float_literal] = ACTIONS(2673), + }, + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_macro_rules_BANG] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_u8] = ACTIONS(2679), + [anon_sym_i8] = ACTIONS(2679), + [anon_sym_u16] = ACTIONS(2679), + [anon_sym_i16] = ACTIONS(2679), + [anon_sym_u32] = ACTIONS(2679), + [anon_sym_i32] = ACTIONS(2679), + [anon_sym_u64] = ACTIONS(2679), + [anon_sym_i64] = ACTIONS(2679), + [anon_sym_u128] = ACTIONS(2679), + [anon_sym_i128] = ACTIONS(2679), + [anon_sym_isize] = ACTIONS(2679), + [anon_sym_usize] = ACTIONS(2679), + [anon_sym_f32] = ACTIONS(2679), + [anon_sym_f64] = ACTIONS(2679), + [anon_sym_bool] = ACTIONS(2679), + [anon_sym_str] = ACTIONS(2679), + [anon_sym_char] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_DOT_DOT] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_async] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_gen] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_impl] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_loop] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_mod] = ACTIONS(2679), + [anon_sym_pub] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_trait] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_move] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [sym_integer_literal] = ACTIONS(2677), + [aux_sym_string_literal_token1] = ACTIONS(2677), + [sym_char_literal] = ACTIONS(2677), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2679), + [sym_super] = ACTIONS(2679), + [sym_crate] = ACTIONS(2679), + [sym_metavariable] = ACTIONS(2677), + [sym__raw_string_literal_start] = ACTIONS(2677), + [sym_float_literal] = ACTIONS(2677), + }, + [STATE(710)] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_macro_rules_BANG] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_u8] = ACTIONS(2683), + [anon_sym_i8] = ACTIONS(2683), + [anon_sym_u16] = ACTIONS(2683), + [anon_sym_i16] = ACTIONS(2683), + [anon_sym_u32] = ACTIONS(2683), + [anon_sym_i32] = ACTIONS(2683), + [anon_sym_u64] = ACTIONS(2683), + [anon_sym_i64] = ACTIONS(2683), + [anon_sym_u128] = ACTIONS(2683), + [anon_sym_i128] = ACTIONS(2683), + [anon_sym_isize] = ACTIONS(2683), + [anon_sym_usize] = ACTIONS(2683), + [anon_sym_f32] = ACTIONS(2683), + [anon_sym_f64] = ACTIONS(2683), + [anon_sym_bool] = ACTIONS(2683), + [anon_sym_str] = ACTIONS(2683), + [anon_sym_char] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_DOT_DOT] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_gen] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_impl] = ACTIONS(2683), + [anon_sym_let] = ACTIONS(2683), + [anon_sym_loop] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_mod] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_trait] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_use] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2683), + [anon_sym_move] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2681), + [aux_sym_string_literal_token1] = ACTIONS(2681), + [sym_char_literal] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2683), + [sym_super] = ACTIONS(2683), + [sym_crate] = ACTIONS(2683), + [sym_metavariable] = ACTIONS(2681), + [sym__raw_string_literal_start] = ACTIONS(2681), + [sym_float_literal] = ACTIONS(2681), + }, + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_macro_rules_BANG] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_u8] = ACTIONS(2687), + [anon_sym_i8] = ACTIONS(2687), + [anon_sym_u16] = ACTIONS(2687), + [anon_sym_i16] = ACTIONS(2687), + [anon_sym_u32] = ACTIONS(2687), + [anon_sym_i32] = ACTIONS(2687), + [anon_sym_u64] = ACTIONS(2687), + [anon_sym_i64] = ACTIONS(2687), + [anon_sym_u128] = ACTIONS(2687), + [anon_sym_i128] = ACTIONS(2687), + [anon_sym_isize] = ACTIONS(2687), + [anon_sym_usize] = ACTIONS(2687), + [anon_sym_f32] = ACTIONS(2687), + [anon_sym_f64] = ACTIONS(2687), + [anon_sym_bool] = ACTIONS(2687), + [anon_sym_str] = ACTIONS(2687), + [anon_sym_char] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_DOT_DOT] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_async] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_fn] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_gen] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_impl] = ACTIONS(2687), + [anon_sym_let] = ACTIONS(2687), + [anon_sym_loop] = ACTIONS(2687), + [anon_sym_match] = ACTIONS(2687), + [anon_sym_mod] = ACTIONS(2687), + [anon_sym_pub] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_trait] = ACTIONS(2687), + [anon_sym_type] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_unsafe] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2687), + [anon_sym_move] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [sym_integer_literal] = ACTIONS(2685), + [aux_sym_string_literal_token1] = ACTIONS(2685), + [sym_char_literal] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2687), + [anon_sym_false] = ACTIONS(2687), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2687), + [sym_super] = ACTIONS(2687), + [sym_crate] = ACTIONS(2687), + [sym_metavariable] = ACTIONS(2685), + [sym__raw_string_literal_start] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + }, + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym_macro_rules_BANG] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_u8] = ACTIONS(2691), + [anon_sym_i8] = ACTIONS(2691), + [anon_sym_u16] = ACTIONS(2691), + [anon_sym_i16] = ACTIONS(2691), + [anon_sym_u32] = ACTIONS(2691), + [anon_sym_i32] = ACTIONS(2691), + [anon_sym_u64] = ACTIONS(2691), + [anon_sym_i64] = ACTIONS(2691), + [anon_sym_u128] = ACTIONS(2691), + [anon_sym_i128] = ACTIONS(2691), + [anon_sym_isize] = ACTIONS(2691), + [anon_sym_usize] = ACTIONS(2691), + [anon_sym_f32] = ACTIONS(2691), + [anon_sym_f64] = ACTIONS(2691), + [anon_sym_bool] = ACTIONS(2691), + [anon_sym_str] = ACTIONS(2691), + [anon_sym_char] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_DOT_DOT] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_fn] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_gen] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_impl] = ACTIONS(2691), + [anon_sym_let] = ACTIONS(2691), + [anon_sym_loop] = ACTIONS(2691), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_mod] = ACTIONS(2691), + [anon_sym_pub] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_trait] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(2691), + [anon_sym_use] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_move] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [sym_integer_literal] = ACTIONS(2689), + [aux_sym_string_literal_token1] = ACTIONS(2689), + [sym_char_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2691), + [anon_sym_false] = ACTIONS(2691), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2691), + [sym_super] = ACTIONS(2691), + [sym_crate] = ACTIONS(2691), + [sym_metavariable] = ACTIONS(2689), + [sym__raw_string_literal_start] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + }, + [STATE(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_macro_rules_BANG] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_u8] = ACTIONS(2695), + [anon_sym_i8] = ACTIONS(2695), + [anon_sym_u16] = ACTIONS(2695), + [anon_sym_i16] = ACTIONS(2695), + [anon_sym_u32] = ACTIONS(2695), + [anon_sym_i32] = ACTIONS(2695), + [anon_sym_u64] = ACTIONS(2695), + [anon_sym_i64] = ACTIONS(2695), + [anon_sym_u128] = ACTIONS(2695), + [anon_sym_i128] = ACTIONS(2695), + [anon_sym_isize] = ACTIONS(2695), + [anon_sym_usize] = ACTIONS(2695), + [anon_sym_f32] = ACTIONS(2695), + [anon_sym_f64] = ACTIONS(2695), + [anon_sym_bool] = ACTIONS(2695), + [anon_sym_str] = ACTIONS(2695), + [anon_sym_char] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_POUND] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_async] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_gen] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_impl] = ACTIONS(2695), + [anon_sym_let] = ACTIONS(2695), + [anon_sym_loop] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_mod] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_trait] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2695), + [anon_sym_move] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [sym_integer_literal] = ACTIONS(2693), + [aux_sym_string_literal_token1] = ACTIONS(2693), + [sym_char_literal] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2695), + [anon_sym_false] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2695), + [sym_super] = ACTIONS(2695), + [sym_crate] = ACTIONS(2695), + [sym_metavariable] = ACTIONS(2693), + [sym__raw_string_literal_start] = ACTIONS(2693), + [sym_float_literal] = ACTIONS(2693), + }, + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_macro_rules_BANG] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_u8] = ACTIONS(2699), + [anon_sym_i8] = ACTIONS(2699), + [anon_sym_u16] = ACTIONS(2699), + [anon_sym_i16] = ACTIONS(2699), + [anon_sym_u32] = ACTIONS(2699), + [anon_sym_i32] = ACTIONS(2699), + [anon_sym_u64] = ACTIONS(2699), + [anon_sym_i64] = ACTIONS(2699), + [anon_sym_u128] = ACTIONS(2699), + [anon_sym_i128] = ACTIONS(2699), + [anon_sym_isize] = ACTIONS(2699), + [anon_sym_usize] = ACTIONS(2699), + [anon_sym_f32] = ACTIONS(2699), + [anon_sym_f64] = ACTIONS(2699), + [anon_sym_bool] = ACTIONS(2699), + [anon_sym_str] = ACTIONS(2699), + [anon_sym_char] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_DOT_DOT] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_fn] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_gen] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_impl] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_loop] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_mod] = ACTIONS(2699), + [anon_sym_pub] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_trait] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_unsafe] = ACTIONS(2699), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_move] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), [sym_integer_literal] = ACTIONS(2697), - [aux_sym_string_literal_token1] = ACTIONS(2700), + [aux_sym_string_literal_token1] = ACTIONS(2697), [sym_char_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2699), + [anon_sym_false] = ACTIONS(2699), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_crate] = ACTIONS(2706), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2712), + [sym_self] = ACTIONS(2699), + [sym_super] = ACTIONS(2699), + [sym_crate] = ACTIONS(2699), + [sym_metavariable] = ACTIONS(2697), + [sym__raw_string_literal_start] = ACTIONS(2697), [sym_float_literal] = ACTIONS(2697), }, - [700] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u128] = ACTIONS(2469), - [anon_sym_i128] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_str] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_macro_rules_BANG] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_u8] = ACTIONS(2703), + [anon_sym_i8] = ACTIONS(2703), + [anon_sym_u16] = ACTIONS(2703), + [anon_sym_i16] = ACTIONS(2703), + [anon_sym_u32] = ACTIONS(2703), + [anon_sym_i32] = ACTIONS(2703), + [anon_sym_u64] = ACTIONS(2703), + [anon_sym_i64] = ACTIONS(2703), + [anon_sym_u128] = ACTIONS(2703), + [anon_sym_i128] = ACTIONS(2703), + [anon_sym_isize] = ACTIONS(2703), + [anon_sym_usize] = ACTIONS(2703), + [anon_sym_f32] = ACTIONS(2703), + [anon_sym_f64] = ACTIONS(2703), + [anon_sym_bool] = ACTIONS(2703), + [anon_sym_str] = ACTIONS(2703), + [anon_sym_char] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_async] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_gen] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_impl] = ACTIONS(2703), + [anon_sym_let] = ACTIONS(2703), + [anon_sym_loop] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_mod] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_trait] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_use] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym_yield] = ACTIONS(2703), + [anon_sym_move] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [sym_integer_literal] = ACTIONS(2701), + [aux_sym_string_literal_token1] = ACTIONS(2701), + [sym_char_literal] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), + [sym_self] = ACTIONS(2703), + [sym_super] = ACTIONS(2703), + [sym_crate] = ACTIONS(2703), + [sym_metavariable] = ACTIONS(2701), + [sym__raw_string_literal_start] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_macro_rules_BANG] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_u8] = ACTIONS(2707), + [anon_sym_i8] = ACTIONS(2707), + [anon_sym_u16] = ACTIONS(2707), + [anon_sym_i16] = ACTIONS(2707), + [anon_sym_u32] = ACTIONS(2707), + [anon_sym_i32] = ACTIONS(2707), + [anon_sym_u64] = ACTIONS(2707), + [anon_sym_i64] = ACTIONS(2707), + [anon_sym_u128] = ACTIONS(2707), + [anon_sym_i128] = ACTIONS(2707), + [anon_sym_isize] = ACTIONS(2707), + [anon_sym_usize] = ACTIONS(2707), + [anon_sym_f32] = ACTIONS(2707), + [anon_sym_f64] = ACTIONS(2707), + [anon_sym_bool] = ACTIONS(2707), + [anon_sym_str] = ACTIONS(2707), + [anon_sym_char] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_DOT_DOT] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_async] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_gen] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_impl] = ACTIONS(2707), + [anon_sym_let] = ACTIONS(2707), + [anon_sym_loop] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_mod] = ACTIONS(2707), + [anon_sym_pub] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_trait] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_use] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2707), + [anon_sym_move] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [sym_integer_literal] = ACTIONS(2705), + [aux_sym_string_literal_token1] = ACTIONS(2705), + [sym_char_literal] = ACTIONS(2705), + [anon_sym_true] = ACTIONS(2707), + [anon_sym_false] = ACTIONS(2707), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2707), + [sym_super] = ACTIONS(2707), + [sym_crate] = ACTIONS(2707), + [sym_metavariable] = ACTIONS(2705), + [sym__raw_string_literal_start] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + }, + [STATE(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_macro_rules_BANG] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_u8] = ACTIONS(2711), + [anon_sym_i8] = ACTIONS(2711), + [anon_sym_u16] = ACTIONS(2711), + [anon_sym_i16] = ACTIONS(2711), + [anon_sym_u32] = ACTIONS(2711), + [anon_sym_i32] = ACTIONS(2711), + [anon_sym_u64] = ACTIONS(2711), + [anon_sym_i64] = ACTIONS(2711), + [anon_sym_u128] = ACTIONS(2711), + [anon_sym_i128] = ACTIONS(2711), + [anon_sym_isize] = ACTIONS(2711), + [anon_sym_usize] = ACTIONS(2711), + [anon_sym_f32] = ACTIONS(2711), + [anon_sym_f64] = ACTIONS(2711), + [anon_sym_bool] = ACTIONS(2711), + [anon_sym_str] = ACTIONS(2711), + [anon_sym_char] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_DOT_DOT] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_break] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2711), + [anon_sym_continue] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2711), + [anon_sym_enum] = ACTIONS(2711), + [anon_sym_fn] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_gen] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_impl] = ACTIONS(2711), + [anon_sym_let] = ACTIONS(2711), + [anon_sym_loop] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(2711), + [anon_sym_mod] = ACTIONS(2711), + [anon_sym_pub] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2711), + [anon_sym_trait] = ACTIONS(2711), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2711), + [anon_sym_unsafe] = ACTIONS(2711), + [anon_sym_use] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_move] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [sym_integer_literal] = ACTIONS(2709), + [aux_sym_string_literal_token1] = ACTIONS(2709), + [sym_char_literal] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2711), + [anon_sym_false] = ACTIONS(2711), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2711), + [sym_super] = ACTIONS(2711), + [sym_crate] = ACTIONS(2711), + [sym_metavariable] = ACTIONS(2709), + [sym__raw_string_literal_start] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), + }, + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_macro_rules_BANG] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_u8] = ACTIONS(2715), + [anon_sym_i8] = ACTIONS(2715), + [anon_sym_u16] = ACTIONS(2715), + [anon_sym_i16] = ACTIONS(2715), + [anon_sym_u32] = ACTIONS(2715), + [anon_sym_i32] = ACTIONS(2715), + [anon_sym_u64] = ACTIONS(2715), + [anon_sym_i64] = ACTIONS(2715), + [anon_sym_u128] = ACTIONS(2715), + [anon_sym_i128] = ACTIONS(2715), + [anon_sym_isize] = ACTIONS(2715), + [anon_sym_usize] = ACTIONS(2715), + [anon_sym_f32] = ACTIONS(2715), + [anon_sym_f64] = ACTIONS(2715), + [anon_sym_bool] = ACTIONS(2715), + [anon_sym_str] = ACTIONS(2715), + [anon_sym_char] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_DOT_DOT] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_default] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_gen] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_impl] = ACTIONS(2715), + [anon_sym_let] = ACTIONS(2715), + [anon_sym_loop] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_mod] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_static] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_trait] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_use] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_extern] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_move] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [sym_integer_literal] = ACTIONS(2713), + [aux_sym_string_literal_token1] = ACTIONS(2713), + [sym_char_literal] = ACTIONS(2713), + [anon_sym_true] = ACTIONS(2715), + [anon_sym_false] = ACTIONS(2715), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2715), + [sym_super] = ACTIONS(2715), + [sym_crate] = ACTIONS(2715), + [sym_metavariable] = ACTIONS(2713), + [sym__raw_string_literal_start] = ACTIONS(2713), + [sym_float_literal] = ACTIONS(2713), + }, + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2717), [sym_identifier] = ACTIONS(2719), [anon_sym_SEMI] = ACTIONS(2717), @@ -87615,9 +89197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2717), [sym_float_literal] = ACTIONS(2717), }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2721), [sym_identifier] = ACTIONS(2723), [anon_sym_SEMI] = ACTIONS(2721), @@ -87696,9 +89278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2721), [sym_float_literal] = ACTIONS(2721), }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2725), [sym_identifier] = ACTIONS(2727), [anon_sym_SEMI] = ACTIONS(2725), @@ -87777,9 +89359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2725), [sym_float_literal] = ACTIONS(2725), }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2729), [sym_identifier] = ACTIONS(2731), [anon_sym_SEMI] = ACTIONS(2729), @@ -87858,9 +89440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2729), [sym_float_literal] = ACTIONS(2729), }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2733), [sym_identifier] = ACTIONS(2735), [anon_sym_SEMI] = ACTIONS(2733), @@ -87939,9 +89521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2733), [sym_float_literal] = ACTIONS(2733), }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2737), [sym_identifier] = ACTIONS(2739), [anon_sym_SEMI] = ACTIONS(2737), @@ -88020,9 +89602,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2737), [sym_float_literal] = ACTIONS(2737), }, - [707] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2741), [sym_identifier] = ACTIONS(2743), [anon_sym_SEMI] = ACTIONS(2741), @@ -88101,9 +89683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2741), [sym_float_literal] = ACTIONS(2741), }, - [708] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2745), [sym_identifier] = ACTIONS(2747), [anon_sym_SEMI] = ACTIONS(2745), @@ -88182,9 +89764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2745), [sym_float_literal] = ACTIONS(2745), }, - [709] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2749), [sym_identifier] = ACTIONS(2751), [anon_sym_SEMI] = ACTIONS(2749), @@ -88263,9 +89845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2749), [sym_float_literal] = ACTIONS(2749), }, - [710] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2753), [sym_identifier] = ACTIONS(2755), [anon_sym_SEMI] = ACTIONS(2753), @@ -88344,9 +89926,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2753), [sym_float_literal] = ACTIONS(2753), }, - [711] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2757), [sym_identifier] = ACTIONS(2759), [anon_sym_SEMI] = ACTIONS(2757), @@ -88425,9 +90007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2757), [sym_float_literal] = ACTIONS(2757), }, - [712] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2761), [sym_identifier] = ACTIONS(2763), [anon_sym_SEMI] = ACTIONS(2761), @@ -88506,9 +90088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2761), [sym_float_literal] = ACTIONS(2761), }, - [713] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2765), [sym_identifier] = ACTIONS(2767), [anon_sym_SEMI] = ACTIONS(2765), @@ -88587,9 +90169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2765), [sym_float_literal] = ACTIONS(2765), }, - [714] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), [ts_builtin_sym_end] = ACTIONS(2769), [sym_identifier] = ACTIONS(2771), [anon_sym_SEMI] = ACTIONS(2769), @@ -88668,9 +90250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2769), [sym_float_literal] = ACTIONS(2769), }, - [715] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), [ts_builtin_sym_end] = ACTIONS(2773), [sym_identifier] = ACTIONS(2775), [anon_sym_SEMI] = ACTIONS(2773), @@ -88749,9 +90331,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2773), [sym_float_literal] = ACTIONS(2773), }, - [716] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), [ts_builtin_sym_end] = ACTIONS(2777), [sym_identifier] = ACTIONS(2779), [anon_sym_SEMI] = ACTIONS(2777), @@ -88830,9 +90412,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2777), [sym_float_literal] = ACTIONS(2777), }, - [717] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), [ts_builtin_sym_end] = ACTIONS(2781), [sym_identifier] = ACTIONS(2783), [anon_sym_SEMI] = ACTIONS(2781), @@ -88911,4550 +90493,3192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2781), [sym_float_literal] = ACTIONS(2781), }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_macro_rules_BANG] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_u8] = ACTIONS(2787), - [anon_sym_i8] = ACTIONS(2787), - [anon_sym_u16] = ACTIONS(2787), - [anon_sym_i16] = ACTIONS(2787), - [anon_sym_u32] = ACTIONS(2787), - [anon_sym_i32] = ACTIONS(2787), - [anon_sym_u64] = ACTIONS(2787), - [anon_sym_i64] = ACTIONS(2787), - [anon_sym_u128] = ACTIONS(2787), - [anon_sym_i128] = ACTIONS(2787), - [anon_sym_isize] = ACTIONS(2787), - [anon_sym_usize] = ACTIONS(2787), - [anon_sym_f32] = ACTIONS(2787), - [anon_sym_f64] = ACTIONS(2787), - [anon_sym_bool] = ACTIONS(2787), - [anon_sym_str] = ACTIONS(2787), - [anon_sym_char] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_PIPE] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_DOT_DOT] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_POUND] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_const] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_default] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_fn] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_gen] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_impl] = ACTIONS(2787), - [anon_sym_let] = ACTIONS(2787), - [anon_sym_loop] = ACTIONS(2787), - [anon_sym_match] = ACTIONS(2787), - [anon_sym_mod] = ACTIONS(2787), - [anon_sym_pub] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_trait] = ACTIONS(2787), - [anon_sym_type] = ACTIONS(2787), - [anon_sym_union] = ACTIONS(2787), - [anon_sym_unsafe] = ACTIONS(2787), - [anon_sym_use] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_extern] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_move] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [sym_integer_literal] = ACTIONS(2785), - [aux_sym_string_literal_token1] = ACTIONS(2785), - [sym_char_literal] = ACTIONS(2785), - [anon_sym_true] = ACTIONS(2787), - [anon_sym_false] = ACTIONS(2787), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2787), - [sym_super] = ACTIONS(2787), - [sym_crate] = ACTIONS(2787), - [sym_metavariable] = ACTIONS(2785), - [sym__raw_string_literal_start] = ACTIONS(2785), - [sym_float_literal] = ACTIONS(2785), - }, - [719] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_macro_rules_BANG] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_u8] = ACTIONS(2791), - [anon_sym_i8] = ACTIONS(2791), - [anon_sym_u16] = ACTIONS(2791), - [anon_sym_i16] = ACTIONS(2791), - [anon_sym_u32] = ACTIONS(2791), - [anon_sym_i32] = ACTIONS(2791), - [anon_sym_u64] = ACTIONS(2791), - [anon_sym_i64] = ACTIONS(2791), - [anon_sym_u128] = ACTIONS(2791), - [anon_sym_i128] = ACTIONS(2791), - [anon_sym_isize] = ACTIONS(2791), - [anon_sym_usize] = ACTIONS(2791), - [anon_sym_f32] = ACTIONS(2791), - [anon_sym_f64] = ACTIONS(2791), - [anon_sym_bool] = ACTIONS(2791), - [anon_sym_str] = ACTIONS(2791), - [anon_sym_char] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_DOT_DOT] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_async] = ACTIONS(2791), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_default] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_gen] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_impl] = ACTIONS(2791), - [anon_sym_let] = ACTIONS(2791), - [anon_sym_loop] = ACTIONS(2791), - [anon_sym_match] = ACTIONS(2791), - [anon_sym_mod] = ACTIONS(2791), - [anon_sym_pub] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_trait] = ACTIONS(2791), - [anon_sym_type] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [anon_sym_unsafe] = ACTIONS(2791), - [anon_sym_use] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym_yield] = ACTIONS(2791), - [anon_sym_move] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2791), - [sym_integer_literal] = ACTIONS(2789), - [aux_sym_string_literal_token1] = ACTIONS(2789), - [sym_char_literal] = ACTIONS(2789), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2791), - [sym_super] = ACTIONS(2791), - [sym_crate] = ACTIONS(2791), - [sym_metavariable] = ACTIONS(2789), - [sym__raw_string_literal_start] = ACTIONS(2789), - [sym_float_literal] = ACTIONS(2789), - }, - [720] = { - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym_macro_rules_BANG] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2793), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_u8] = ACTIONS(2795), - [anon_sym_i8] = ACTIONS(2795), - [anon_sym_u16] = ACTIONS(2795), - [anon_sym_i16] = ACTIONS(2795), - [anon_sym_u32] = ACTIONS(2795), - [anon_sym_i32] = ACTIONS(2795), - [anon_sym_u64] = ACTIONS(2795), - [anon_sym_i64] = ACTIONS(2795), - [anon_sym_u128] = ACTIONS(2795), - [anon_sym_i128] = ACTIONS(2795), - [anon_sym_isize] = ACTIONS(2795), - [anon_sym_usize] = ACTIONS(2795), - [anon_sym_f32] = ACTIONS(2795), - [anon_sym_f64] = ACTIONS(2795), - [anon_sym_bool] = ACTIONS(2795), - [anon_sym_str] = ACTIONS(2795), - [anon_sym_char] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_PIPE] = ACTIONS(2793), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_DOT_DOT] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_POUND] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_async] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_fn] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_gen] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_impl] = ACTIONS(2795), - [anon_sym_let] = ACTIONS(2795), - [anon_sym_loop] = ACTIONS(2795), - [anon_sym_match] = ACTIONS(2795), - [anon_sym_mod] = ACTIONS(2795), - [anon_sym_pub] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_trait] = ACTIONS(2795), - [anon_sym_type] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_unsafe] = ACTIONS(2795), - [anon_sym_use] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym_yield] = ACTIONS(2795), - [anon_sym_move] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [sym_integer_literal] = ACTIONS(2793), - [aux_sym_string_literal_token1] = ACTIONS(2793), - [sym_char_literal] = ACTIONS(2793), - [anon_sym_true] = ACTIONS(2795), - [anon_sym_false] = ACTIONS(2795), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2795), - [sym_super] = ACTIONS(2795), - [sym_crate] = ACTIONS(2795), - [sym_metavariable] = ACTIONS(2793), - [sym__raw_string_literal_start] = ACTIONS(2793), - [sym_float_literal] = ACTIONS(2793), - }, - [721] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_macro_rules_BANG] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_u8] = ACTIONS(2799), - [anon_sym_i8] = ACTIONS(2799), - [anon_sym_u16] = ACTIONS(2799), - [anon_sym_i16] = ACTIONS(2799), - [anon_sym_u32] = ACTIONS(2799), - [anon_sym_i32] = ACTIONS(2799), - [anon_sym_u64] = ACTIONS(2799), - [anon_sym_i64] = ACTIONS(2799), - [anon_sym_u128] = ACTIONS(2799), - [anon_sym_i128] = ACTIONS(2799), - [anon_sym_isize] = ACTIONS(2799), - [anon_sym_usize] = ACTIONS(2799), - [anon_sym_f32] = ACTIONS(2799), - [anon_sym_f64] = ACTIONS(2799), - [anon_sym_bool] = ACTIONS(2799), - [anon_sym_str] = ACTIONS(2799), - [anon_sym_char] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(2797), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_DOT_DOT] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_POUND] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_async] = ACTIONS(2799), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2799), - [anon_sym_default] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_for] = ACTIONS(2799), - [anon_sym_gen] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2799), - [anon_sym_impl] = ACTIONS(2799), - [anon_sym_let] = ACTIONS(2799), - [anon_sym_loop] = ACTIONS(2799), - [anon_sym_match] = ACTIONS(2799), - [anon_sym_mod] = ACTIONS(2799), - [anon_sym_pub] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_trait] = ACTIONS(2799), - [anon_sym_type] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [anon_sym_unsafe] = ACTIONS(2799), - [anon_sym_use] = ACTIONS(2799), - [anon_sym_while] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym_yield] = ACTIONS(2799), - [anon_sym_move] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(2799), - [sym_integer_literal] = ACTIONS(2797), - [aux_sym_string_literal_token1] = ACTIONS(2797), - [sym_char_literal] = ACTIONS(2797), - [anon_sym_true] = ACTIONS(2799), - [anon_sym_false] = ACTIONS(2799), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2799), - [sym_super] = ACTIONS(2799), - [sym_crate] = ACTIONS(2799), - [sym_metavariable] = ACTIONS(2797), - [sym__raw_string_literal_start] = ACTIONS(2797), - [sym_float_literal] = ACTIONS(2797), - }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_macro_rules_BANG] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_u8] = ACTIONS(2803), - [anon_sym_i8] = ACTIONS(2803), - [anon_sym_u16] = ACTIONS(2803), - [anon_sym_i16] = ACTIONS(2803), - [anon_sym_u32] = ACTIONS(2803), - [anon_sym_i32] = ACTIONS(2803), - [anon_sym_u64] = ACTIONS(2803), - [anon_sym_i64] = ACTIONS(2803), - [anon_sym_u128] = ACTIONS(2803), - [anon_sym_i128] = ACTIONS(2803), - [anon_sym_isize] = ACTIONS(2803), - [anon_sym_usize] = ACTIONS(2803), - [anon_sym_f32] = ACTIONS(2803), - [anon_sym_f64] = ACTIONS(2803), - [anon_sym_bool] = ACTIONS(2803), - [anon_sym_str] = ACTIONS(2803), - [anon_sym_char] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_DOT_DOT] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_async] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_const] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_fn] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_gen] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_impl] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2803), - [anon_sym_loop] = ACTIONS(2803), - [anon_sym_match] = ACTIONS(2803), - [anon_sym_mod] = ACTIONS(2803), - [anon_sym_pub] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_trait] = ACTIONS(2803), - [anon_sym_type] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_unsafe] = ACTIONS(2803), - [anon_sym_use] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym_yield] = ACTIONS(2803), - [anon_sym_move] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [sym_integer_literal] = ACTIONS(2801), - [aux_sym_string_literal_token1] = ACTIONS(2801), - [sym_char_literal] = ACTIONS(2801), - [anon_sym_true] = ACTIONS(2803), - [anon_sym_false] = ACTIONS(2803), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2803), - [sym_super] = ACTIONS(2803), - [sym_crate] = ACTIONS(2803), - [sym_metavariable] = ACTIONS(2801), - [sym__raw_string_literal_start] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(2801), - }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2805), - [sym_identifier] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym_macro_rules_BANG] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_u8] = ACTIONS(2807), - [anon_sym_i8] = ACTIONS(2807), - [anon_sym_u16] = ACTIONS(2807), - [anon_sym_i16] = ACTIONS(2807), - [anon_sym_u32] = ACTIONS(2807), - [anon_sym_i32] = ACTIONS(2807), - [anon_sym_u64] = ACTIONS(2807), - [anon_sym_i64] = ACTIONS(2807), - [anon_sym_u128] = ACTIONS(2807), - [anon_sym_i128] = ACTIONS(2807), - [anon_sym_isize] = ACTIONS(2807), - [anon_sym_usize] = ACTIONS(2807), - [anon_sym_f32] = ACTIONS(2807), - [anon_sym_f64] = ACTIONS(2807), - [anon_sym_bool] = ACTIONS(2807), - [anon_sym_str] = ACTIONS(2807), - [anon_sym_char] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_DOT_DOT] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_break] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_continue] = ACTIONS(2807), - [anon_sym_default] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_fn] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2807), - [anon_sym_gen] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2807), - [anon_sym_impl] = ACTIONS(2807), - [anon_sym_let] = ACTIONS(2807), - [anon_sym_loop] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_mod] = ACTIONS(2807), - [anon_sym_pub] = ACTIONS(2807), - [anon_sym_return] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_trait] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), - [anon_sym_unsafe] = ACTIONS(2807), - [anon_sym_use] = ACTIONS(2807), - [anon_sym_while] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym_yield] = ACTIONS(2807), - [anon_sym_move] = ACTIONS(2807), - [anon_sym_try] = ACTIONS(2807), - [sym_integer_literal] = ACTIONS(2805), - [aux_sym_string_literal_token1] = ACTIONS(2805), - [sym_char_literal] = ACTIONS(2805), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2807), - [sym_super] = ACTIONS(2807), - [sym_crate] = ACTIONS(2807), - [sym_metavariable] = ACTIONS(2805), - [sym__raw_string_literal_start] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(2805), - }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2809), - [sym_identifier] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_macro_rules_BANG] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_u8] = ACTIONS(2811), - [anon_sym_i8] = ACTIONS(2811), - [anon_sym_u16] = ACTIONS(2811), - [anon_sym_i16] = ACTIONS(2811), - [anon_sym_u32] = ACTIONS(2811), - [anon_sym_i32] = ACTIONS(2811), - [anon_sym_u64] = ACTIONS(2811), - [anon_sym_i64] = ACTIONS(2811), - [anon_sym_u128] = ACTIONS(2811), - [anon_sym_i128] = ACTIONS(2811), - [anon_sym_isize] = ACTIONS(2811), - [anon_sym_usize] = ACTIONS(2811), - [anon_sym_f32] = ACTIONS(2811), - [anon_sym_f64] = ACTIONS(2811), - [anon_sym_bool] = ACTIONS(2811), - [anon_sym_str] = ACTIONS(2811), - [anon_sym_char] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_DOT_DOT] = ACTIONS(2809), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_POUND] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_async] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_const] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_default] = ACTIONS(2811), - [anon_sym_enum] = ACTIONS(2811), - [anon_sym_fn] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_gen] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_impl] = ACTIONS(2811), - [anon_sym_let] = ACTIONS(2811), - [anon_sym_loop] = ACTIONS(2811), - [anon_sym_match] = ACTIONS(2811), - [anon_sym_mod] = ACTIONS(2811), - [anon_sym_pub] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2811), - [anon_sym_struct] = ACTIONS(2811), - [anon_sym_trait] = ACTIONS(2811), - [anon_sym_type] = ACTIONS(2811), - [anon_sym_union] = ACTIONS(2811), - [anon_sym_unsafe] = ACTIONS(2811), - [anon_sym_use] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_extern] = ACTIONS(2811), - [anon_sym_yield] = ACTIONS(2811), - [anon_sym_move] = ACTIONS(2811), - [anon_sym_try] = ACTIONS(2811), - [sym_integer_literal] = ACTIONS(2809), - [aux_sym_string_literal_token1] = ACTIONS(2809), - [sym_char_literal] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2811), - [sym_super] = ACTIONS(2811), - [sym_crate] = ACTIONS(2811), - [sym_metavariable] = ACTIONS(2809), - [sym__raw_string_literal_start] = ACTIONS(2809), - [sym_float_literal] = ACTIONS(2809), - }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym_macro_rules_BANG] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_u8] = ACTIONS(2815), - [anon_sym_i8] = ACTIONS(2815), - [anon_sym_u16] = ACTIONS(2815), - [anon_sym_i16] = ACTIONS(2815), - [anon_sym_u32] = ACTIONS(2815), - [anon_sym_i32] = ACTIONS(2815), - [anon_sym_u64] = ACTIONS(2815), - [anon_sym_i64] = ACTIONS(2815), - [anon_sym_u128] = ACTIONS(2815), - [anon_sym_i128] = ACTIONS(2815), - [anon_sym_isize] = ACTIONS(2815), - [anon_sym_usize] = ACTIONS(2815), - [anon_sym_f32] = ACTIONS(2815), - [anon_sym_f64] = ACTIONS(2815), - [anon_sym_bool] = ACTIONS(2815), - [anon_sym_str] = ACTIONS(2815), - [anon_sym_char] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_DOT_DOT] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_POUND] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_async] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_const] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_default] = ACTIONS(2815), - [anon_sym_enum] = ACTIONS(2815), - [anon_sym_fn] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_gen] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_impl] = ACTIONS(2815), - [anon_sym_let] = ACTIONS(2815), - [anon_sym_loop] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_mod] = ACTIONS(2815), - [anon_sym_pub] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2815), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_trait] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_union] = ACTIONS(2815), - [anon_sym_unsafe] = ACTIONS(2815), - [anon_sym_use] = ACTIONS(2815), - [anon_sym_while] = ACTIONS(2815), - [anon_sym_extern] = ACTIONS(2815), - [anon_sym_yield] = ACTIONS(2815), - [anon_sym_move] = ACTIONS(2815), - [anon_sym_try] = ACTIONS(2815), - [sym_integer_literal] = ACTIONS(2813), - [aux_sym_string_literal_token1] = ACTIONS(2813), - [sym_char_literal] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2815), - [sym_super] = ACTIONS(2815), - [sym_crate] = ACTIONS(2815), - [sym_metavariable] = ACTIONS(2813), - [sym__raw_string_literal_start] = ACTIONS(2813), - [sym_float_literal] = ACTIONS(2813), - }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2817), - [sym_identifier] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_macro_rules_BANG] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_STAR] = ACTIONS(2817), - [anon_sym_u8] = ACTIONS(2819), - [anon_sym_i8] = ACTIONS(2819), - [anon_sym_u16] = ACTIONS(2819), - [anon_sym_i16] = ACTIONS(2819), - [anon_sym_u32] = ACTIONS(2819), - [anon_sym_i32] = ACTIONS(2819), - [anon_sym_u64] = ACTIONS(2819), - [anon_sym_i64] = ACTIONS(2819), - [anon_sym_u128] = ACTIONS(2819), - [anon_sym_i128] = ACTIONS(2819), - [anon_sym_isize] = ACTIONS(2819), - [anon_sym_usize] = ACTIONS(2819), - [anon_sym_f32] = ACTIONS(2819), - [anon_sym_f64] = ACTIONS(2819), - [anon_sym_bool] = ACTIONS(2819), - [anon_sym_str] = ACTIONS(2819), - [anon_sym_char] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_DOT_DOT] = ACTIONS(2817), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_POUND] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_async] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_const] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_default] = ACTIONS(2819), - [anon_sym_enum] = ACTIONS(2819), - [anon_sym_fn] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_gen] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_impl] = ACTIONS(2819), - [anon_sym_let] = ACTIONS(2819), - [anon_sym_loop] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2819), - [anon_sym_mod] = ACTIONS(2819), - [anon_sym_pub] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_static] = ACTIONS(2819), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_trait] = ACTIONS(2819), - [anon_sym_type] = ACTIONS(2819), - [anon_sym_union] = ACTIONS(2819), - [anon_sym_unsafe] = ACTIONS(2819), - [anon_sym_use] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2819), - [anon_sym_extern] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2819), - [anon_sym_move] = ACTIONS(2819), - [anon_sym_try] = ACTIONS(2819), - [sym_integer_literal] = ACTIONS(2817), - [aux_sym_string_literal_token1] = ACTIONS(2817), - [sym_char_literal] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2819), - [anon_sym_false] = ACTIONS(2819), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2819), - [sym_super] = ACTIONS(2819), - [sym_crate] = ACTIONS(2819), - [sym_metavariable] = ACTIONS(2817), - [sym__raw_string_literal_start] = ACTIONS(2817), - [sym_float_literal] = ACTIONS(2817), - }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2821), - [sym_identifier] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_macro_rules_BANG] = ACTIONS(2821), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(2821), - [anon_sym_u8] = ACTIONS(2823), - [anon_sym_i8] = ACTIONS(2823), - [anon_sym_u16] = ACTIONS(2823), - [anon_sym_i16] = ACTIONS(2823), - [anon_sym_u32] = ACTIONS(2823), - [anon_sym_i32] = ACTIONS(2823), - [anon_sym_u64] = ACTIONS(2823), - [anon_sym_i64] = ACTIONS(2823), - [anon_sym_u128] = ACTIONS(2823), - [anon_sym_i128] = ACTIONS(2823), - [anon_sym_isize] = ACTIONS(2823), - [anon_sym_usize] = ACTIONS(2823), - [anon_sym_f32] = ACTIONS(2823), - [anon_sym_f64] = ACTIONS(2823), - [anon_sym_bool] = ACTIONS(2823), - [anon_sym_str] = ACTIONS(2823), - [anon_sym_char] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2821), - [anon_sym_AMP] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_DOT_DOT] = ACTIONS(2821), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_POUND] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_async] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_const] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_default] = ACTIONS(2823), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_fn] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_gen] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_impl] = ACTIONS(2823), - [anon_sym_let] = ACTIONS(2823), - [anon_sym_loop] = ACTIONS(2823), - [anon_sym_match] = ACTIONS(2823), - [anon_sym_mod] = ACTIONS(2823), - [anon_sym_pub] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2823), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_trait] = ACTIONS(2823), - [anon_sym_type] = ACTIONS(2823), - [anon_sym_union] = ACTIONS(2823), - [anon_sym_unsafe] = ACTIONS(2823), - [anon_sym_use] = ACTIONS(2823), - [anon_sym_while] = ACTIONS(2823), - [anon_sym_extern] = ACTIONS(2823), - [anon_sym_yield] = ACTIONS(2823), - [anon_sym_move] = ACTIONS(2823), - [anon_sym_try] = ACTIONS(2823), - [sym_integer_literal] = ACTIONS(2821), - [aux_sym_string_literal_token1] = ACTIONS(2821), - [sym_char_literal] = ACTIONS(2821), - [anon_sym_true] = ACTIONS(2823), - [anon_sym_false] = ACTIONS(2823), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2823), - [sym_super] = ACTIONS(2823), - [sym_crate] = ACTIONS(2823), - [sym_metavariable] = ACTIONS(2821), - [sym__raw_string_literal_start] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2821), - }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_identifier] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_macro_rules_BANG] = ACTIONS(2825), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(2825), - [anon_sym_u8] = ACTIONS(2827), - [anon_sym_i8] = ACTIONS(2827), - [anon_sym_u16] = ACTIONS(2827), - [anon_sym_i16] = ACTIONS(2827), - [anon_sym_u32] = ACTIONS(2827), - [anon_sym_i32] = ACTIONS(2827), - [anon_sym_u64] = ACTIONS(2827), - [anon_sym_i64] = ACTIONS(2827), - [anon_sym_u128] = ACTIONS(2827), - [anon_sym_i128] = ACTIONS(2827), - [anon_sym_isize] = ACTIONS(2827), - [anon_sym_usize] = ACTIONS(2827), - [anon_sym_f32] = ACTIONS(2827), - [anon_sym_f64] = ACTIONS(2827), - [anon_sym_bool] = ACTIONS(2827), - [anon_sym_str] = ACTIONS(2827), - [anon_sym_char] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_AMP] = ACTIONS(2825), - [anon_sym_PIPE] = ACTIONS(2825), - [anon_sym_LT] = ACTIONS(2825), - [anon_sym_DOT_DOT] = ACTIONS(2825), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_POUND] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_async] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_fn] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_gen] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_impl] = ACTIONS(2827), - [anon_sym_let] = ACTIONS(2827), - [anon_sym_loop] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_mod] = ACTIONS(2827), - [anon_sym_pub] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_trait] = ACTIONS(2827), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_use] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym_yield] = ACTIONS(2827), - [anon_sym_move] = ACTIONS(2827), - [anon_sym_try] = ACTIONS(2827), - [sym_integer_literal] = ACTIONS(2825), - [aux_sym_string_literal_token1] = ACTIONS(2825), - [sym_char_literal] = ACTIONS(2825), - [anon_sym_true] = ACTIONS(2827), - [anon_sym_false] = ACTIONS(2827), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2827), - [sym_super] = ACTIONS(2827), - [sym_crate] = ACTIONS(2827), - [sym_metavariable] = ACTIONS(2825), - [sym__raw_string_literal_start] = ACTIONS(2825), - [sym_float_literal] = ACTIONS(2825), - }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_macro_rules_BANG] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_u8] = ACTIONS(2831), - [anon_sym_i8] = ACTIONS(2831), - [anon_sym_u16] = ACTIONS(2831), - [anon_sym_i16] = ACTIONS(2831), - [anon_sym_u32] = ACTIONS(2831), - [anon_sym_i32] = ACTIONS(2831), - [anon_sym_u64] = ACTIONS(2831), - [anon_sym_i64] = ACTIONS(2831), - [anon_sym_u128] = ACTIONS(2831), - [anon_sym_i128] = ACTIONS(2831), - [anon_sym_isize] = ACTIONS(2831), - [anon_sym_usize] = ACTIONS(2831), - [anon_sym_f32] = ACTIONS(2831), - [anon_sym_f64] = ACTIONS(2831), - [anon_sym_bool] = ACTIONS(2831), - [anon_sym_str] = ACTIONS(2831), - [anon_sym_char] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2829), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_DOT_DOT] = ACTIONS(2829), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_POUND] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_async] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_fn] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_gen] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_impl] = ACTIONS(2831), - [anon_sym_let] = ACTIONS(2831), - [anon_sym_loop] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_mod] = ACTIONS(2831), - [anon_sym_pub] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_trait] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2831), - [anon_sym_use] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2831), - [anon_sym_yield] = ACTIONS(2831), - [anon_sym_move] = ACTIONS(2831), - [anon_sym_try] = ACTIONS(2831), - [sym_integer_literal] = ACTIONS(2829), - [aux_sym_string_literal_token1] = ACTIONS(2829), - [sym_char_literal] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2831), - [anon_sym_false] = ACTIONS(2831), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2831), - [sym_super] = ACTIONS(2831), - [sym_crate] = ACTIONS(2831), - [sym_metavariable] = ACTIONS(2829), - [sym__raw_string_literal_start] = ACTIONS(2829), - [sym_float_literal] = ACTIONS(2829), - }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2833), - [sym_identifier] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_macro_rules_BANG] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_u8] = ACTIONS(2835), - [anon_sym_i8] = ACTIONS(2835), - [anon_sym_u16] = ACTIONS(2835), - [anon_sym_i16] = ACTIONS(2835), - [anon_sym_u32] = ACTIONS(2835), - [anon_sym_i32] = ACTIONS(2835), - [anon_sym_u64] = ACTIONS(2835), - [anon_sym_i64] = ACTIONS(2835), - [anon_sym_u128] = ACTIONS(2835), - [anon_sym_i128] = ACTIONS(2835), - [anon_sym_isize] = ACTIONS(2835), - [anon_sym_usize] = ACTIONS(2835), - [anon_sym_f32] = ACTIONS(2835), - [anon_sym_f64] = ACTIONS(2835), - [anon_sym_bool] = ACTIONS(2835), - [anon_sym_str] = ACTIONS(2835), - [anon_sym_char] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2833), - [anon_sym_LT] = ACTIONS(2833), - [anon_sym_DOT_DOT] = ACTIONS(2833), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_POUND] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_async] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_fn] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_gen] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_impl] = ACTIONS(2835), - [anon_sym_let] = ACTIONS(2835), - [anon_sym_loop] = ACTIONS(2835), - [anon_sym_match] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_pub] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_trait] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_unsafe] = ACTIONS(2835), - [anon_sym_use] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym_yield] = ACTIONS(2835), - [anon_sym_move] = ACTIONS(2835), - [anon_sym_try] = ACTIONS(2835), - [sym_integer_literal] = ACTIONS(2833), - [aux_sym_string_literal_token1] = ACTIONS(2833), - [sym_char_literal] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2835), - [sym_super] = ACTIONS(2835), - [sym_crate] = ACTIONS(2835), - [sym_metavariable] = ACTIONS(2833), - [sym__raw_string_literal_start] = ACTIONS(2833), - [sym_float_literal] = ACTIONS(2833), - }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2837), - [sym_identifier] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_macro_rules_BANG] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_u8] = ACTIONS(2839), - [anon_sym_i8] = ACTIONS(2839), - [anon_sym_u16] = ACTIONS(2839), - [anon_sym_i16] = ACTIONS(2839), - [anon_sym_u32] = ACTIONS(2839), - [anon_sym_i32] = ACTIONS(2839), - [anon_sym_u64] = ACTIONS(2839), - [anon_sym_i64] = ACTIONS(2839), - [anon_sym_u128] = ACTIONS(2839), - [anon_sym_i128] = ACTIONS(2839), - [anon_sym_isize] = ACTIONS(2839), - [anon_sym_usize] = ACTIONS(2839), - [anon_sym_f32] = ACTIONS(2839), - [anon_sym_f64] = ACTIONS(2839), - [anon_sym_bool] = ACTIONS(2839), - [anon_sym_str] = ACTIONS(2839), - [anon_sym_char] = ACTIONS(2839), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_DOT_DOT] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_POUND] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_async] = ACTIONS(2839), - [anon_sym_break] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2839), - [anon_sym_continue] = ACTIONS(2839), - [anon_sym_default] = ACTIONS(2839), - [anon_sym_enum] = ACTIONS(2839), - [anon_sym_fn] = ACTIONS(2839), - [anon_sym_for] = ACTIONS(2839), - [anon_sym_gen] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2839), - [anon_sym_impl] = ACTIONS(2839), - [anon_sym_let] = ACTIONS(2839), - [anon_sym_loop] = ACTIONS(2839), - [anon_sym_match] = ACTIONS(2839), - [anon_sym_mod] = ACTIONS(2839), - [anon_sym_pub] = ACTIONS(2839), - [anon_sym_return] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2839), - [anon_sym_struct] = ACTIONS(2839), - [anon_sym_trait] = ACTIONS(2839), - [anon_sym_type] = ACTIONS(2839), - [anon_sym_union] = ACTIONS(2839), - [anon_sym_unsafe] = ACTIONS(2839), - [anon_sym_use] = ACTIONS(2839), - [anon_sym_while] = ACTIONS(2839), - [anon_sym_extern] = ACTIONS(2839), - [anon_sym_yield] = ACTIONS(2839), - [anon_sym_move] = ACTIONS(2839), - [anon_sym_try] = ACTIONS(2839), - [sym_integer_literal] = ACTIONS(2837), - [aux_sym_string_literal_token1] = ACTIONS(2837), - [sym_char_literal] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2839), - [anon_sym_false] = ACTIONS(2839), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2839), - [sym_super] = ACTIONS(2839), - [sym_crate] = ACTIONS(2839), - [sym_metavariable] = ACTIONS(2837), - [sym__raw_string_literal_start] = ACTIONS(2837), - [sym_float_literal] = ACTIONS(2837), - }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2841), - [sym_identifier] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_macro_rules_BANG] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_u8] = ACTIONS(2843), - [anon_sym_i8] = ACTIONS(2843), - [anon_sym_u16] = ACTIONS(2843), - [anon_sym_i16] = ACTIONS(2843), - [anon_sym_u32] = ACTIONS(2843), - [anon_sym_i32] = ACTIONS(2843), - [anon_sym_u64] = ACTIONS(2843), - [anon_sym_i64] = ACTIONS(2843), - [anon_sym_u128] = ACTIONS(2843), - [anon_sym_i128] = ACTIONS(2843), - [anon_sym_isize] = ACTIONS(2843), - [anon_sym_usize] = ACTIONS(2843), - [anon_sym_f32] = ACTIONS(2843), - [anon_sym_f64] = ACTIONS(2843), - [anon_sym_bool] = ACTIONS(2843), - [anon_sym_str] = ACTIONS(2843), - [anon_sym_char] = ACTIONS(2843), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_DOT_DOT] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_POUND] = ACTIONS(2841), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_async] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_enum] = ACTIONS(2843), - [anon_sym_fn] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_gen] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_impl] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2843), - [anon_sym_loop] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_mod] = ACTIONS(2843), - [anon_sym_pub] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2843), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_trait] = ACTIONS(2843), - [anon_sym_type] = ACTIONS(2843), - [anon_sym_union] = ACTIONS(2843), - [anon_sym_unsafe] = ACTIONS(2843), - [anon_sym_use] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_extern] = ACTIONS(2843), - [anon_sym_yield] = ACTIONS(2843), - [anon_sym_move] = ACTIONS(2843), - [anon_sym_try] = ACTIONS(2843), - [sym_integer_literal] = ACTIONS(2841), - [aux_sym_string_literal_token1] = ACTIONS(2841), - [sym_char_literal] = ACTIONS(2841), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2843), - [sym_super] = ACTIONS(2843), - [sym_crate] = ACTIONS(2843), - [sym_metavariable] = ACTIONS(2841), - [sym__raw_string_literal_start] = ACTIONS(2841), - [sym_float_literal] = ACTIONS(2841), - }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym_macro_rules_BANG] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_STAR] = ACTIONS(2845), - [anon_sym_u8] = ACTIONS(2847), - [anon_sym_i8] = ACTIONS(2847), - [anon_sym_u16] = ACTIONS(2847), - [anon_sym_i16] = ACTIONS(2847), - [anon_sym_u32] = ACTIONS(2847), - [anon_sym_i32] = ACTIONS(2847), - [anon_sym_u64] = ACTIONS(2847), - [anon_sym_i64] = ACTIONS(2847), - [anon_sym_u128] = ACTIONS(2847), - [anon_sym_i128] = ACTIONS(2847), - [anon_sym_isize] = ACTIONS(2847), - [anon_sym_usize] = ACTIONS(2847), - [anon_sym_f32] = ACTIONS(2847), - [anon_sym_f64] = ACTIONS(2847), - [anon_sym_bool] = ACTIONS(2847), - [anon_sym_str] = ACTIONS(2847), - [anon_sym_char] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_DOT_DOT] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_async] = ACTIONS(2847), - [anon_sym_break] = ACTIONS(2847), - [anon_sym_const] = ACTIONS(2847), - [anon_sym_continue] = ACTIONS(2847), - [anon_sym_default] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_fn] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_gen] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_impl] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2847), - [anon_sym_loop] = ACTIONS(2847), - [anon_sym_match] = ACTIONS(2847), - [anon_sym_mod] = ACTIONS(2847), - [anon_sym_pub] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_trait] = ACTIONS(2847), - [anon_sym_type] = ACTIONS(2847), - [anon_sym_union] = ACTIONS(2847), - [anon_sym_unsafe] = ACTIONS(2847), - [anon_sym_use] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_extern] = ACTIONS(2847), - [anon_sym_yield] = ACTIONS(2847), - [anon_sym_move] = ACTIONS(2847), - [anon_sym_try] = ACTIONS(2847), - [sym_integer_literal] = ACTIONS(2845), - [aux_sym_string_literal_token1] = ACTIONS(2845), - [sym_char_literal] = ACTIONS(2845), - [anon_sym_true] = ACTIONS(2847), - [anon_sym_false] = ACTIONS(2847), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2847), - [sym_super] = ACTIONS(2847), - [sym_crate] = ACTIONS(2847), - [sym_metavariable] = ACTIONS(2845), - [sym__raw_string_literal_start] = ACTIONS(2845), - [sym_float_literal] = ACTIONS(2845), - }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym_macro_rules_BANG] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2849), - [anon_sym_u8] = ACTIONS(2851), - [anon_sym_i8] = ACTIONS(2851), - [anon_sym_u16] = ACTIONS(2851), - [anon_sym_i16] = ACTIONS(2851), - [anon_sym_u32] = ACTIONS(2851), - [anon_sym_i32] = ACTIONS(2851), - [anon_sym_u64] = ACTIONS(2851), - [anon_sym_i64] = ACTIONS(2851), - [anon_sym_u128] = ACTIONS(2851), - [anon_sym_i128] = ACTIONS(2851), - [anon_sym_isize] = ACTIONS(2851), - [anon_sym_usize] = ACTIONS(2851), - [anon_sym_f32] = ACTIONS(2851), - [anon_sym_f64] = ACTIONS(2851), - [anon_sym_bool] = ACTIONS(2851), - [anon_sym_str] = ACTIONS(2851), - [anon_sym_char] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_DOT_DOT] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2849), - [anon_sym_POUND] = ACTIONS(2849), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_async] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_const] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_default] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_fn] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_gen] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_impl] = ACTIONS(2851), - [anon_sym_let] = ACTIONS(2851), - [anon_sym_loop] = ACTIONS(2851), - [anon_sym_match] = ACTIONS(2851), - [anon_sym_mod] = ACTIONS(2851), - [anon_sym_pub] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_trait] = ACTIONS(2851), - [anon_sym_type] = ACTIONS(2851), - [anon_sym_union] = ACTIONS(2851), - [anon_sym_unsafe] = ACTIONS(2851), - [anon_sym_use] = ACTIONS(2851), - [anon_sym_while] = ACTIONS(2851), - [anon_sym_extern] = ACTIONS(2851), - [anon_sym_yield] = ACTIONS(2851), - [anon_sym_move] = ACTIONS(2851), - [anon_sym_try] = ACTIONS(2851), - [sym_integer_literal] = ACTIONS(2849), - [aux_sym_string_literal_token1] = ACTIONS(2849), - [sym_char_literal] = ACTIONS(2849), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2851), - [sym_super] = ACTIONS(2851), - [sym_crate] = ACTIONS(2851), - [sym_metavariable] = ACTIONS(2849), - [sym__raw_string_literal_start] = ACTIONS(2849), - [sym_float_literal] = ACTIONS(2849), - }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym_macro_rules_BANG] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_u8] = ACTIONS(2855), - [anon_sym_i8] = ACTIONS(2855), - [anon_sym_u16] = ACTIONS(2855), - [anon_sym_i16] = ACTIONS(2855), - [anon_sym_u32] = ACTIONS(2855), - [anon_sym_i32] = ACTIONS(2855), - [anon_sym_u64] = ACTIONS(2855), - [anon_sym_i64] = ACTIONS(2855), - [anon_sym_u128] = ACTIONS(2855), - [anon_sym_i128] = ACTIONS(2855), - [anon_sym_isize] = ACTIONS(2855), - [anon_sym_usize] = ACTIONS(2855), - [anon_sym_f32] = ACTIONS(2855), - [anon_sym_f64] = ACTIONS(2855), - [anon_sym_bool] = ACTIONS(2855), - [anon_sym_str] = ACTIONS(2855), - [anon_sym_char] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_BANG] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_DOT_DOT] = ACTIONS(2853), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_POUND] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_gen] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_impl] = ACTIONS(2855), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_loop] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_mod] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_trait] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_use] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2855), - [anon_sym_extern] = ACTIONS(2855), - [anon_sym_yield] = ACTIONS(2855), - [anon_sym_move] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2855), - [sym_integer_literal] = ACTIONS(2853), - [aux_sym_string_literal_token1] = ACTIONS(2853), - [sym_char_literal] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2855), - [anon_sym_false] = ACTIONS(2855), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2855), - [sym_super] = ACTIONS(2855), - [sym_crate] = ACTIONS(2855), - [sym_metavariable] = ACTIONS(2853), - [sym__raw_string_literal_start] = ACTIONS(2853), - [sym_float_literal] = ACTIONS(2853), - }, - [736] = { + [STATE(736)] = { + [sym_empty_statement] = STATE(1314), + [sym_macro_definition] = STATE(1314), + [sym_attribute_item] = STATE(1314), + [sym_inner_attribute_item] = STATE(1314), + [sym_mod_item] = STATE(1314), + [sym_foreign_mod_item] = STATE(1314), + [sym_struct_item] = STATE(1314), + [sym_union_item] = STATE(1314), + [sym_enum_item] = STATE(1314), + [sym_extern_crate_declaration] = STATE(1314), + [sym_const_item] = STATE(1314), + [sym_static_item] = STATE(1314), + [sym_type_item] = STATE(1314), + [sym_function_item] = STATE(1314), + [sym_function_signature_item] = STATE(1314), + [sym_function_modifiers] = STATE(3640), + [sym_impl_item] = STATE(1314), + [sym_trait_item] = STATE(1314), + [sym_associated_type] = STATE(1314), + [sym_let_declaration] = STATE(1314), + [sym_use_declaration] = STATE(1314), + [sym_extern_modifier] = STATE(2199), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3370), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_macro_invocation] = STATE(1314), + [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2857), - [sym_identifier] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_macro_rules_BANG] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_u8] = ACTIONS(2859), - [anon_sym_i8] = ACTIONS(2859), - [anon_sym_u16] = ACTIONS(2859), - [anon_sym_i16] = ACTIONS(2859), - [anon_sym_u32] = ACTIONS(2859), - [anon_sym_i32] = ACTIONS(2859), - [anon_sym_u64] = ACTIONS(2859), - [anon_sym_i64] = ACTIONS(2859), - [anon_sym_u128] = ACTIONS(2859), - [anon_sym_i128] = ACTIONS(2859), - [anon_sym_isize] = ACTIONS(2859), - [anon_sym_usize] = ACTIONS(2859), - [anon_sym_f32] = ACTIONS(2859), - [anon_sym_f64] = ACTIONS(2859), - [anon_sym_bool] = ACTIONS(2859), - [anon_sym_str] = ACTIONS(2859), - [anon_sym_char] = ACTIONS(2859), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_AMP] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2857), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_DOT_DOT] = ACTIONS(2857), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_POUND] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2859), - [anon_sym_async] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_default] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_fn] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_gen] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_impl] = ACTIONS(2859), - [anon_sym_let] = ACTIONS(2859), - [anon_sym_loop] = ACTIONS(2859), - [anon_sym_match] = ACTIONS(2859), - [anon_sym_mod] = ACTIONS(2859), - [anon_sym_pub] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_trait] = ACTIONS(2859), - [anon_sym_type] = ACTIONS(2859), - [anon_sym_union] = ACTIONS(2859), - [anon_sym_unsafe] = ACTIONS(2859), - [anon_sym_use] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_extern] = ACTIONS(2859), - [anon_sym_yield] = ACTIONS(2859), - [anon_sym_move] = ACTIONS(2859), - [anon_sym_try] = ACTIONS(2859), - [sym_integer_literal] = ACTIONS(2857), - [aux_sym_string_literal_token1] = ACTIONS(2857), - [sym_char_literal] = ACTIONS(2857), - [anon_sym_true] = ACTIONS(2859), - [anon_sym_false] = ACTIONS(2859), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2859), - [sym_super] = ACTIONS(2859), - [sym_crate] = ACTIONS(2859), - [sym_metavariable] = ACTIONS(2857), - [sym__raw_string_literal_start] = ACTIONS(2857), - [sym_float_literal] = ACTIONS(2857), - }, - [737] = { + [aux_sym_declaration_list_repeat1] = STATE(760), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_gen] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2283), + }, + [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym_macro_rules_BANG] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_u8] = ACTIONS(2863), - [anon_sym_i8] = ACTIONS(2863), - [anon_sym_u16] = ACTIONS(2863), - [anon_sym_i16] = ACTIONS(2863), - [anon_sym_u32] = ACTIONS(2863), - [anon_sym_i32] = ACTIONS(2863), - [anon_sym_u64] = ACTIONS(2863), - [anon_sym_i64] = ACTIONS(2863), - [anon_sym_u128] = ACTIONS(2863), - [anon_sym_i128] = ACTIONS(2863), - [anon_sym_isize] = ACTIONS(2863), - [anon_sym_usize] = ACTIONS(2863), - [anon_sym_f32] = ACTIONS(2863), - [anon_sym_f64] = ACTIONS(2863), - [anon_sym_bool] = ACTIONS(2863), - [anon_sym_str] = ACTIONS(2863), - [anon_sym_char] = ACTIONS(2863), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_DOT_DOT] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_async] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_const] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_default] = ACTIONS(2863), - [anon_sym_enum] = ACTIONS(2863), - [anon_sym_fn] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_gen] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_impl] = ACTIONS(2863), - [anon_sym_let] = ACTIONS(2863), - [anon_sym_loop] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_mod] = ACTIONS(2863), - [anon_sym_pub] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_trait] = ACTIONS(2863), - [anon_sym_type] = ACTIONS(2863), - [anon_sym_union] = ACTIONS(2863), - [anon_sym_unsafe] = ACTIONS(2863), - [anon_sym_use] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_extern] = ACTIONS(2863), - [anon_sym_yield] = ACTIONS(2863), - [anon_sym_move] = ACTIONS(2863), - [anon_sym_try] = ACTIONS(2863), - [sym_integer_literal] = ACTIONS(2861), - [aux_sym_string_literal_token1] = ACTIONS(2861), - [sym_char_literal] = ACTIONS(2861), - [anon_sym_true] = ACTIONS(2863), - [anon_sym_false] = ACTIONS(2863), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2863), - [sym_super] = ACTIONS(2863), - [sym_crate] = ACTIONS(2863), - [sym_metavariable] = ACTIONS(2861), - [sym__raw_string_literal_start] = ACTIONS(2861), - [sym_float_literal] = ACTIONS(2861), - }, - [738] = { + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_macro_rules_BANG] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_u8] = ACTIONS(2789), + [anon_sym_i8] = ACTIONS(2789), + [anon_sym_u16] = ACTIONS(2789), + [anon_sym_i16] = ACTIONS(2789), + [anon_sym_u32] = ACTIONS(2789), + [anon_sym_i32] = ACTIONS(2789), + [anon_sym_u64] = ACTIONS(2789), + [anon_sym_i64] = ACTIONS(2789), + [anon_sym_u128] = ACTIONS(2789), + [anon_sym_i128] = ACTIONS(2789), + [anon_sym_isize] = ACTIONS(2789), + [anon_sym_usize] = ACTIONS(2789), + [anon_sym_f32] = ACTIONS(2789), + [anon_sym_f64] = ACTIONS(2789), + [anon_sym_bool] = ACTIONS(2789), + [anon_sym_str] = ACTIONS(2789), + [anon_sym_char] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_LT] = ACTIONS(2787), + [anon_sym_DOT_DOT] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_POUND] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_async] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_gen] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_impl] = ACTIONS(2789), + [anon_sym_let] = ACTIONS(2789), + [anon_sym_loop] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2789), + [anon_sym_mod] = ACTIONS(2789), + [anon_sym_pub] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_trait] = ACTIONS(2789), + [anon_sym_type] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(2789), + [anon_sym_use] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_yield] = ACTIONS(2789), + [anon_sym_move] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [sym_integer_literal] = ACTIONS(2787), + [aux_sym_string_literal_token1] = ACTIONS(2787), + [sym_char_literal] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2789), + [sym_super] = ACTIONS(2789), + [sym_crate] = ACTIONS(2789), + [sym_metavariable] = ACTIONS(2787), + [sym__raw_string_literal_start] = ACTIONS(2787), + [sym_float_literal] = ACTIONS(2787), + }, + [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2865), - [sym_identifier] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_macro_rules_BANG] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_u8] = ACTIONS(2867), - [anon_sym_i8] = ACTIONS(2867), - [anon_sym_u16] = ACTIONS(2867), - [anon_sym_i16] = ACTIONS(2867), - [anon_sym_u32] = ACTIONS(2867), - [anon_sym_i32] = ACTIONS(2867), - [anon_sym_u64] = ACTIONS(2867), - [anon_sym_i64] = ACTIONS(2867), - [anon_sym_u128] = ACTIONS(2867), - [anon_sym_i128] = ACTIONS(2867), - [anon_sym_isize] = ACTIONS(2867), - [anon_sym_usize] = ACTIONS(2867), - [anon_sym_f32] = ACTIONS(2867), - [anon_sym_f64] = ACTIONS(2867), - [anon_sym_bool] = ACTIONS(2867), - [anon_sym_str] = ACTIONS(2867), - [anon_sym_char] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_DOT_DOT] = ACTIONS(2865), - [anon_sym_COLON_COLON] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_async] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_default] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_gen] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_impl] = ACTIONS(2867), - [anon_sym_let] = ACTIONS(2867), - [anon_sym_loop] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2867), - [anon_sym_mod] = ACTIONS(2867), - [anon_sym_pub] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2867), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_trait] = ACTIONS(2867), - [anon_sym_type] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(2867), - [anon_sym_use] = ACTIONS(2867), - [anon_sym_while] = ACTIONS(2867), - [anon_sym_extern] = ACTIONS(2867), - [anon_sym_yield] = ACTIONS(2867), - [anon_sym_move] = ACTIONS(2867), - [anon_sym_try] = ACTIONS(2867), - [sym_integer_literal] = ACTIONS(2865), - [aux_sym_string_literal_token1] = ACTIONS(2865), - [sym_char_literal] = ACTIONS(2865), - [anon_sym_true] = ACTIONS(2867), - [anon_sym_false] = ACTIONS(2867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2867), - [sym_super] = ACTIONS(2867), - [sym_crate] = ACTIONS(2867), - [sym_metavariable] = ACTIONS(2865), - [sym__raw_string_literal_start] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - }, - [739] = { + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_macro_rules_BANG] = ACTIONS(2791), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_u8] = ACTIONS(2793), + [anon_sym_i8] = ACTIONS(2793), + [anon_sym_u16] = ACTIONS(2793), + [anon_sym_i16] = ACTIONS(2793), + [anon_sym_u32] = ACTIONS(2793), + [anon_sym_i32] = ACTIONS(2793), + [anon_sym_u64] = ACTIONS(2793), + [anon_sym_i64] = ACTIONS(2793), + [anon_sym_u128] = ACTIONS(2793), + [anon_sym_i128] = ACTIONS(2793), + [anon_sym_isize] = ACTIONS(2793), + [anon_sym_usize] = ACTIONS(2793), + [anon_sym_f32] = ACTIONS(2793), + [anon_sym_f64] = ACTIONS(2793), + [anon_sym_bool] = ACTIONS(2793), + [anon_sym_str] = ACTIONS(2793), + [anon_sym_char] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2791), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_DOT_DOT] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_POUND] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_gen] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_impl] = ACTIONS(2793), + [anon_sym_let] = ACTIONS(2793), + [anon_sym_loop] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_mod] = ACTIONS(2793), + [anon_sym_pub] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_trait] = ACTIONS(2793), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_unsafe] = ACTIONS(2793), + [anon_sym_use] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym_yield] = ACTIONS(2793), + [anon_sym_move] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [sym_integer_literal] = ACTIONS(2791), + [aux_sym_string_literal_token1] = ACTIONS(2791), + [sym_char_literal] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(2793), + [anon_sym_false] = ACTIONS(2793), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2793), + [sym_super] = ACTIONS(2793), + [sym_crate] = ACTIONS(2793), + [sym_metavariable] = ACTIONS(2791), + [sym__raw_string_literal_start] = ACTIONS(2791), + [sym_float_literal] = ACTIONS(2791), + }, + [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_macro_rules_BANG] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_u8] = ACTIONS(2871), - [anon_sym_i8] = ACTIONS(2871), - [anon_sym_u16] = ACTIONS(2871), - [anon_sym_i16] = ACTIONS(2871), - [anon_sym_u32] = ACTIONS(2871), - [anon_sym_i32] = ACTIONS(2871), - [anon_sym_u64] = ACTIONS(2871), - [anon_sym_i64] = ACTIONS(2871), - [anon_sym_u128] = ACTIONS(2871), - [anon_sym_i128] = ACTIONS(2871), - [anon_sym_isize] = ACTIONS(2871), - [anon_sym_usize] = ACTIONS(2871), - [anon_sym_f32] = ACTIONS(2871), - [anon_sym_f64] = ACTIONS(2871), - [anon_sym_bool] = ACTIONS(2871), - [anon_sym_str] = ACTIONS(2871), - [anon_sym_char] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_DOT_DOT] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_async] = ACTIONS(2871), - [anon_sym_break] = ACTIONS(2871), - [anon_sym_const] = ACTIONS(2871), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_default] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2871), - [anon_sym_fn] = ACTIONS(2871), - [anon_sym_for] = ACTIONS(2871), - [anon_sym_gen] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2871), - [anon_sym_impl] = ACTIONS(2871), - [anon_sym_let] = ACTIONS(2871), - [anon_sym_loop] = ACTIONS(2871), - [anon_sym_match] = ACTIONS(2871), - [anon_sym_mod] = ACTIONS(2871), - [anon_sym_pub] = ACTIONS(2871), - [anon_sym_return] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2871), - [anon_sym_trait] = ACTIONS(2871), - [anon_sym_type] = ACTIONS(2871), - [anon_sym_union] = ACTIONS(2871), - [anon_sym_unsafe] = ACTIONS(2871), - [anon_sym_use] = ACTIONS(2871), - [anon_sym_while] = ACTIONS(2871), - [anon_sym_extern] = ACTIONS(2871), - [anon_sym_yield] = ACTIONS(2871), - [anon_sym_move] = ACTIONS(2871), - [anon_sym_try] = ACTIONS(2871), - [sym_integer_literal] = ACTIONS(2869), - [aux_sym_string_literal_token1] = ACTIONS(2869), - [sym_char_literal] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2871), - [anon_sym_false] = ACTIONS(2871), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2871), - [sym_super] = ACTIONS(2871), - [sym_crate] = ACTIONS(2871), - [sym_metavariable] = ACTIONS(2869), - [sym__raw_string_literal_start] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - }, - [740] = { + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_macro_rules_BANG] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_u8] = ACTIONS(2797), + [anon_sym_i8] = ACTIONS(2797), + [anon_sym_u16] = ACTIONS(2797), + [anon_sym_i16] = ACTIONS(2797), + [anon_sym_u32] = ACTIONS(2797), + [anon_sym_i32] = ACTIONS(2797), + [anon_sym_u64] = ACTIONS(2797), + [anon_sym_i64] = ACTIONS(2797), + [anon_sym_u128] = ACTIONS(2797), + [anon_sym_i128] = ACTIONS(2797), + [anon_sym_isize] = ACTIONS(2797), + [anon_sym_usize] = ACTIONS(2797), + [anon_sym_f32] = ACTIONS(2797), + [anon_sym_f64] = ACTIONS(2797), + [anon_sym_bool] = ACTIONS(2797), + [anon_sym_str] = ACTIONS(2797), + [anon_sym_char] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_DOT_DOT] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_POUND] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_fn] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_gen] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_impl] = ACTIONS(2797), + [anon_sym_let] = ACTIONS(2797), + [anon_sym_loop] = ACTIONS(2797), + [anon_sym_match] = ACTIONS(2797), + [anon_sym_mod] = ACTIONS(2797), + [anon_sym_pub] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_trait] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_unsafe] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_move] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [sym_integer_literal] = ACTIONS(2795), + [aux_sym_string_literal_token1] = ACTIONS(2795), + [sym_char_literal] = ACTIONS(2795), + [anon_sym_true] = ACTIONS(2797), + [anon_sym_false] = ACTIONS(2797), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2797), + [sym_super] = ACTIONS(2797), + [sym_crate] = ACTIONS(2797), + [sym_metavariable] = ACTIONS(2795), + [sym__raw_string_literal_start] = ACTIONS(2795), + [sym_float_literal] = ACTIONS(2795), + }, + [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2873), - [sym_identifier] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_macro_rules_BANG] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_u8] = ACTIONS(2875), - [anon_sym_i8] = ACTIONS(2875), - [anon_sym_u16] = ACTIONS(2875), - [anon_sym_i16] = ACTIONS(2875), - [anon_sym_u32] = ACTIONS(2875), - [anon_sym_i32] = ACTIONS(2875), - [anon_sym_u64] = ACTIONS(2875), - [anon_sym_i64] = ACTIONS(2875), - [anon_sym_u128] = ACTIONS(2875), - [anon_sym_i128] = ACTIONS(2875), - [anon_sym_isize] = ACTIONS(2875), - [anon_sym_usize] = ACTIONS(2875), - [anon_sym_f32] = ACTIONS(2875), - [anon_sym_f64] = ACTIONS(2875), - [anon_sym_bool] = ACTIONS(2875), - [anon_sym_str] = ACTIONS(2875), - [anon_sym_char] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_DOT_DOT] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_async] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_const] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_default] = ACTIONS(2875), - [anon_sym_enum] = ACTIONS(2875), - [anon_sym_fn] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_gen] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_impl] = ACTIONS(2875), - [anon_sym_let] = ACTIONS(2875), - [anon_sym_loop] = ACTIONS(2875), - [anon_sym_match] = ACTIONS(2875), - [anon_sym_mod] = ACTIONS(2875), - [anon_sym_pub] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_static] = ACTIONS(2875), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_trait] = ACTIONS(2875), - [anon_sym_type] = ACTIONS(2875), - [anon_sym_union] = ACTIONS(2875), - [anon_sym_unsafe] = ACTIONS(2875), - [anon_sym_use] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_extern] = ACTIONS(2875), - [anon_sym_yield] = ACTIONS(2875), - [anon_sym_move] = ACTIONS(2875), - [anon_sym_try] = ACTIONS(2875), - [sym_integer_literal] = ACTIONS(2873), - [aux_sym_string_literal_token1] = ACTIONS(2873), - [sym_char_literal] = ACTIONS(2873), - [anon_sym_true] = ACTIONS(2875), - [anon_sym_false] = ACTIONS(2875), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2875), - [sym_super] = ACTIONS(2875), - [sym_crate] = ACTIONS(2875), - [sym_metavariable] = ACTIONS(2873), - [sym__raw_string_literal_start] = ACTIONS(2873), - [sym_float_literal] = ACTIONS(2873), - }, - [741] = { + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_macro_rules_BANG] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_u8] = ACTIONS(2801), + [anon_sym_i8] = ACTIONS(2801), + [anon_sym_u16] = ACTIONS(2801), + [anon_sym_i16] = ACTIONS(2801), + [anon_sym_u32] = ACTIONS(2801), + [anon_sym_i32] = ACTIONS(2801), + [anon_sym_u64] = ACTIONS(2801), + [anon_sym_i64] = ACTIONS(2801), + [anon_sym_u128] = ACTIONS(2801), + [anon_sym_i128] = ACTIONS(2801), + [anon_sym_isize] = ACTIONS(2801), + [anon_sym_usize] = ACTIONS(2801), + [anon_sym_f32] = ACTIONS(2801), + [anon_sym_f64] = ACTIONS(2801), + [anon_sym_bool] = ACTIONS(2801), + [anon_sym_str] = ACTIONS(2801), + [anon_sym_char] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_DOT_DOT] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_POUND] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_fn] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_gen] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_impl] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_loop] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_mod] = ACTIONS(2801), + [anon_sym_pub] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_trait] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2801), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_move] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [sym_integer_literal] = ACTIONS(2799), + [aux_sym_string_literal_token1] = ACTIONS(2799), + [sym_char_literal] = ACTIONS(2799), + [anon_sym_true] = ACTIONS(2801), + [anon_sym_false] = ACTIONS(2801), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2801), + [sym_super] = ACTIONS(2801), + [sym_crate] = ACTIONS(2801), + [sym_metavariable] = ACTIONS(2799), + [sym__raw_string_literal_start] = ACTIONS(2799), + [sym_float_literal] = ACTIONS(2799), + }, + [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2877), - [sym_identifier] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_macro_rules_BANG] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_u8] = ACTIONS(2879), - [anon_sym_i8] = ACTIONS(2879), - [anon_sym_u16] = ACTIONS(2879), - [anon_sym_i16] = ACTIONS(2879), - [anon_sym_u32] = ACTIONS(2879), - [anon_sym_i32] = ACTIONS(2879), - [anon_sym_u64] = ACTIONS(2879), - [anon_sym_i64] = ACTIONS(2879), - [anon_sym_u128] = ACTIONS(2879), - [anon_sym_i128] = ACTIONS(2879), - [anon_sym_isize] = ACTIONS(2879), - [anon_sym_usize] = ACTIONS(2879), - [anon_sym_f32] = ACTIONS(2879), - [anon_sym_f64] = ACTIONS(2879), - [anon_sym_bool] = ACTIONS(2879), - [anon_sym_str] = ACTIONS(2879), - [anon_sym_char] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_DOT_DOT] = ACTIONS(2877), - [anon_sym_COLON_COLON] = ACTIONS(2877), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_async] = ACTIONS(2879), - [anon_sym_break] = ACTIONS(2879), - [anon_sym_const] = ACTIONS(2879), - [anon_sym_continue] = ACTIONS(2879), - [anon_sym_default] = ACTIONS(2879), - [anon_sym_enum] = ACTIONS(2879), - [anon_sym_fn] = ACTIONS(2879), - [anon_sym_for] = ACTIONS(2879), - [anon_sym_gen] = ACTIONS(2879), - [anon_sym_if] = ACTIONS(2879), - [anon_sym_impl] = ACTIONS(2879), - [anon_sym_let] = ACTIONS(2879), - [anon_sym_loop] = ACTIONS(2879), - [anon_sym_match] = ACTIONS(2879), - [anon_sym_mod] = ACTIONS(2879), - [anon_sym_pub] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2879), - [anon_sym_static] = ACTIONS(2879), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_trait] = ACTIONS(2879), - [anon_sym_type] = ACTIONS(2879), - [anon_sym_union] = ACTIONS(2879), - [anon_sym_unsafe] = ACTIONS(2879), - [anon_sym_use] = ACTIONS(2879), - [anon_sym_while] = ACTIONS(2879), - [anon_sym_extern] = ACTIONS(2879), - [anon_sym_yield] = ACTIONS(2879), - [anon_sym_move] = ACTIONS(2879), - [anon_sym_try] = ACTIONS(2879), - [sym_integer_literal] = ACTIONS(2877), - [aux_sym_string_literal_token1] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), - [anon_sym_true] = ACTIONS(2879), - [anon_sym_false] = ACTIONS(2879), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2879), - [sym_super] = ACTIONS(2879), - [sym_crate] = ACTIONS(2879), - [sym_metavariable] = ACTIONS(2877), - [sym__raw_string_literal_start] = ACTIONS(2877), - [sym_float_literal] = ACTIONS(2877), - }, - [742] = { + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_macro_rules_BANG] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_u8] = ACTIONS(2805), + [anon_sym_i8] = ACTIONS(2805), + [anon_sym_u16] = ACTIONS(2805), + [anon_sym_i16] = ACTIONS(2805), + [anon_sym_u32] = ACTIONS(2805), + [anon_sym_i32] = ACTIONS(2805), + [anon_sym_u64] = ACTIONS(2805), + [anon_sym_i64] = ACTIONS(2805), + [anon_sym_u128] = ACTIONS(2805), + [anon_sym_i128] = ACTIONS(2805), + [anon_sym_isize] = ACTIONS(2805), + [anon_sym_usize] = ACTIONS(2805), + [anon_sym_f32] = ACTIONS(2805), + [anon_sym_f64] = ACTIONS(2805), + [anon_sym_bool] = ACTIONS(2805), + [anon_sym_str] = ACTIONS(2805), + [anon_sym_char] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_DOT_DOT] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_POUND] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_async] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_fn] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_gen] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_impl] = ACTIONS(2805), + [anon_sym_let] = ACTIONS(2805), + [anon_sym_loop] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_mod] = ACTIONS(2805), + [anon_sym_pub] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_trait] = ACTIONS(2805), + [anon_sym_type] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_unsafe] = ACTIONS(2805), + [anon_sym_use] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym_yield] = ACTIONS(2805), + [anon_sym_move] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [sym_integer_literal] = ACTIONS(2803), + [aux_sym_string_literal_token1] = ACTIONS(2803), + [sym_char_literal] = ACTIONS(2803), + [anon_sym_true] = ACTIONS(2805), + [anon_sym_false] = ACTIONS(2805), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2805), + [sym_super] = ACTIONS(2805), + [sym_crate] = ACTIONS(2805), + [sym_metavariable] = ACTIONS(2803), + [sym__raw_string_literal_start] = ACTIONS(2803), + [sym_float_literal] = ACTIONS(2803), + }, + [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_macro_rules_BANG] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_u8] = ACTIONS(2883), - [anon_sym_i8] = ACTIONS(2883), - [anon_sym_u16] = ACTIONS(2883), - [anon_sym_i16] = ACTIONS(2883), - [anon_sym_u32] = ACTIONS(2883), - [anon_sym_i32] = ACTIONS(2883), - [anon_sym_u64] = ACTIONS(2883), - [anon_sym_i64] = ACTIONS(2883), - [anon_sym_u128] = ACTIONS(2883), - [anon_sym_i128] = ACTIONS(2883), - [anon_sym_isize] = ACTIONS(2883), - [anon_sym_usize] = ACTIONS(2883), - [anon_sym_f32] = ACTIONS(2883), - [anon_sym_f64] = ACTIONS(2883), - [anon_sym_bool] = ACTIONS(2883), - [anon_sym_str] = ACTIONS(2883), - [anon_sym_char] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_DOT_DOT] = ACTIONS(2881), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_POUND] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_async] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_default] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_gen] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_impl] = ACTIONS(2883), - [anon_sym_let] = ACTIONS(2883), - [anon_sym_loop] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_mod] = ACTIONS(2883), - [anon_sym_pub] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2883), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_trait] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_use] = ACTIONS(2883), - [anon_sym_while] = ACTIONS(2883), - [anon_sym_extern] = ACTIONS(2883), - [anon_sym_yield] = ACTIONS(2883), - [anon_sym_move] = ACTIONS(2883), - [anon_sym_try] = ACTIONS(2883), - [sym_integer_literal] = ACTIONS(2881), - [aux_sym_string_literal_token1] = ACTIONS(2881), - [sym_char_literal] = ACTIONS(2881), - [anon_sym_true] = ACTIONS(2883), - [anon_sym_false] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2883), - [sym_super] = ACTIONS(2883), - [sym_crate] = ACTIONS(2883), - [sym_metavariable] = ACTIONS(2881), - [sym__raw_string_literal_start] = ACTIONS(2881), - [sym_float_literal] = ACTIONS(2881), - }, - [743] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_macro_rules_BANG] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_u8] = ACTIONS(2809), + [anon_sym_i8] = ACTIONS(2809), + [anon_sym_u16] = ACTIONS(2809), + [anon_sym_i16] = ACTIONS(2809), + [anon_sym_u32] = ACTIONS(2809), + [anon_sym_i32] = ACTIONS(2809), + [anon_sym_u64] = ACTIONS(2809), + [anon_sym_i64] = ACTIONS(2809), + [anon_sym_u128] = ACTIONS(2809), + [anon_sym_i128] = ACTIONS(2809), + [anon_sym_isize] = ACTIONS(2809), + [anon_sym_usize] = ACTIONS(2809), + [anon_sym_f32] = ACTIONS(2809), + [anon_sym_f64] = ACTIONS(2809), + [anon_sym_bool] = ACTIONS(2809), + [anon_sym_str] = ACTIONS(2809), + [anon_sym_char] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2807), + [anon_sym_DOT_DOT] = ACTIONS(2807), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_POUND] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_async] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_fn] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_gen] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_impl] = ACTIONS(2809), + [anon_sym_let] = ACTIONS(2809), + [anon_sym_loop] = ACTIONS(2809), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_mod] = ACTIONS(2809), + [anon_sym_pub] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_trait] = ACTIONS(2809), + [anon_sym_type] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_unsafe] = ACTIONS(2809), + [anon_sym_use] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym_yield] = ACTIONS(2809), + [anon_sym_move] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [sym_integer_literal] = ACTIONS(2807), + [aux_sym_string_literal_token1] = ACTIONS(2807), + [sym_char_literal] = ACTIONS(2807), + [anon_sym_true] = ACTIONS(2809), + [anon_sym_false] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2809), + [sym_super] = ACTIONS(2809), + [sym_crate] = ACTIONS(2809), + [sym_metavariable] = ACTIONS(2807), + [sym__raw_string_literal_start] = ACTIONS(2807), + [sym_float_literal] = ACTIONS(2807), + }, + [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_macro_rules_BANG] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_u8] = ACTIONS(2887), - [anon_sym_i8] = ACTIONS(2887), - [anon_sym_u16] = ACTIONS(2887), - [anon_sym_i16] = ACTIONS(2887), - [anon_sym_u32] = ACTIONS(2887), - [anon_sym_i32] = ACTIONS(2887), - [anon_sym_u64] = ACTIONS(2887), - [anon_sym_i64] = ACTIONS(2887), - [anon_sym_u128] = ACTIONS(2887), - [anon_sym_i128] = ACTIONS(2887), - [anon_sym_isize] = ACTIONS(2887), - [anon_sym_usize] = ACTIONS(2887), - [anon_sym_f32] = ACTIONS(2887), - [anon_sym_f64] = ACTIONS(2887), - [anon_sym_bool] = ACTIONS(2887), - [anon_sym_str] = ACTIONS(2887), - [anon_sym_char] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_DOT_DOT] = ACTIONS(2885), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_POUND] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_async] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_default] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_gen] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_impl] = ACTIONS(2887), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_loop] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_mod] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2887), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_trait] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_use] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_extern] = ACTIONS(2887), - [anon_sym_yield] = ACTIONS(2887), - [anon_sym_move] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [sym_integer_literal] = ACTIONS(2885), - [aux_sym_string_literal_token1] = ACTIONS(2885), - [sym_char_literal] = ACTIONS(2885), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2887), - [sym_super] = ACTIONS(2887), - [sym_crate] = ACTIONS(2887), - [sym_metavariable] = ACTIONS(2885), - [sym__raw_string_literal_start] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2885), - }, - [744] = { + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_macro_rules_BANG] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_u8] = ACTIONS(2813), + [anon_sym_i8] = ACTIONS(2813), + [anon_sym_u16] = ACTIONS(2813), + [anon_sym_i16] = ACTIONS(2813), + [anon_sym_u32] = ACTIONS(2813), + [anon_sym_i32] = ACTIONS(2813), + [anon_sym_u64] = ACTIONS(2813), + [anon_sym_i64] = ACTIONS(2813), + [anon_sym_u128] = ACTIONS(2813), + [anon_sym_i128] = ACTIONS(2813), + [anon_sym_isize] = ACTIONS(2813), + [anon_sym_usize] = ACTIONS(2813), + [anon_sym_f32] = ACTIONS(2813), + [anon_sym_f64] = ACTIONS(2813), + [anon_sym_bool] = ACTIONS(2813), + [anon_sym_str] = ACTIONS(2813), + [anon_sym_char] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_PIPE] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_DOT_DOT] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_POUND] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_async] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_fn] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_gen] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_impl] = ACTIONS(2813), + [anon_sym_let] = ACTIONS(2813), + [anon_sym_loop] = ACTIONS(2813), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_mod] = ACTIONS(2813), + [anon_sym_pub] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_trait] = ACTIONS(2813), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_unsafe] = ACTIONS(2813), + [anon_sym_use] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym_yield] = ACTIONS(2813), + [anon_sym_move] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [sym_integer_literal] = ACTIONS(2811), + [aux_sym_string_literal_token1] = ACTIONS(2811), + [sym_char_literal] = ACTIONS(2811), + [anon_sym_true] = ACTIONS(2813), + [anon_sym_false] = ACTIONS(2813), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2813), + [sym_super] = ACTIONS(2813), + [sym_crate] = ACTIONS(2813), + [sym_metavariable] = ACTIONS(2811), + [sym__raw_string_literal_start] = ACTIONS(2811), + [sym_float_literal] = ACTIONS(2811), + }, + [STATE(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym_macro_rules_BANG] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_u8] = ACTIONS(2891), - [anon_sym_i8] = ACTIONS(2891), - [anon_sym_u16] = ACTIONS(2891), - [anon_sym_i16] = ACTIONS(2891), - [anon_sym_u32] = ACTIONS(2891), - [anon_sym_i32] = ACTIONS(2891), - [anon_sym_u64] = ACTIONS(2891), - [anon_sym_i64] = ACTIONS(2891), - [anon_sym_u128] = ACTIONS(2891), - [anon_sym_i128] = ACTIONS(2891), - [anon_sym_isize] = ACTIONS(2891), - [anon_sym_usize] = ACTIONS(2891), - [anon_sym_f32] = ACTIONS(2891), - [anon_sym_f64] = ACTIONS(2891), - [anon_sym_bool] = ACTIONS(2891), - [anon_sym_str] = ACTIONS(2891), - [anon_sym_char] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_DOT_DOT] = ACTIONS(2889), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_POUND] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_async] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_default] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_gen] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_impl] = ACTIONS(2891), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_loop] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_mod] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2891), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_trait] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_use] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_extern] = ACTIONS(2891), - [anon_sym_yield] = ACTIONS(2891), - [anon_sym_move] = ACTIONS(2891), - [anon_sym_try] = ACTIONS(2891), - [sym_integer_literal] = ACTIONS(2889), - [aux_sym_string_literal_token1] = ACTIONS(2889), - [sym_char_literal] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2891), - [sym_super] = ACTIONS(2891), - [sym_crate] = ACTIONS(2891), - [sym_metavariable] = ACTIONS(2889), - [sym__raw_string_literal_start] = ACTIONS(2889), - [sym_float_literal] = ACTIONS(2889), - }, - [745] = { + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_macro_rules_BANG] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_RBRACE] = ACTIONS(2815), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_u8] = ACTIONS(2817), + [anon_sym_i8] = ACTIONS(2817), + [anon_sym_u16] = ACTIONS(2817), + [anon_sym_i16] = ACTIONS(2817), + [anon_sym_u32] = ACTIONS(2817), + [anon_sym_i32] = ACTIONS(2817), + [anon_sym_u64] = ACTIONS(2817), + [anon_sym_i64] = ACTIONS(2817), + [anon_sym_u128] = ACTIONS(2817), + [anon_sym_i128] = ACTIONS(2817), + [anon_sym_isize] = ACTIONS(2817), + [anon_sym_usize] = ACTIONS(2817), + [anon_sym_f32] = ACTIONS(2817), + [anon_sym_f64] = ACTIONS(2817), + [anon_sym_bool] = ACTIONS(2817), + [anon_sym_str] = ACTIONS(2817), + [anon_sym_char] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(2815), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_POUND] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_async] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_fn] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_gen] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_impl] = ACTIONS(2817), + [anon_sym_let] = ACTIONS(2817), + [anon_sym_loop] = ACTIONS(2817), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_mod] = ACTIONS(2817), + [anon_sym_pub] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_trait] = ACTIONS(2817), + [anon_sym_type] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_unsafe] = ACTIONS(2817), + [anon_sym_use] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym_yield] = ACTIONS(2817), + [anon_sym_move] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [sym_integer_literal] = ACTIONS(2815), + [aux_sym_string_literal_token1] = ACTIONS(2815), + [sym_char_literal] = ACTIONS(2815), + [anon_sym_true] = ACTIONS(2817), + [anon_sym_false] = ACTIONS(2817), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2817), + [sym_super] = ACTIONS(2817), + [sym_crate] = ACTIONS(2817), + [sym_metavariable] = ACTIONS(2815), + [sym__raw_string_literal_start] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2815), + }, + [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym_macro_rules_BANG] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_u8] = ACTIONS(2895), - [anon_sym_i8] = ACTIONS(2895), - [anon_sym_u16] = ACTIONS(2895), - [anon_sym_i16] = ACTIONS(2895), - [anon_sym_u32] = ACTIONS(2895), - [anon_sym_i32] = ACTIONS(2895), - [anon_sym_u64] = ACTIONS(2895), - [anon_sym_i64] = ACTIONS(2895), - [anon_sym_u128] = ACTIONS(2895), - [anon_sym_i128] = ACTIONS(2895), - [anon_sym_isize] = ACTIONS(2895), - [anon_sym_usize] = ACTIONS(2895), - [anon_sym_f32] = ACTIONS(2895), - [anon_sym_f64] = ACTIONS(2895), - [anon_sym_bool] = ACTIONS(2895), - [anon_sym_str] = ACTIONS(2895), - [anon_sym_char] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2893), - [anon_sym_DOT_DOT] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_POUND] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_async] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_default] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_gen] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_impl] = ACTIONS(2895), - [anon_sym_let] = ACTIONS(2895), - [anon_sym_loop] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_mod] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_static] = ACTIONS(2895), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_trait] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_use] = ACTIONS(2895), - [anon_sym_while] = ACTIONS(2895), - [anon_sym_extern] = ACTIONS(2895), - [anon_sym_yield] = ACTIONS(2895), - [anon_sym_move] = ACTIONS(2895), - [anon_sym_try] = ACTIONS(2895), - [sym_integer_literal] = ACTIONS(2893), - [aux_sym_string_literal_token1] = ACTIONS(2893), - [sym_char_literal] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2895), - [sym_super] = ACTIONS(2895), - [sym_crate] = ACTIONS(2895), - [sym_metavariable] = ACTIONS(2893), - [sym__raw_string_literal_start] = ACTIONS(2893), - [sym_float_literal] = ACTIONS(2893), - }, - [746] = { + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_macro_rules_BANG] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_u8] = ACTIONS(2821), + [anon_sym_i8] = ACTIONS(2821), + [anon_sym_u16] = ACTIONS(2821), + [anon_sym_i16] = ACTIONS(2821), + [anon_sym_u32] = ACTIONS(2821), + [anon_sym_i32] = ACTIONS(2821), + [anon_sym_u64] = ACTIONS(2821), + [anon_sym_i64] = ACTIONS(2821), + [anon_sym_u128] = ACTIONS(2821), + [anon_sym_i128] = ACTIONS(2821), + [anon_sym_isize] = ACTIONS(2821), + [anon_sym_usize] = ACTIONS(2821), + [anon_sym_f32] = ACTIONS(2821), + [anon_sym_f64] = ACTIONS(2821), + [anon_sym_bool] = ACTIONS(2821), + [anon_sym_str] = ACTIONS(2821), + [anon_sym_char] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_DOT_DOT] = ACTIONS(2819), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_POUND] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_async] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_gen] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_impl] = ACTIONS(2821), + [anon_sym_let] = ACTIONS(2821), + [anon_sym_loop] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_mod] = ACTIONS(2821), + [anon_sym_pub] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_trait] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_use] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2821), + [anon_sym_move] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [sym_integer_literal] = ACTIONS(2819), + [aux_sym_string_literal_token1] = ACTIONS(2819), + [sym_char_literal] = ACTIONS(2819), + [anon_sym_true] = ACTIONS(2821), + [anon_sym_false] = ACTIONS(2821), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2821), + [sym_super] = ACTIONS(2821), + [sym_crate] = ACTIONS(2821), + [sym_metavariable] = ACTIONS(2819), + [sym__raw_string_literal_start] = ACTIONS(2819), + [sym_float_literal] = ACTIONS(2819), + }, + [STATE(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_macro_rules_BANG] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_u8] = ACTIONS(2899), - [anon_sym_i8] = ACTIONS(2899), - [anon_sym_u16] = ACTIONS(2899), - [anon_sym_i16] = ACTIONS(2899), - [anon_sym_u32] = ACTIONS(2899), - [anon_sym_i32] = ACTIONS(2899), - [anon_sym_u64] = ACTIONS(2899), - [anon_sym_i64] = ACTIONS(2899), - [anon_sym_u128] = ACTIONS(2899), - [anon_sym_i128] = ACTIONS(2899), - [anon_sym_isize] = ACTIONS(2899), - [anon_sym_usize] = ACTIONS(2899), - [anon_sym_f32] = ACTIONS(2899), - [anon_sym_f64] = ACTIONS(2899), - [anon_sym_bool] = ACTIONS(2899), - [anon_sym_str] = ACTIONS(2899), - [anon_sym_char] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_DOT_DOT] = ACTIONS(2897), - [anon_sym_COLON_COLON] = ACTIONS(2897), - [anon_sym_POUND] = ACTIONS(2897), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_default] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_gen] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_impl] = ACTIONS(2899), - [anon_sym_let] = ACTIONS(2899), - [anon_sym_loop] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_mod] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_static] = ACTIONS(2899), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_trait] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_use] = ACTIONS(2899), - [anon_sym_while] = ACTIONS(2899), - [anon_sym_extern] = ACTIONS(2899), - [anon_sym_yield] = ACTIONS(2899), - [anon_sym_move] = ACTIONS(2899), - [anon_sym_try] = ACTIONS(2899), - [sym_integer_literal] = ACTIONS(2897), - [aux_sym_string_literal_token1] = ACTIONS(2897), - [sym_char_literal] = ACTIONS(2897), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2899), - [sym_super] = ACTIONS(2899), - [sym_crate] = ACTIONS(2899), - [sym_metavariable] = ACTIONS(2897), - [sym__raw_string_literal_start] = ACTIONS(2897), - [sym_float_literal] = ACTIONS(2897), - }, - [747] = { + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_macro_rules_BANG] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_u8] = ACTIONS(2825), + [anon_sym_i8] = ACTIONS(2825), + [anon_sym_u16] = ACTIONS(2825), + [anon_sym_i16] = ACTIONS(2825), + [anon_sym_u32] = ACTIONS(2825), + [anon_sym_i32] = ACTIONS(2825), + [anon_sym_u64] = ACTIONS(2825), + [anon_sym_i64] = ACTIONS(2825), + [anon_sym_u128] = ACTIONS(2825), + [anon_sym_i128] = ACTIONS(2825), + [anon_sym_isize] = ACTIONS(2825), + [anon_sym_usize] = ACTIONS(2825), + [anon_sym_f32] = ACTIONS(2825), + [anon_sym_f64] = ACTIONS(2825), + [anon_sym_bool] = ACTIONS(2825), + [anon_sym_str] = ACTIONS(2825), + [anon_sym_char] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_PIPE] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_DOT_DOT] = ACTIONS(2823), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_POUND] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2825), + [anon_sym_async] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_fn] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_gen] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_impl] = ACTIONS(2825), + [anon_sym_let] = ACTIONS(2825), + [anon_sym_loop] = ACTIONS(2825), + [anon_sym_match] = ACTIONS(2825), + [anon_sym_mod] = ACTIONS(2825), + [anon_sym_pub] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_trait] = ACTIONS(2825), + [anon_sym_type] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2825), + [anon_sym_use] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym_yield] = ACTIONS(2825), + [anon_sym_move] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [sym_integer_literal] = ACTIONS(2823), + [aux_sym_string_literal_token1] = ACTIONS(2823), + [sym_char_literal] = ACTIONS(2823), + [anon_sym_true] = ACTIONS(2825), + [anon_sym_false] = ACTIONS(2825), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2825), + [sym_super] = ACTIONS(2825), + [sym_crate] = ACTIONS(2825), + [sym_metavariable] = ACTIONS(2823), + [sym__raw_string_literal_start] = ACTIONS(2823), + [sym_float_literal] = ACTIONS(2823), + }, + [STATE(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym_macro_rules_BANG] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_u8] = ACTIONS(2903), - [anon_sym_i8] = ACTIONS(2903), - [anon_sym_u16] = ACTIONS(2903), - [anon_sym_i16] = ACTIONS(2903), - [anon_sym_u32] = ACTIONS(2903), - [anon_sym_i32] = ACTIONS(2903), - [anon_sym_u64] = ACTIONS(2903), - [anon_sym_i64] = ACTIONS(2903), - [anon_sym_u128] = ACTIONS(2903), - [anon_sym_i128] = ACTIONS(2903), - [anon_sym_isize] = ACTIONS(2903), - [anon_sym_usize] = ACTIONS(2903), - [anon_sym_f32] = ACTIONS(2903), - [anon_sym_f64] = ACTIONS(2903), - [anon_sym_bool] = ACTIONS(2903), - [anon_sym_str] = ACTIONS(2903), - [anon_sym_char] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2901), - [anon_sym_DOT_DOT] = ACTIONS(2901), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_POUND] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_async] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_default] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_gen] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_impl] = ACTIONS(2903), - [anon_sym_let] = ACTIONS(2903), - [anon_sym_loop] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_mod] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_trait] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_use] = ACTIONS(2903), - [anon_sym_while] = ACTIONS(2903), - [anon_sym_extern] = ACTIONS(2903), - [anon_sym_yield] = ACTIONS(2903), - [anon_sym_move] = ACTIONS(2903), - [anon_sym_try] = ACTIONS(2903), - [sym_integer_literal] = ACTIONS(2901), - [aux_sym_string_literal_token1] = ACTIONS(2901), - [sym_char_literal] = ACTIONS(2901), - [anon_sym_true] = ACTIONS(2903), - [anon_sym_false] = ACTIONS(2903), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2903), - [sym_super] = ACTIONS(2903), - [sym_crate] = ACTIONS(2903), - [sym_metavariable] = ACTIONS(2901), - [sym__raw_string_literal_start] = ACTIONS(2901), - [sym_float_literal] = ACTIONS(2901), - }, - [748] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_macro_rules_BANG] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_u8] = ACTIONS(2829), + [anon_sym_i8] = ACTIONS(2829), + [anon_sym_u16] = ACTIONS(2829), + [anon_sym_i16] = ACTIONS(2829), + [anon_sym_u32] = ACTIONS(2829), + [anon_sym_i32] = ACTIONS(2829), + [anon_sym_u64] = ACTIONS(2829), + [anon_sym_i64] = ACTIONS(2829), + [anon_sym_u128] = ACTIONS(2829), + [anon_sym_i128] = ACTIONS(2829), + [anon_sym_isize] = ACTIONS(2829), + [anon_sym_usize] = ACTIONS(2829), + [anon_sym_f32] = ACTIONS(2829), + [anon_sym_f64] = ACTIONS(2829), + [anon_sym_bool] = ACTIONS(2829), + [anon_sym_str] = ACTIONS(2829), + [anon_sym_char] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2827), + [anon_sym_PIPE] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2827), + [anon_sym_DOT_DOT] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_POUND] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2829), + [anon_sym_async] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_fn] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_gen] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_impl] = ACTIONS(2829), + [anon_sym_let] = ACTIONS(2829), + [anon_sym_loop] = ACTIONS(2829), + [anon_sym_match] = ACTIONS(2829), + [anon_sym_mod] = ACTIONS(2829), + [anon_sym_pub] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_trait] = ACTIONS(2829), + [anon_sym_type] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(2829), + [anon_sym_use] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym_yield] = ACTIONS(2829), + [anon_sym_move] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [sym_integer_literal] = ACTIONS(2827), + [aux_sym_string_literal_token1] = ACTIONS(2827), + [sym_char_literal] = ACTIONS(2827), + [anon_sym_true] = ACTIONS(2829), + [anon_sym_false] = ACTIONS(2829), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2829), + [sym_super] = ACTIONS(2829), + [sym_crate] = ACTIONS(2829), + [sym_metavariable] = ACTIONS(2827), + [sym__raw_string_literal_start] = ACTIONS(2827), + [sym_float_literal] = ACTIONS(2827), + }, + [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_macro_rules_BANG] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_u8] = ACTIONS(2907), - [anon_sym_i8] = ACTIONS(2907), - [anon_sym_u16] = ACTIONS(2907), - [anon_sym_i16] = ACTIONS(2907), - [anon_sym_u32] = ACTIONS(2907), - [anon_sym_i32] = ACTIONS(2907), - [anon_sym_u64] = ACTIONS(2907), - [anon_sym_i64] = ACTIONS(2907), - [anon_sym_u128] = ACTIONS(2907), - [anon_sym_i128] = ACTIONS(2907), - [anon_sym_isize] = ACTIONS(2907), - [anon_sym_usize] = ACTIONS(2907), - [anon_sym_f32] = ACTIONS(2907), - [anon_sym_f64] = ACTIONS(2907), - [anon_sym_bool] = ACTIONS(2907), - [anon_sym_str] = ACTIONS(2907), - [anon_sym_char] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_DOT_DOT] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_POUND] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_async] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_gen] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_impl] = ACTIONS(2907), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_loop] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_mod] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_static] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_trait] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_use] = ACTIONS(2907), - [anon_sym_while] = ACTIONS(2907), - [anon_sym_extern] = ACTIONS(2907), - [anon_sym_yield] = ACTIONS(2907), - [anon_sym_move] = ACTIONS(2907), - [anon_sym_try] = ACTIONS(2907), - [sym_integer_literal] = ACTIONS(2905), - [aux_sym_string_literal_token1] = ACTIONS(2905), - [sym_char_literal] = ACTIONS(2905), - [anon_sym_true] = ACTIONS(2907), - [anon_sym_false] = ACTIONS(2907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2907), - [sym_super] = ACTIONS(2907), - [sym_crate] = ACTIONS(2907), - [sym_metavariable] = ACTIONS(2905), - [sym__raw_string_literal_start] = ACTIONS(2905), - [sym_float_literal] = ACTIONS(2905), - }, - [749] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_macro_rules_BANG] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_u8] = ACTIONS(2833), + [anon_sym_i8] = ACTIONS(2833), + [anon_sym_u16] = ACTIONS(2833), + [anon_sym_i16] = ACTIONS(2833), + [anon_sym_u32] = ACTIONS(2833), + [anon_sym_i32] = ACTIONS(2833), + [anon_sym_u64] = ACTIONS(2833), + [anon_sym_i64] = ACTIONS(2833), + [anon_sym_u128] = ACTIONS(2833), + [anon_sym_i128] = ACTIONS(2833), + [anon_sym_isize] = ACTIONS(2833), + [anon_sym_usize] = ACTIONS(2833), + [anon_sym_f32] = ACTIONS(2833), + [anon_sym_f64] = ACTIONS(2833), + [anon_sym_bool] = ACTIONS(2833), + [anon_sym_str] = ACTIONS(2833), + [anon_sym_char] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_DOT_DOT] = ACTIONS(2831), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_POUND] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_async] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_gen] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_impl] = ACTIONS(2833), + [anon_sym_let] = ACTIONS(2833), + [anon_sym_loop] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_mod] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_trait] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_use] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym_yield] = ACTIONS(2833), + [anon_sym_move] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [sym_integer_literal] = ACTIONS(2831), + [aux_sym_string_literal_token1] = ACTIONS(2831), + [sym_char_literal] = ACTIONS(2831), + [anon_sym_true] = ACTIONS(2833), + [anon_sym_false] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2833), + [sym_super] = ACTIONS(2833), + [sym_crate] = ACTIONS(2833), + [sym_metavariable] = ACTIONS(2831), + [sym__raw_string_literal_start] = ACTIONS(2831), + [sym_float_literal] = ACTIONS(2831), + }, + [STATE(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_macro_rules_BANG] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_u8] = ACTIONS(2911), - [anon_sym_i8] = ACTIONS(2911), - [anon_sym_u16] = ACTIONS(2911), - [anon_sym_i16] = ACTIONS(2911), - [anon_sym_u32] = ACTIONS(2911), - [anon_sym_i32] = ACTIONS(2911), - [anon_sym_u64] = ACTIONS(2911), - [anon_sym_i64] = ACTIONS(2911), - [anon_sym_u128] = ACTIONS(2911), - [anon_sym_i128] = ACTIONS(2911), - [anon_sym_isize] = ACTIONS(2911), - [anon_sym_usize] = ACTIONS(2911), - [anon_sym_f32] = ACTIONS(2911), - [anon_sym_f64] = ACTIONS(2911), - [anon_sym_bool] = ACTIONS(2911), - [anon_sym_str] = ACTIONS(2911), - [anon_sym_char] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2909), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_async] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_default] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_gen] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_impl] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_loop] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_trait] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_use] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_extern] = ACTIONS(2911), - [anon_sym_yield] = ACTIONS(2911), - [anon_sym_move] = ACTIONS(2911), - [anon_sym_try] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [aux_sym_string_literal_token1] = ACTIONS(2909), - [sym_char_literal] = ACTIONS(2909), - [anon_sym_true] = ACTIONS(2911), - [anon_sym_false] = ACTIONS(2911), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2911), - [sym_super] = ACTIONS(2911), - [sym_crate] = ACTIONS(2911), - [sym_metavariable] = ACTIONS(2909), - [sym__raw_string_literal_start] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - }, - [750] = { + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_macro_rules_BANG] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_u8] = ACTIONS(2837), + [anon_sym_i8] = ACTIONS(2837), + [anon_sym_u16] = ACTIONS(2837), + [anon_sym_i16] = ACTIONS(2837), + [anon_sym_u32] = ACTIONS(2837), + [anon_sym_i32] = ACTIONS(2837), + [anon_sym_u64] = ACTIONS(2837), + [anon_sym_i64] = ACTIONS(2837), + [anon_sym_u128] = ACTIONS(2837), + [anon_sym_i128] = ACTIONS(2837), + [anon_sym_isize] = ACTIONS(2837), + [anon_sym_usize] = ACTIONS(2837), + [anon_sym_f32] = ACTIONS(2837), + [anon_sym_f64] = ACTIONS(2837), + [anon_sym_bool] = ACTIONS(2837), + [anon_sym_str] = ACTIONS(2837), + [anon_sym_char] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_DOT_DOT] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_POUND] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_async] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_gen] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_impl] = ACTIONS(2837), + [anon_sym_let] = ACTIONS(2837), + [anon_sym_loop] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_mod] = ACTIONS(2837), + [anon_sym_pub] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_trait] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_use] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym_yield] = ACTIONS(2837), + [anon_sym_move] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [sym_integer_literal] = ACTIONS(2835), + [aux_sym_string_literal_token1] = ACTIONS(2835), + [sym_char_literal] = ACTIONS(2835), + [anon_sym_true] = ACTIONS(2837), + [anon_sym_false] = ACTIONS(2837), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2837), + [sym_super] = ACTIONS(2837), + [sym_crate] = ACTIONS(2837), + [sym_metavariable] = ACTIONS(2835), + [sym__raw_string_literal_start] = ACTIONS(2835), + [sym_float_literal] = ACTIONS(2835), + }, + [STATE(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_macro_rules_BANG] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_u8] = ACTIONS(2915), - [anon_sym_i8] = ACTIONS(2915), - [anon_sym_u16] = ACTIONS(2915), - [anon_sym_i16] = ACTIONS(2915), - [anon_sym_u32] = ACTIONS(2915), - [anon_sym_i32] = ACTIONS(2915), - [anon_sym_u64] = ACTIONS(2915), - [anon_sym_i64] = ACTIONS(2915), - [anon_sym_u128] = ACTIONS(2915), - [anon_sym_i128] = ACTIONS(2915), - [anon_sym_isize] = ACTIONS(2915), - [anon_sym_usize] = ACTIONS(2915), - [anon_sym_f32] = ACTIONS(2915), - [anon_sym_f64] = ACTIONS(2915), - [anon_sym_bool] = ACTIONS(2915), - [anon_sym_str] = ACTIONS(2915), - [anon_sym_char] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_DOT_DOT] = ACTIONS(2913), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_async] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_default] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_gen] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_impl] = ACTIONS(2915), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_loop] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_mod] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_trait] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_use] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_extern] = ACTIONS(2915), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_move] = ACTIONS(2915), - [anon_sym_try] = ACTIONS(2915), - [sym_integer_literal] = ACTIONS(2913), - [aux_sym_string_literal_token1] = ACTIONS(2913), - [sym_char_literal] = ACTIONS(2913), - [anon_sym_true] = ACTIONS(2915), - [anon_sym_false] = ACTIONS(2915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2915), - [sym_super] = ACTIONS(2915), - [sym_crate] = ACTIONS(2915), - [sym_metavariable] = ACTIONS(2913), - [sym__raw_string_literal_start] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - }, - [751] = { + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_macro_rules_BANG] = ACTIONS(2839), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_u8] = ACTIONS(2841), + [anon_sym_i8] = ACTIONS(2841), + [anon_sym_u16] = ACTIONS(2841), + [anon_sym_i16] = ACTIONS(2841), + [anon_sym_u32] = ACTIONS(2841), + [anon_sym_i32] = ACTIONS(2841), + [anon_sym_u64] = ACTIONS(2841), + [anon_sym_i64] = ACTIONS(2841), + [anon_sym_u128] = ACTIONS(2841), + [anon_sym_i128] = ACTIONS(2841), + [anon_sym_isize] = ACTIONS(2841), + [anon_sym_usize] = ACTIONS(2841), + [anon_sym_f32] = ACTIONS(2841), + [anon_sym_f64] = ACTIONS(2841), + [anon_sym_bool] = ACTIONS(2841), + [anon_sym_str] = ACTIONS(2841), + [anon_sym_char] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_DOT_DOT] = ACTIONS(2839), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_POUND] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_fn] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_gen] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_impl] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_loop] = ACTIONS(2841), + [anon_sym_match] = ACTIONS(2841), + [anon_sym_mod] = ACTIONS(2841), + [anon_sym_pub] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_trait] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_unsafe] = ACTIONS(2841), + [anon_sym_use] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_move] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [sym_integer_literal] = ACTIONS(2839), + [aux_sym_string_literal_token1] = ACTIONS(2839), + [sym_char_literal] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2841), + [anon_sym_false] = ACTIONS(2841), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_crate] = ACTIONS(2841), + [sym_metavariable] = ACTIONS(2839), + [sym__raw_string_literal_start] = ACTIONS(2839), + [sym_float_literal] = ACTIONS(2839), + }, + [STATE(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_macro_rules_BANG] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_u8] = ACTIONS(2919), - [anon_sym_i8] = ACTIONS(2919), - [anon_sym_u16] = ACTIONS(2919), - [anon_sym_i16] = ACTIONS(2919), - [anon_sym_u32] = ACTIONS(2919), - [anon_sym_i32] = ACTIONS(2919), - [anon_sym_u64] = ACTIONS(2919), - [anon_sym_i64] = ACTIONS(2919), - [anon_sym_u128] = ACTIONS(2919), - [anon_sym_i128] = ACTIONS(2919), - [anon_sym_isize] = ACTIONS(2919), - [anon_sym_usize] = ACTIONS(2919), - [anon_sym_f32] = ACTIONS(2919), - [anon_sym_f64] = ACTIONS(2919), - [anon_sym_bool] = ACTIONS(2919), - [anon_sym_str] = ACTIONS(2919), - [anon_sym_char] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_DOT_DOT] = ACTIONS(2917), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_POUND] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_async] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_default] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_gen] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_impl] = ACTIONS(2919), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_loop] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_mod] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_trait] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_use] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2919), - [anon_sym_move] = ACTIONS(2919), - [anon_sym_try] = ACTIONS(2919), - [sym_integer_literal] = ACTIONS(2917), - [aux_sym_string_literal_token1] = ACTIONS(2917), - [sym_char_literal] = ACTIONS(2917), - [anon_sym_true] = ACTIONS(2919), - [anon_sym_false] = ACTIONS(2919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2919), - [sym_super] = ACTIONS(2919), - [sym_crate] = ACTIONS(2919), - [sym_metavariable] = ACTIONS(2917), - [sym__raw_string_literal_start] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2917), - }, - [752] = { + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_macro_rules_BANG] = ACTIONS(2843), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_u8] = ACTIONS(2845), + [anon_sym_i8] = ACTIONS(2845), + [anon_sym_u16] = ACTIONS(2845), + [anon_sym_i16] = ACTIONS(2845), + [anon_sym_u32] = ACTIONS(2845), + [anon_sym_i32] = ACTIONS(2845), + [anon_sym_u64] = ACTIONS(2845), + [anon_sym_i64] = ACTIONS(2845), + [anon_sym_u128] = ACTIONS(2845), + [anon_sym_i128] = ACTIONS(2845), + [anon_sym_isize] = ACTIONS(2845), + [anon_sym_usize] = ACTIONS(2845), + [anon_sym_f32] = ACTIONS(2845), + [anon_sym_f64] = ACTIONS(2845), + [anon_sym_bool] = ACTIONS(2845), + [anon_sym_str] = ACTIONS(2845), + [anon_sym_char] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_DOT_DOT] = ACTIONS(2843), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_POUND] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_fn] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_gen] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_impl] = ACTIONS(2845), + [anon_sym_let] = ACTIONS(2845), + [anon_sym_loop] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_mod] = ACTIONS(2845), + [anon_sym_pub] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_trait] = ACTIONS(2845), + [anon_sym_type] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_unsafe] = ACTIONS(2845), + [anon_sym_use] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym_yield] = ACTIONS(2845), + [anon_sym_move] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [sym_integer_literal] = ACTIONS(2843), + [aux_sym_string_literal_token1] = ACTIONS(2843), + [sym_char_literal] = ACTIONS(2843), + [anon_sym_true] = ACTIONS(2845), + [anon_sym_false] = ACTIONS(2845), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2845), + [sym_super] = ACTIONS(2845), + [sym_crate] = ACTIONS(2845), + [sym_metavariable] = ACTIONS(2843), + [sym__raw_string_literal_start] = ACTIONS(2843), + [sym_float_literal] = ACTIONS(2843), + }, + [STATE(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_macro_rules_BANG] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_u8] = ACTIONS(2923), - [anon_sym_i8] = ACTIONS(2923), - [anon_sym_u16] = ACTIONS(2923), - [anon_sym_i16] = ACTIONS(2923), - [anon_sym_u32] = ACTIONS(2923), - [anon_sym_i32] = ACTIONS(2923), - [anon_sym_u64] = ACTIONS(2923), - [anon_sym_i64] = ACTIONS(2923), - [anon_sym_u128] = ACTIONS(2923), - [anon_sym_i128] = ACTIONS(2923), - [anon_sym_isize] = ACTIONS(2923), - [anon_sym_usize] = ACTIONS(2923), - [anon_sym_f32] = ACTIONS(2923), - [anon_sym_f64] = ACTIONS(2923), - [anon_sym_bool] = ACTIONS(2923), - [anon_sym_str] = ACTIONS(2923), - [anon_sym_char] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_DOT_DOT] = ACTIONS(2921), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_POUND] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_async] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_default] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_gen] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_impl] = ACTIONS(2923), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_loop] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_mod] = ACTIONS(2923), - [anon_sym_pub] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_trait] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_use] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym_yield] = ACTIONS(2923), - [anon_sym_move] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [sym_integer_literal] = ACTIONS(2921), - [aux_sym_string_literal_token1] = ACTIONS(2921), - [sym_char_literal] = ACTIONS(2921), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2923), - [sym_super] = ACTIONS(2923), - [sym_crate] = ACTIONS(2923), - [sym_metavariable] = ACTIONS(2921), - [sym__raw_string_literal_start] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2921), - }, - [753] = { + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_macro_rules_BANG] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_u8] = ACTIONS(2849), + [anon_sym_i8] = ACTIONS(2849), + [anon_sym_u16] = ACTIONS(2849), + [anon_sym_i16] = ACTIONS(2849), + [anon_sym_u32] = ACTIONS(2849), + [anon_sym_i32] = ACTIONS(2849), + [anon_sym_u64] = ACTIONS(2849), + [anon_sym_i64] = ACTIONS(2849), + [anon_sym_u128] = ACTIONS(2849), + [anon_sym_i128] = ACTIONS(2849), + [anon_sym_isize] = ACTIONS(2849), + [anon_sym_usize] = ACTIONS(2849), + [anon_sym_f32] = ACTIONS(2849), + [anon_sym_f64] = ACTIONS(2849), + [anon_sym_bool] = ACTIONS(2849), + [anon_sym_str] = ACTIONS(2849), + [anon_sym_char] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_DOT_DOT] = ACTIONS(2847), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_POUND] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_async] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_fn] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_gen] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_impl] = ACTIONS(2849), + [anon_sym_let] = ACTIONS(2849), + [anon_sym_loop] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_mod] = ACTIONS(2849), + [anon_sym_pub] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_trait] = ACTIONS(2849), + [anon_sym_type] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(2849), + [anon_sym_use] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym_yield] = ACTIONS(2849), + [anon_sym_move] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [sym_integer_literal] = ACTIONS(2847), + [aux_sym_string_literal_token1] = ACTIONS(2847), + [sym_char_literal] = ACTIONS(2847), + [anon_sym_true] = ACTIONS(2849), + [anon_sym_false] = ACTIONS(2849), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2849), + [sym_super] = ACTIONS(2849), + [sym_crate] = ACTIONS(2849), + [sym_metavariable] = ACTIONS(2847), + [sym__raw_string_literal_start] = ACTIONS(2847), + [sym_float_literal] = ACTIONS(2847), + }, + [STATE(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_macro_rules_BANG] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_POUND] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_async] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_default] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_gen] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_impl] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2927), - [anon_sym_loop] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_trait] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_use] = ACTIONS(2927), - [anon_sym_while] = ACTIONS(2927), - [anon_sym_extern] = ACTIONS(2927), - [anon_sym_yield] = ACTIONS(2927), - [anon_sym_move] = ACTIONS(2927), - [anon_sym_try] = ACTIONS(2927), - [sym_integer_literal] = ACTIONS(2925), - [aux_sym_string_literal_token1] = ACTIONS(2925), - [sym_char_literal] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2927), - [anon_sym_false] = ACTIONS(2927), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2927), - [sym_super] = ACTIONS(2927), - [sym_crate] = ACTIONS(2927), - [sym_metavariable] = ACTIONS(2925), - [sym__raw_string_literal_start] = ACTIONS(2925), - [sym_float_literal] = ACTIONS(2925), - }, - [754] = { + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_macro_rules_BANG] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_u8] = ACTIONS(2853), + [anon_sym_i8] = ACTIONS(2853), + [anon_sym_u16] = ACTIONS(2853), + [anon_sym_i16] = ACTIONS(2853), + [anon_sym_u32] = ACTIONS(2853), + [anon_sym_i32] = ACTIONS(2853), + [anon_sym_u64] = ACTIONS(2853), + [anon_sym_i64] = ACTIONS(2853), + [anon_sym_u128] = ACTIONS(2853), + [anon_sym_i128] = ACTIONS(2853), + [anon_sym_isize] = ACTIONS(2853), + [anon_sym_usize] = ACTIONS(2853), + [anon_sym_f32] = ACTIONS(2853), + [anon_sym_f64] = ACTIONS(2853), + [anon_sym_bool] = ACTIONS(2853), + [anon_sym_str] = ACTIONS(2853), + [anon_sym_char] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_DOT_DOT] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(2851), + [anon_sym_POUND] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_async] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_fn] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_gen] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_impl] = ACTIONS(2853), + [anon_sym_let] = ACTIONS(2853), + [anon_sym_loop] = ACTIONS(2853), + [anon_sym_match] = ACTIONS(2853), + [anon_sym_mod] = ACTIONS(2853), + [anon_sym_pub] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2853), + [anon_sym_trait] = ACTIONS(2853), + [anon_sym_type] = ACTIONS(2853), + [anon_sym_union] = ACTIONS(2853), + [anon_sym_unsafe] = ACTIONS(2853), + [anon_sym_use] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym_yield] = ACTIONS(2853), + [anon_sym_move] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [sym_integer_literal] = ACTIONS(2851), + [aux_sym_string_literal_token1] = ACTIONS(2851), + [sym_char_literal] = ACTIONS(2851), + [anon_sym_true] = ACTIONS(2853), + [anon_sym_false] = ACTIONS(2853), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2853), + [sym_super] = ACTIONS(2853), + [sym_crate] = ACTIONS(2853), + [sym_metavariable] = ACTIONS(2851), + [sym__raw_string_literal_start] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(2851), + }, + [STATE(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym_macro_rules_BANG] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_u8] = ACTIONS(2931), - [anon_sym_i8] = ACTIONS(2931), - [anon_sym_u16] = ACTIONS(2931), - [anon_sym_i16] = ACTIONS(2931), - [anon_sym_u32] = ACTIONS(2931), - [anon_sym_i32] = ACTIONS(2931), - [anon_sym_u64] = ACTIONS(2931), - [anon_sym_i64] = ACTIONS(2931), - [anon_sym_u128] = ACTIONS(2931), - [anon_sym_i128] = ACTIONS(2931), - [anon_sym_isize] = ACTIONS(2931), - [anon_sym_usize] = ACTIONS(2931), - [anon_sym_f32] = ACTIONS(2931), - [anon_sym_f64] = ACTIONS(2931), - [anon_sym_bool] = ACTIONS(2931), - [anon_sym_str] = ACTIONS(2931), - [anon_sym_char] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2929), - [anon_sym_DOT_DOT] = ACTIONS(2929), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_POUND] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2931), - [anon_sym_async] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_default] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_gen] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_impl] = ACTIONS(2931), - [anon_sym_let] = ACTIONS(2931), - [anon_sym_loop] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_mod] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_static] = ACTIONS(2931), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_trait] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_use] = ACTIONS(2931), - [anon_sym_while] = ACTIONS(2931), - [anon_sym_extern] = ACTIONS(2931), - [anon_sym_yield] = ACTIONS(2931), - [anon_sym_move] = ACTIONS(2931), - [anon_sym_try] = ACTIONS(2931), - [sym_integer_literal] = ACTIONS(2929), - [aux_sym_string_literal_token1] = ACTIONS(2929), - [sym_char_literal] = ACTIONS(2929), - [anon_sym_true] = ACTIONS(2931), - [anon_sym_false] = ACTIONS(2931), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2931), - [sym_super] = ACTIONS(2931), - [sym_crate] = ACTIONS(2931), - [sym_metavariable] = ACTIONS(2929), - [sym__raw_string_literal_start] = ACTIONS(2929), - [sym_float_literal] = ACTIONS(2929), - }, - [755] = { + [ts_builtin_sym_end] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_macro_rules_BANG] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_u8] = ACTIONS(2857), + [anon_sym_i8] = ACTIONS(2857), + [anon_sym_u16] = ACTIONS(2857), + [anon_sym_i16] = ACTIONS(2857), + [anon_sym_u32] = ACTIONS(2857), + [anon_sym_i32] = ACTIONS(2857), + [anon_sym_u64] = ACTIONS(2857), + [anon_sym_i64] = ACTIONS(2857), + [anon_sym_u128] = ACTIONS(2857), + [anon_sym_i128] = ACTIONS(2857), + [anon_sym_isize] = ACTIONS(2857), + [anon_sym_usize] = ACTIONS(2857), + [anon_sym_f32] = ACTIONS(2857), + [anon_sym_f64] = ACTIONS(2857), + [anon_sym_bool] = ACTIONS(2857), + [anon_sym_str] = ACTIONS(2857), + [anon_sym_char] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_DOT_DOT] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_async] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_fn] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_gen] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_impl] = ACTIONS(2857), + [anon_sym_let] = ACTIONS(2857), + [anon_sym_loop] = ACTIONS(2857), + [anon_sym_match] = ACTIONS(2857), + [anon_sym_mod] = ACTIONS(2857), + [anon_sym_pub] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_trait] = ACTIONS(2857), + [anon_sym_type] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_unsafe] = ACTIONS(2857), + [anon_sym_use] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym_yield] = ACTIONS(2857), + [anon_sym_move] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [sym_integer_literal] = ACTIONS(2855), + [aux_sym_string_literal_token1] = ACTIONS(2855), + [sym_char_literal] = ACTIONS(2855), + [anon_sym_true] = ACTIONS(2857), + [anon_sym_false] = ACTIONS(2857), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2857), + [sym_super] = ACTIONS(2857), + [sym_crate] = ACTIONS(2857), + [sym_metavariable] = ACTIONS(2855), + [sym__raw_string_literal_start] = ACTIONS(2855), + [sym_float_literal] = ACTIONS(2855), + }, + [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym_macro_rules_BANG] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_u8] = ACTIONS(2935), - [anon_sym_i8] = ACTIONS(2935), - [anon_sym_u16] = ACTIONS(2935), - [anon_sym_i16] = ACTIONS(2935), - [anon_sym_u32] = ACTIONS(2935), - [anon_sym_i32] = ACTIONS(2935), - [anon_sym_u64] = ACTIONS(2935), - [anon_sym_i64] = ACTIONS(2935), - [anon_sym_u128] = ACTIONS(2935), - [anon_sym_i128] = ACTIONS(2935), - [anon_sym_isize] = ACTIONS(2935), - [anon_sym_usize] = ACTIONS(2935), - [anon_sym_f32] = ACTIONS(2935), - [anon_sym_f64] = ACTIONS(2935), - [anon_sym_bool] = ACTIONS(2935), - [anon_sym_str] = ACTIONS(2935), - [anon_sym_char] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2933), - [anon_sym_LT] = ACTIONS(2933), - [anon_sym_DOT_DOT] = ACTIONS(2933), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_POUND] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_gen] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_impl] = ACTIONS(2935), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_loop] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_mod] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_static] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_trait] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_use] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_extern] = ACTIONS(2935), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_move] = ACTIONS(2935), - [anon_sym_try] = ACTIONS(2935), - [sym_integer_literal] = ACTIONS(2933), - [aux_sym_string_literal_token1] = ACTIONS(2933), - [sym_char_literal] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2935), - [sym_super] = ACTIONS(2935), - [sym_crate] = ACTIONS(2935), - [sym_metavariable] = ACTIONS(2933), - [sym__raw_string_literal_start] = ACTIONS(2933), - [sym_float_literal] = ACTIONS(2933), - }, - [756] = { + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_macro_rules_BANG] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_u8] = ACTIONS(2861), + [anon_sym_i8] = ACTIONS(2861), + [anon_sym_u16] = ACTIONS(2861), + [anon_sym_i16] = ACTIONS(2861), + [anon_sym_u32] = ACTIONS(2861), + [anon_sym_i32] = ACTIONS(2861), + [anon_sym_u64] = ACTIONS(2861), + [anon_sym_i64] = ACTIONS(2861), + [anon_sym_u128] = ACTIONS(2861), + [anon_sym_i128] = ACTIONS(2861), + [anon_sym_isize] = ACTIONS(2861), + [anon_sym_usize] = ACTIONS(2861), + [anon_sym_f32] = ACTIONS(2861), + [anon_sym_f64] = ACTIONS(2861), + [anon_sym_bool] = ACTIONS(2861), + [anon_sym_str] = ACTIONS(2861), + [anon_sym_char] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_DOT_DOT] = ACTIONS(2859), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_POUND] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_async] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_fn] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_gen] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_impl] = ACTIONS(2861), + [anon_sym_let] = ACTIONS(2861), + [anon_sym_loop] = ACTIONS(2861), + [anon_sym_match] = ACTIONS(2861), + [anon_sym_mod] = ACTIONS(2861), + [anon_sym_pub] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_trait] = ACTIONS(2861), + [anon_sym_type] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_unsafe] = ACTIONS(2861), + [anon_sym_use] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym_yield] = ACTIONS(2861), + [anon_sym_move] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [sym_integer_literal] = ACTIONS(2859), + [aux_sym_string_literal_token1] = ACTIONS(2859), + [sym_char_literal] = ACTIONS(2859), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2861), + [sym_super] = ACTIONS(2861), + [sym_crate] = ACTIONS(2861), + [sym_metavariable] = ACTIONS(2859), + [sym__raw_string_literal_start] = ACTIONS(2859), + [sym_float_literal] = ACTIONS(2859), + }, + [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym_macro_rules_BANG] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_u8] = ACTIONS(2939), - [anon_sym_i8] = ACTIONS(2939), - [anon_sym_u16] = ACTIONS(2939), - [anon_sym_i16] = ACTIONS(2939), - [anon_sym_u32] = ACTIONS(2939), - [anon_sym_i32] = ACTIONS(2939), - [anon_sym_u64] = ACTIONS(2939), - [anon_sym_i64] = ACTIONS(2939), - [anon_sym_u128] = ACTIONS(2939), - [anon_sym_i128] = ACTIONS(2939), - [anon_sym_isize] = ACTIONS(2939), - [anon_sym_usize] = ACTIONS(2939), - [anon_sym_f32] = ACTIONS(2939), - [anon_sym_f64] = ACTIONS(2939), - [anon_sym_bool] = ACTIONS(2939), - [anon_sym_str] = ACTIONS(2939), - [anon_sym_char] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_BANG] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2937), - [anon_sym_LT] = ACTIONS(2937), - [anon_sym_DOT_DOT] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_POUND] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2939), - [anon_sym_async] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_default] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_gen] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_impl] = ACTIONS(2939), - [anon_sym_let] = ACTIONS(2939), - [anon_sym_loop] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_mod] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_static] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_trait] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_use] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2939), - [anon_sym_extern] = ACTIONS(2939), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_move] = ACTIONS(2939), - [anon_sym_try] = ACTIONS(2939), - [sym_integer_literal] = ACTIONS(2937), - [aux_sym_string_literal_token1] = ACTIONS(2937), - [sym_char_literal] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2937), - [sym__raw_string_literal_start] = ACTIONS(2937), - [sym_float_literal] = ACTIONS(2937), - }, - [757] = { + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_macro_rules_BANG] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_u8] = ACTIONS(2865), + [anon_sym_i8] = ACTIONS(2865), + [anon_sym_u16] = ACTIONS(2865), + [anon_sym_i16] = ACTIONS(2865), + [anon_sym_u32] = ACTIONS(2865), + [anon_sym_i32] = ACTIONS(2865), + [anon_sym_u64] = ACTIONS(2865), + [anon_sym_i64] = ACTIONS(2865), + [anon_sym_u128] = ACTIONS(2865), + [anon_sym_i128] = ACTIONS(2865), + [anon_sym_isize] = ACTIONS(2865), + [anon_sym_usize] = ACTIONS(2865), + [anon_sym_f32] = ACTIONS(2865), + [anon_sym_f64] = ACTIONS(2865), + [anon_sym_bool] = ACTIONS(2865), + [anon_sym_str] = ACTIONS(2865), + [anon_sym_char] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2865), + [anon_sym_async] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_fn] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_gen] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_impl] = ACTIONS(2865), + [anon_sym_let] = ACTIONS(2865), + [anon_sym_loop] = ACTIONS(2865), + [anon_sym_match] = ACTIONS(2865), + [anon_sym_mod] = ACTIONS(2865), + [anon_sym_pub] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_trait] = ACTIONS(2865), + [anon_sym_type] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_unsafe] = ACTIONS(2865), + [anon_sym_use] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym_yield] = ACTIONS(2865), + [anon_sym_move] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [sym_integer_literal] = ACTIONS(2863), + [aux_sym_string_literal_token1] = ACTIONS(2863), + [sym_char_literal] = ACTIONS(2863), + [anon_sym_true] = ACTIONS(2865), + [anon_sym_false] = ACTIONS(2865), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2865), + [sym_super] = ACTIONS(2865), + [sym_crate] = ACTIONS(2865), + [sym_metavariable] = ACTIONS(2863), + [sym__raw_string_literal_start] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(2863), + }, + [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2941), - [sym_identifier] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym_macro_rules_BANG] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_u8] = ACTIONS(2943), - [anon_sym_i8] = ACTIONS(2943), - [anon_sym_u16] = ACTIONS(2943), - [anon_sym_i16] = ACTIONS(2943), - [anon_sym_u32] = ACTIONS(2943), - [anon_sym_i32] = ACTIONS(2943), - [anon_sym_u64] = ACTIONS(2943), - [anon_sym_i64] = ACTIONS(2943), - [anon_sym_u128] = ACTIONS(2943), - [anon_sym_i128] = ACTIONS(2943), - [anon_sym_isize] = ACTIONS(2943), - [anon_sym_usize] = ACTIONS(2943), - [anon_sym_f32] = ACTIONS(2943), - [anon_sym_f64] = ACTIONS(2943), - [anon_sym_bool] = ACTIONS(2943), - [anon_sym_str] = ACTIONS(2943), - [anon_sym_char] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_BANG] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2941), - [anon_sym_DOT_DOT] = ACTIONS(2941), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_POUND] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2943), - [anon_sym_async] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_default] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_gen] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_impl] = ACTIONS(2943), - [anon_sym_let] = ACTIONS(2943), - [anon_sym_loop] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_mod] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_static] = ACTIONS(2943), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_trait] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_use] = ACTIONS(2943), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_extern] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2943), - [anon_sym_move] = ACTIONS(2943), - [anon_sym_try] = ACTIONS(2943), - [sym_integer_literal] = ACTIONS(2941), - [aux_sym_string_literal_token1] = ACTIONS(2941), - [sym_char_literal] = ACTIONS(2941), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2943), - [sym_super] = ACTIONS(2943), - [sym_crate] = ACTIONS(2943), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(2941), - [sym_float_literal] = ACTIONS(2941), - }, - [758] = { + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_macro_rules_BANG] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_u8] = ACTIONS(2869), + [anon_sym_i8] = ACTIONS(2869), + [anon_sym_u16] = ACTIONS(2869), + [anon_sym_i16] = ACTIONS(2869), + [anon_sym_u32] = ACTIONS(2869), + [anon_sym_i32] = ACTIONS(2869), + [anon_sym_u64] = ACTIONS(2869), + [anon_sym_i64] = ACTIONS(2869), + [anon_sym_u128] = ACTIONS(2869), + [anon_sym_i128] = ACTIONS(2869), + [anon_sym_isize] = ACTIONS(2869), + [anon_sym_usize] = ACTIONS(2869), + [anon_sym_f32] = ACTIONS(2869), + [anon_sym_f64] = ACTIONS(2869), + [anon_sym_bool] = ACTIONS(2869), + [anon_sym_str] = ACTIONS(2869), + [anon_sym_char] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_DOT_DOT] = ACTIONS(2867), + [anon_sym_COLON_COLON] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_async] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_fn] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_gen] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_impl] = ACTIONS(2869), + [anon_sym_let] = ACTIONS(2869), + [anon_sym_loop] = ACTIONS(2869), + [anon_sym_match] = ACTIONS(2869), + [anon_sym_mod] = ACTIONS(2869), + [anon_sym_pub] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2869), + [anon_sym_trait] = ACTIONS(2869), + [anon_sym_type] = ACTIONS(2869), + [anon_sym_union] = ACTIONS(2869), + [anon_sym_unsafe] = ACTIONS(2869), + [anon_sym_use] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym_yield] = ACTIONS(2869), + [anon_sym_move] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [sym_integer_literal] = ACTIONS(2867), + [aux_sym_string_literal_token1] = ACTIONS(2867), + [sym_char_literal] = ACTIONS(2867), + [anon_sym_true] = ACTIONS(2869), + [anon_sym_false] = ACTIONS(2869), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2869), + [sym_super] = ACTIONS(2869), + [sym_crate] = ACTIONS(2869), + [sym_metavariable] = ACTIONS(2867), + [sym__raw_string_literal_start] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + }, + [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_identifier] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2945), - [anon_sym_macro_rules_BANG] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_u8] = ACTIONS(2947), - [anon_sym_i8] = ACTIONS(2947), - [anon_sym_u16] = ACTIONS(2947), - [anon_sym_i16] = ACTIONS(2947), - [anon_sym_u32] = ACTIONS(2947), - [anon_sym_i32] = ACTIONS(2947), - [anon_sym_u64] = ACTIONS(2947), - [anon_sym_i64] = ACTIONS(2947), - [anon_sym_u128] = ACTIONS(2947), - [anon_sym_i128] = ACTIONS(2947), - [anon_sym_isize] = ACTIONS(2947), - [anon_sym_usize] = ACTIONS(2947), - [anon_sym_f32] = ACTIONS(2947), - [anon_sym_f64] = ACTIONS(2947), - [anon_sym_bool] = ACTIONS(2947), - [anon_sym_str] = ACTIONS(2947), - [anon_sym_char] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2945), - [anon_sym_DOT_DOT] = ACTIONS(2945), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_POUND] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2947), - [anon_sym_async] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_gen] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_impl] = ACTIONS(2947), - [anon_sym_let] = ACTIONS(2947), - [anon_sym_loop] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_mod] = ACTIONS(2947), - [anon_sym_pub] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_static] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_trait] = ACTIONS(2947), - [anon_sym_type] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_extern] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2947), - [anon_sym_move] = ACTIONS(2947), - [anon_sym_try] = ACTIONS(2947), - [sym_integer_literal] = ACTIONS(2945), - [aux_sym_string_literal_token1] = ACTIONS(2945), - [sym_char_literal] = ACTIONS(2945), - [anon_sym_true] = ACTIONS(2947), - [anon_sym_false] = ACTIONS(2947), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2947), - [sym_super] = ACTIONS(2947), - [sym_crate] = ACTIONS(2947), - [sym_metavariable] = ACTIONS(2945), - [sym__raw_string_literal_start] = ACTIONS(2945), - [sym_float_literal] = ACTIONS(2945), - }, - [759] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_macro_rules_BANG] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_u8] = ACTIONS(2873), + [anon_sym_i8] = ACTIONS(2873), + [anon_sym_u16] = ACTIONS(2873), + [anon_sym_i16] = ACTIONS(2873), + [anon_sym_u32] = ACTIONS(2873), + [anon_sym_i32] = ACTIONS(2873), + [anon_sym_u64] = ACTIONS(2873), + [anon_sym_i64] = ACTIONS(2873), + [anon_sym_u128] = ACTIONS(2873), + [anon_sym_i128] = ACTIONS(2873), + [anon_sym_isize] = ACTIONS(2873), + [anon_sym_usize] = ACTIONS(2873), + [anon_sym_f32] = ACTIONS(2873), + [anon_sym_f64] = ACTIONS(2873), + [anon_sym_bool] = ACTIONS(2873), + [anon_sym_str] = ACTIONS(2873), + [anon_sym_char] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_DOT_DOT] = ACTIONS(2871), + [anon_sym_COLON_COLON] = ACTIONS(2871), + [anon_sym_POUND] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2873), + [anon_sym_async] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_gen] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_impl] = ACTIONS(2873), + [anon_sym_let] = ACTIONS(2873), + [anon_sym_loop] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_mod] = ACTIONS(2873), + [anon_sym_pub] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_trait] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_use] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_extern] = ACTIONS(2873), + [anon_sym_yield] = ACTIONS(2873), + [anon_sym_move] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [sym_integer_literal] = ACTIONS(2871), + [aux_sym_string_literal_token1] = ACTIONS(2871), + [sym_char_literal] = ACTIONS(2871), + [anon_sym_true] = ACTIONS(2873), + [anon_sym_false] = ACTIONS(2873), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2873), + [sym_super] = ACTIONS(2873), + [sym_crate] = ACTIONS(2873), + [sym_metavariable] = ACTIONS(2871), + [sym__raw_string_literal_start] = ACTIONS(2871), + [sym_float_literal] = ACTIONS(2871), + }, + [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_identifier] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_macro_rules_BANG] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_u8] = ACTIONS(2951), - [anon_sym_i8] = ACTIONS(2951), - [anon_sym_u16] = ACTIONS(2951), - [anon_sym_i16] = ACTIONS(2951), - [anon_sym_u32] = ACTIONS(2951), - [anon_sym_i32] = ACTIONS(2951), - [anon_sym_u64] = ACTIONS(2951), - [anon_sym_i64] = ACTIONS(2951), - [anon_sym_u128] = ACTIONS(2951), - [anon_sym_i128] = ACTIONS(2951), - [anon_sym_isize] = ACTIONS(2951), - [anon_sym_usize] = ACTIONS(2951), - [anon_sym_f32] = ACTIONS(2951), - [anon_sym_f64] = ACTIONS(2951), - [anon_sym_bool] = ACTIONS(2951), - [anon_sym_str] = ACTIONS(2951), - [anon_sym_char] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2949), - [anon_sym_LT] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_default] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_gen] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_impl] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_loop] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2951), - [anon_sym_mod] = ACTIONS(2951), - [anon_sym_pub] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_trait] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_use] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_extern] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_move] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [sym_integer_literal] = ACTIONS(2949), - [aux_sym_string_literal_token1] = ACTIONS(2949), - [sym_char_literal] = ACTIONS(2949), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_crate] = ACTIONS(2951), - [sym_metavariable] = ACTIONS(2949), - [sym__raw_string_literal_start] = ACTIONS(2949), - [sym_float_literal] = ACTIONS(2949), - }, - [760] = { + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_macro_rules_BANG] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_u8] = ACTIONS(2877), + [anon_sym_i8] = ACTIONS(2877), + [anon_sym_u16] = ACTIONS(2877), + [anon_sym_i16] = ACTIONS(2877), + [anon_sym_u32] = ACTIONS(2877), + [anon_sym_i32] = ACTIONS(2877), + [anon_sym_u64] = ACTIONS(2877), + [anon_sym_i64] = ACTIONS(2877), + [anon_sym_u128] = ACTIONS(2877), + [anon_sym_i128] = ACTIONS(2877), + [anon_sym_isize] = ACTIONS(2877), + [anon_sym_usize] = ACTIONS(2877), + [anon_sym_f32] = ACTIONS(2877), + [anon_sym_f64] = ACTIONS(2877), + [anon_sym_bool] = ACTIONS(2877), + [anon_sym_str] = ACTIONS(2877), + [anon_sym_char] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_PIPE] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_DOT_DOT] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2875), + [anon_sym_POUND] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_async] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_const] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_default] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_gen] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_impl] = ACTIONS(2877), + [anon_sym_let] = ACTIONS(2877), + [anon_sym_loop] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_mod] = ACTIONS(2877), + [anon_sym_pub] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2877), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_trait] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_use] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_extern] = ACTIONS(2877), + [anon_sym_yield] = ACTIONS(2877), + [anon_sym_move] = ACTIONS(2877), + [anon_sym_try] = ACTIONS(2877), + [sym_integer_literal] = ACTIONS(2875), + [aux_sym_string_literal_token1] = ACTIONS(2875), + [sym_char_literal] = ACTIONS(2875), + [anon_sym_true] = ACTIONS(2877), + [anon_sym_false] = ACTIONS(2877), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2877), + [sym_super] = ACTIONS(2877), + [sym_crate] = ACTIONS(2877), + [sym_metavariable] = ACTIONS(2875), + [sym__raw_string_literal_start] = ACTIONS(2875), + [sym_float_literal] = ACTIONS(2875), + }, + [STATE(760)] = { + [sym_empty_statement] = STATE(1314), + [sym_macro_definition] = STATE(1314), + [sym_attribute_item] = STATE(1314), + [sym_inner_attribute_item] = STATE(1314), + [sym_mod_item] = STATE(1314), + [sym_foreign_mod_item] = STATE(1314), + [sym_struct_item] = STATE(1314), + [sym_union_item] = STATE(1314), + [sym_enum_item] = STATE(1314), + [sym_extern_crate_declaration] = STATE(1314), + [sym_const_item] = STATE(1314), + [sym_static_item] = STATE(1314), + [sym_type_item] = STATE(1314), + [sym_function_item] = STATE(1314), + [sym_function_signature_item] = STATE(1314), + [sym_function_modifiers] = STATE(3640), + [sym_impl_item] = STATE(1314), + [sym_trait_item] = STATE(1314), + [sym_associated_type] = STATE(1314), + [sym_let_declaration] = STATE(1314), + [sym_use_declaration] = STATE(1314), + [sym_extern_modifier] = STATE(2199), + [sym_visibility_modifier] = STATE(1957), + [sym_bracketed_type] = STATE(3370), + [sym_generic_type_with_turbofish] = STATE(3395), + [sym_macro_invocation] = STATE(1314), + [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2953), - [sym_identifier] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_macro_rules_BANG] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_u8] = ACTIONS(2955), - [anon_sym_i8] = ACTIONS(2955), - [anon_sym_u16] = ACTIONS(2955), - [anon_sym_i16] = ACTIONS(2955), - [anon_sym_u32] = ACTIONS(2955), - [anon_sym_i32] = ACTIONS(2955), - [anon_sym_u64] = ACTIONS(2955), - [anon_sym_i64] = ACTIONS(2955), - [anon_sym_u128] = ACTIONS(2955), - [anon_sym_i128] = ACTIONS(2955), - [anon_sym_isize] = ACTIONS(2955), - [anon_sym_usize] = ACTIONS(2955), - [anon_sym_f32] = ACTIONS(2955), - [anon_sym_f64] = ACTIONS(2955), - [anon_sym_bool] = ACTIONS(2955), - [anon_sym_str] = ACTIONS(2955), - [anon_sym_char] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2953), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_POUND] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2955), - [anon_sym_async] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_default] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_fn] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_gen] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_impl] = ACTIONS(2955), - [anon_sym_let] = ACTIONS(2955), - [anon_sym_loop] = ACTIONS(2955), - [anon_sym_match] = ACTIONS(2955), - [anon_sym_mod] = ACTIONS(2955), - [anon_sym_pub] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_trait] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_unsafe] = ACTIONS(2955), - [anon_sym_use] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_extern] = ACTIONS(2955), - [anon_sym_yield] = ACTIONS(2955), - [anon_sym_move] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [sym_integer_literal] = ACTIONS(2953), - [aux_sym_string_literal_token1] = ACTIONS(2953), - [sym_char_literal] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2955), - [anon_sym_false] = ACTIONS(2955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2955), - [sym_super] = ACTIONS(2955), - [sym_crate] = ACTIONS(2955), - [sym_metavariable] = ACTIONS(2953), - [sym__raw_string_literal_start] = ACTIONS(2953), - [sym_float_literal] = ACTIONS(2953), - }, - [761] = { + [aux_sym_declaration_list_repeat1] = STATE(760), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_macro_rules_BANG] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_u8] = ACTIONS(2890), + [anon_sym_i8] = ACTIONS(2890), + [anon_sym_u16] = ACTIONS(2890), + [anon_sym_i16] = ACTIONS(2890), + [anon_sym_u32] = ACTIONS(2890), + [anon_sym_i32] = ACTIONS(2890), + [anon_sym_u64] = ACTIONS(2890), + [anon_sym_i64] = ACTIONS(2890), + [anon_sym_u128] = ACTIONS(2890), + [anon_sym_i128] = ACTIONS(2890), + [anon_sym_isize] = ACTIONS(2890), + [anon_sym_usize] = ACTIONS(2890), + [anon_sym_f32] = ACTIONS(2890), + [anon_sym_f64] = ACTIONS(2890), + [anon_sym_bool] = ACTIONS(2890), + [anon_sym_str] = ACTIONS(2890), + [anon_sym_char] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_COLON_COLON] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_gen] = ACTIONS(2917), + [anon_sym_impl] = ACTIONS(2920), + [anon_sym_let] = ACTIONS(2923), + [anon_sym_mod] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_trait] = ACTIONS(2938), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_use] = ACTIONS(2950), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2956), + [sym_super] = ACTIONS(2956), + [sym_crate] = ACTIONS(2959), + [sym_metavariable] = ACTIONS(2962), + }, + [STATE(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_macro_rules_BANG] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_u8] = ACTIONS(2959), - [anon_sym_i8] = ACTIONS(2959), - [anon_sym_u16] = ACTIONS(2959), - [anon_sym_i16] = ACTIONS(2959), - [anon_sym_u32] = ACTIONS(2959), - [anon_sym_i32] = ACTIONS(2959), - [anon_sym_u64] = ACTIONS(2959), - [anon_sym_i64] = ACTIONS(2959), - [anon_sym_u128] = ACTIONS(2959), - [anon_sym_i128] = ACTIONS(2959), - [anon_sym_isize] = ACTIONS(2959), - [anon_sym_usize] = ACTIONS(2959), - [anon_sym_f32] = ACTIONS(2959), - [anon_sym_f64] = ACTIONS(2959), - [anon_sym_bool] = ACTIONS(2959), - [anon_sym_str] = ACTIONS(2959), - [anon_sym_char] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_DOT_DOT] = ACTIONS(2957), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_POUND] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_default] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_gen] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_impl] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_loop] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_mod] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_trait] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_use] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_extern] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_move] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [sym_integer_literal] = ACTIONS(2957), - [aux_sym_string_literal_token1] = ACTIONS(2957), - [sym_char_literal] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2959), - [sym_super] = ACTIONS(2959), - [sym_crate] = ACTIONS(2959), - [sym_metavariable] = ACTIONS(2957), - [sym__raw_string_literal_start] = ACTIONS(2957), - [sym_float_literal] = ACTIONS(2957), - }, - [762] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3019), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2737), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_macro_rules_BANG] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_u8] = ACTIONS(2967), + [anon_sym_i8] = ACTIONS(2967), + [anon_sym_u16] = ACTIONS(2967), + [anon_sym_i16] = ACTIONS(2967), + [anon_sym_u32] = ACTIONS(2967), + [anon_sym_i32] = ACTIONS(2967), + [anon_sym_u64] = ACTIONS(2967), + [anon_sym_i64] = ACTIONS(2967), + [anon_sym_u128] = ACTIONS(2967), + [anon_sym_i128] = ACTIONS(2967), + [anon_sym_isize] = ACTIONS(2967), + [anon_sym_usize] = ACTIONS(2967), + [anon_sym_f32] = ACTIONS(2967), + [anon_sym_f64] = ACTIONS(2967), + [anon_sym_bool] = ACTIONS(2967), + [anon_sym_str] = ACTIONS(2967), + [anon_sym_char] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_gen] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_impl] = ACTIONS(2967), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_loop] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_mod] = ACTIONS(2967), + [anon_sym_pub] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_trait] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_use] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_move] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [sym_integer_literal] = ACTIONS(2965), + [aux_sym_string_literal_token1] = ACTIONS(2965), + [sym_char_literal] = ACTIONS(2965), + [anon_sym_true] = ACTIONS(2967), + [anon_sym_false] = ACTIONS(2967), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2967), + [sym_super] = ACTIONS(2967), + [sym_crate] = ACTIONS(2967), + [sym_metavariable] = ACTIONS(2965), + [sym__raw_string_literal_start] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), + }, + [STATE(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [763] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_macro_rules_BANG] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_u8] = ACTIONS(2971), + [anon_sym_i8] = ACTIONS(2971), + [anon_sym_u16] = ACTIONS(2971), + [anon_sym_i16] = ACTIONS(2971), + [anon_sym_u32] = ACTIONS(2971), + [anon_sym_i32] = ACTIONS(2971), + [anon_sym_u64] = ACTIONS(2971), + [anon_sym_i64] = ACTIONS(2971), + [anon_sym_u128] = ACTIONS(2971), + [anon_sym_i128] = ACTIONS(2971), + [anon_sym_isize] = ACTIONS(2971), + [anon_sym_usize] = ACTIONS(2971), + [anon_sym_f32] = ACTIONS(2971), + [anon_sym_f64] = ACTIONS(2971), + [anon_sym_bool] = ACTIONS(2971), + [anon_sym_str] = ACTIONS(2971), + [anon_sym_char] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_DOT_DOT] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_gen] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_impl] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_loop] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_mod] = ACTIONS(2971), + [anon_sym_pub] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_trait] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2971), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_move] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [sym_integer_literal] = ACTIONS(2969), + [aux_sym_string_literal_token1] = ACTIONS(2969), + [sym_char_literal] = ACTIONS(2969), + [anon_sym_true] = ACTIONS(2971), + [anon_sym_false] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2971), + [sym_super] = ACTIONS(2971), + [sym_crate] = ACTIONS(2971), + [sym_metavariable] = ACTIONS(2969), + [sym__raw_string_literal_start] = ACTIONS(2969), + [sym_float_literal] = ACTIONS(2969), + }, + [STATE(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [764] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_macro_rules_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_u8] = ACTIONS(2975), + [anon_sym_i8] = ACTIONS(2975), + [anon_sym_u16] = ACTIONS(2975), + [anon_sym_i16] = ACTIONS(2975), + [anon_sym_u32] = ACTIONS(2975), + [anon_sym_i32] = ACTIONS(2975), + [anon_sym_u64] = ACTIONS(2975), + [anon_sym_i64] = ACTIONS(2975), + [anon_sym_u128] = ACTIONS(2975), + [anon_sym_i128] = ACTIONS(2975), + [anon_sym_isize] = ACTIONS(2975), + [anon_sym_usize] = ACTIONS(2975), + [anon_sym_f32] = ACTIONS(2975), + [anon_sym_f64] = ACTIONS(2975), + [anon_sym_bool] = ACTIONS(2975), + [anon_sym_str] = ACTIONS(2975), + [anon_sym_char] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_gen] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_impl] = ACTIONS(2975), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_loop] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_mod] = ACTIONS(2975), + [anon_sym_pub] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_trait] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_unsafe] = ACTIONS(2975), + [anon_sym_use] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_move] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [sym_integer_literal] = ACTIONS(2973), + [aux_sym_string_literal_token1] = ACTIONS(2973), + [sym_char_literal] = ACTIONS(2973), + [anon_sym_true] = ACTIONS(2975), + [anon_sym_false] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2975), + [sym_super] = ACTIONS(2975), + [sym_crate] = ACTIONS(2975), + [sym_metavariable] = ACTIONS(2973), + [sym__raw_string_literal_start] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), + }, + [STATE(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_macro_rules_BANG] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_u8] = ACTIONS(2979), + [anon_sym_i8] = ACTIONS(2979), + [anon_sym_u16] = ACTIONS(2979), + [anon_sym_i16] = ACTIONS(2979), + [anon_sym_u32] = ACTIONS(2979), + [anon_sym_i32] = ACTIONS(2979), + [anon_sym_u64] = ACTIONS(2979), + [anon_sym_i64] = ACTIONS(2979), + [anon_sym_u128] = ACTIONS(2979), + [anon_sym_i128] = ACTIONS(2979), + [anon_sym_isize] = ACTIONS(2979), + [anon_sym_usize] = ACTIONS(2979), + [anon_sym_f32] = ACTIONS(2979), + [anon_sym_f64] = ACTIONS(2979), + [anon_sym_bool] = ACTIONS(2979), + [anon_sym_str] = ACTIONS(2979), + [anon_sym_char] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), [anon_sym_default] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_impl] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_loop] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_mod] = ACTIONS(2979), + [anon_sym_pub] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_trait] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [765] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_unsafe] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2979), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_move] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [aux_sym_string_literal_token1] = ACTIONS(2977), + [sym_char_literal] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2979), + [sym_super] = ACTIONS(2979), + [sym_crate] = ACTIONS(2979), + [sym_metavariable] = ACTIONS(2977), + [sym__raw_string_literal_start] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), + }, + [STATE(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [766] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_macro_rules_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_u8] = ACTIONS(2983), + [anon_sym_i8] = ACTIONS(2983), + [anon_sym_u16] = ACTIONS(2983), + [anon_sym_i16] = ACTIONS(2983), + [anon_sym_u32] = ACTIONS(2983), + [anon_sym_i32] = ACTIONS(2983), + [anon_sym_u64] = ACTIONS(2983), + [anon_sym_i64] = ACTIONS(2983), + [anon_sym_u128] = ACTIONS(2983), + [anon_sym_i128] = ACTIONS(2983), + [anon_sym_isize] = ACTIONS(2983), + [anon_sym_usize] = ACTIONS(2983), + [anon_sym_f32] = ACTIONS(2983), + [anon_sym_f64] = ACTIONS(2983), + [anon_sym_bool] = ACTIONS(2983), + [anon_sym_str] = ACTIONS(2983), + [anon_sym_char] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_DOT_DOT] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_async] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_default] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_gen] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_impl] = ACTIONS(2983), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_loop] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_mod] = ACTIONS(2983), + [anon_sym_pub] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_static] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_trait] = ACTIONS(2983), + [anon_sym_type] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_unsafe] = ACTIONS(2983), + [anon_sym_use] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2983), + [anon_sym_yield] = ACTIONS(2983), + [anon_sym_move] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [sym_integer_literal] = ACTIONS(2981), + [aux_sym_string_literal_token1] = ACTIONS(2981), + [sym_char_literal] = ACTIONS(2981), + [anon_sym_true] = ACTIONS(2983), + [anon_sym_false] = ACTIONS(2983), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2983), + [sym_super] = ACTIONS(2983), + [sym_crate] = ACTIONS(2983), + [sym_metavariable] = ACTIONS(2981), + [sym__raw_string_literal_start] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + }, + [STATE(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [767] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_pattern] = STATE(3444), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_macro_rules_BANG] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_u8] = ACTIONS(2987), + [anon_sym_i8] = ACTIONS(2987), + [anon_sym_u16] = ACTIONS(2987), + [anon_sym_i16] = ACTIONS(2987), + [anon_sym_u32] = ACTIONS(2987), + [anon_sym_i32] = ACTIONS(2987), + [anon_sym_u64] = ACTIONS(2987), + [anon_sym_i64] = ACTIONS(2987), + [anon_sym_u128] = ACTIONS(2987), + [anon_sym_i128] = ACTIONS(2987), + [anon_sym_isize] = ACTIONS(2987), + [anon_sym_usize] = ACTIONS(2987), + [anon_sym_f32] = ACTIONS(2987), + [anon_sym_f64] = ACTIONS(2987), + [anon_sym_bool] = ACTIONS(2987), + [anon_sym_str] = ACTIONS(2987), + [anon_sym_char] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_break] = ACTIONS(2987), + [anon_sym_const] = ACTIONS(2987), + [anon_sym_continue] = ACTIONS(2987), + [anon_sym_default] = ACTIONS(2987), + [anon_sym_enum] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2987), + [anon_sym_gen] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_impl] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_loop] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_mod] = ACTIONS(2987), + [anon_sym_pub] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2987), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2987), + [anon_sym_trait] = ACTIONS(2987), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_union] = ACTIONS(2987), + [anon_sym_unsafe] = ACTIONS(2987), + [anon_sym_use] = ACTIONS(2987), + [anon_sym_while] = ACTIONS(2987), + [anon_sym_extern] = ACTIONS(2987), + [anon_sym_yield] = ACTIONS(2987), + [anon_sym_move] = ACTIONS(2987), + [anon_sym_try] = ACTIONS(2987), + [sym_integer_literal] = ACTIONS(2985), + [aux_sym_string_literal_token1] = ACTIONS(2985), + [sym_char_literal] = ACTIONS(2985), + [anon_sym_true] = ACTIONS(2987), + [anon_sym_false] = ACTIONS(2987), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2987), + [sym_super] = ACTIONS(2987), + [sym_crate] = ACTIONS(2987), + [sym_metavariable] = ACTIONS(2985), + [sym__raw_string_literal_start] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + }, + [STATE(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [aux_sym_match_arm_repeat1] = STATE(1045), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [768] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_macro_rules_BANG] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_u8] = ACTIONS(2991), + [anon_sym_i8] = ACTIONS(2991), + [anon_sym_u16] = ACTIONS(2991), + [anon_sym_i16] = ACTIONS(2991), + [anon_sym_u32] = ACTIONS(2991), + [anon_sym_i32] = ACTIONS(2991), + [anon_sym_u64] = ACTIONS(2991), + [anon_sym_i64] = ACTIONS(2991), + [anon_sym_u128] = ACTIONS(2991), + [anon_sym_i128] = ACTIONS(2991), + [anon_sym_isize] = ACTIONS(2991), + [anon_sym_usize] = ACTIONS(2991), + [anon_sym_f32] = ACTIONS(2991), + [anon_sym_f64] = ACTIONS(2991), + [anon_sym_bool] = ACTIONS(2991), + [anon_sym_str] = ACTIONS(2991), + [anon_sym_char] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_DOT_DOT] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_break] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_continue] = ACTIONS(2991), + [anon_sym_default] = ACTIONS(2991), + [anon_sym_enum] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2991), + [anon_sym_gen] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_impl] = ACTIONS(2991), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_loop] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_mod] = ACTIONS(2991), + [anon_sym_pub] = ACTIONS(2991), + [anon_sym_return] = ACTIONS(2991), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2991), + [anon_sym_trait] = ACTIONS(2991), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_union] = ACTIONS(2991), + [anon_sym_unsafe] = ACTIONS(2991), + [anon_sym_use] = ACTIONS(2991), + [anon_sym_while] = ACTIONS(2991), + [anon_sym_extern] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2991), + [anon_sym_move] = ACTIONS(2991), + [anon_sym_try] = ACTIONS(2991), + [sym_integer_literal] = ACTIONS(2989), + [aux_sym_string_literal_token1] = ACTIONS(2989), + [sym_char_literal] = ACTIONS(2989), + [anon_sym_true] = ACTIONS(2991), + [anon_sym_false] = ACTIONS(2991), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2991), + [sym_super] = ACTIONS(2991), + [sym_crate] = ACTIONS(2991), + [sym_metavariable] = ACTIONS(2989), + [sym__raw_string_literal_start] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + }, + [STATE(768)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(3332), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2821), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [769] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_pattern] = STATE(3596), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(769)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_pattern] = STATE(3389), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), [aux_sym_match_arm_repeat1] = STATE(1045), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [770] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_const_parameter] = STATE(2953), - [sym_constrained_type_parameter] = STATE(2540), - [sym_optional_type_parameter] = STATE(2953), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3361), - [sym_qualified_type] = STATE(3468), - [sym_lifetime] = STATE(2338), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(770)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(3332), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2821), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(2077), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(3003), - }, - [771] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(913), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(771)] = { + [sym_attribute_item] = STATE(1423), + [sym_inner_attribute_item] = STATE(1423), + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_match_pattern] = STATE(3434), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2885), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), - }, - [772] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [aux_sym_match_arm_repeat1] = STATE(1045), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(772)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(3332), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2821), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [773] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(773)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(3332), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2821), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [sym_block_comment] = STATE(773), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), - }, - [774] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(774)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym_closure_expression] = STATE(3332), + [sym_closure_parameters] = STATE(239), + [sym__pattern] = STATE(2821), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(775)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(982), + [sym__type] = STATE(2634), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [aux_sym_enum_variant_list_repeat1] = STATE(806), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_RPAREN] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93472,66 +93696,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3005), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [775] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(775), - [sym_block_comment] = STATE(775), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(776)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_const_parameter] = STATE(3005), + [sym_constrained_type_parameter] = STATE(2747), + [sym_optional_type_parameter] = STATE(3005), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3378), + [sym_qualified_type] = STATE(3381), + [sym_lifetime] = STATE(2412), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [aux_sym_enum_variant_list_repeat1] = STATE(2076), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3021), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93549,66 +93776,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3017), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(3019), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), - }, - [776] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(3021), + }, + [STATE(777)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3023), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93626,66 +93852,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [777] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(778)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3025), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93703,66 +93929,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [778] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(779)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2632), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(780)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3027), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93780,65 +94083,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [779] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(781)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3029), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93856,217 +94160,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [780] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2738), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [STATE(782)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2683), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [781] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2669), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(783)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2567), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(3035), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [782] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(904), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(1061), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(784)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2664), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(784), + [sym_block_comment] = STATE(784), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3039), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(785)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2712), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3043), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(786)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3047), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94084,65 +94545,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [783] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(907), - [sym__type] = STATE(2916), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(1061), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(787)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(787), + [sym_block_comment] = STATE(787), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3049), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94160,4009 +94622,4059 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), + [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [784] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2671), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(784), - [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [785] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2700), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(785), - [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [786] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2670), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(786), - [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [787] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2723), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(787), - [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [788] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [STATE(788)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2711), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [789] = { - [sym_parameter] = STATE(2768), - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2593), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(789)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(3051), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [790] = { - [sym_parameter] = STATE(3214), - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2980), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(790)] = { + [sym_parameter] = STATE(2830), + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2594), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(3057), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [791] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3061), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(791)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [792] = { - [sym_parameter] = STATE(2768), - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2417), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(792)] = { + [sym_parameter] = STATE(2830), + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2473), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(3051), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(3057), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [793] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2690), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3061), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(793)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3061), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [794] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(794)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [795] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(795)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(891), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [796] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3013), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(796)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [797] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(797)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [798] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(798)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [799] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(799)] = { + [sym_parameter] = STATE(3127), + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2779), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [800] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3061), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(800)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [801] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(801)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [aux_sym_enum_variant_list_repeat1] = STATE(795), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [802] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3013), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(802)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [803] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(803)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3081), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [804] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3333), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(804)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2570), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(805)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(3085), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(806)] = { + [sym_attribute_item] = STATE(1448), + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [805] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2877), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(805), - [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [806] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(3006), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(806), - [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [807] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3013), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(807)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_RBRACK] = ACTIONS(3087), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [808] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2886), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(808)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2981), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [809] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2119), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(809)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2644), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [810] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(810)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3343), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3083), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [811] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2124), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(811)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3001), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [812] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3051), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(812)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2147), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [813] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2412), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(813)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2881), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [814] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3239), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(814)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2968), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [815] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2122), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(815)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2449), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [816] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2436), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(3089), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(816)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3087), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3085), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [817] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3114), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(817)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2497), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [818] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2493), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(818)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2670), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [819] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(819)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2119), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [820] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3313), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(820)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2146), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [821] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2933), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(821)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2122), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [822] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2411), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(822)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2963), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(3095), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(823)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2855), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [823] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2935), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(823), - [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [824] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2530), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(824)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2501), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(3097), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [825] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(825)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3136), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [826] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2872), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(826)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2971), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [827] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3120), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(827)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2120), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [828] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2106), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(828)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2105), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [829] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2936), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(829)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2116), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [830] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2142), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(830)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3253), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [831] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3308), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(831)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(2470), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [832] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3326), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(832)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(2964), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [833] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3330), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(833)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3050), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [834] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3331), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(834)] = { + [sym_bracketed_type] = STATE(3573), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3305), + [sym_macro_invocation] = STATE(2868), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2926), + [sym_const_block] = STATE(2868), + [sym__pattern] = STATE(3003), + [sym_generic_pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2868), + [sym_slice_pattern] = STATE(2868), + [sym_tuple_struct_pattern] = STATE(2868), + [sym_struct_pattern] = STATE(2868), + [sym_remaining_field_pattern] = STATE(2868), + [sym_mut_pattern] = STATE(2868), + [sym_range_pattern] = STATE(2868), + [sym_ref_pattern] = STATE(2868), + [sym_captured_pattern] = STATE(2868), + [sym_reference_pattern] = STATE(2868), + [sym_or_pattern] = STATE(2868), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2344), + [sym_string_literal] = STATE(2344), + [sym_raw_string_literal] = STATE(2344), + [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [835] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3332), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), + }, + [STATE(835)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3326), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [836] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3007), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(836)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3342), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [837] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3262), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(837)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3346), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(838)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3347), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(839)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3348), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(840)] = { + [sym_bracketed_type] = STATE(3591), + [sym_generic_type] = STATE(3596), + [sym_generic_type_with_turbofish] = STATE(3144), + [sym_macro_invocation] = STATE(2135), + [sym_scoped_identifier] = STATE(1981), + [sym_scoped_type_identifier] = STATE(2852), + [sym_const_block] = STATE(2135), + [sym__pattern] = STATE(3349), + [sym_generic_pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(2135), + [sym_slice_pattern] = STATE(2135), + [sym_tuple_struct_pattern] = STATE(2135), + [sym_struct_pattern] = STATE(2135), + [sym_remaining_field_pattern] = STATE(2135), + [sym_mut_pattern] = STATE(2135), + [sym_range_pattern] = STATE(2135), + [sym_ref_pattern] = STATE(2135), + [sym_captured_pattern] = STATE(2135), + [sym_reference_pattern] = STATE(2135), + [sym_or_pattern] = STATE(2135), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2027), + [sym_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_u8] = ACTIONS(1999), + [anon_sym_i8] = ACTIONS(1999), + [anon_sym_u16] = ACTIONS(1999), + [anon_sym_i16] = ACTIONS(1999), + [anon_sym_u32] = ACTIONS(1999), + [anon_sym_i32] = ACTIONS(1999), + [anon_sym_u64] = ACTIONS(1999), + [anon_sym_i64] = ACTIONS(1999), + [anon_sym_u128] = ACTIONS(1999), + [anon_sym_i128] = ACTIONS(1999), + [anon_sym_isize] = ACTIONS(1999), + [anon_sym_usize] = ACTIONS(1999), + [anon_sym_f32] = ACTIONS(1999), + [anon_sym_f64] = ACTIONS(1999), + [anon_sym_bool] = ACTIONS(1999), + [anon_sym_str] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2007), + [anon_sym_gen] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_ref] = ACTIONS(1309), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1315), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(1327), + [sym_float_literal] = ACTIONS(1315), + }, + [STATE(841)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98180,23 +98692,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(3101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98204,111 +98716,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [838] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1381), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [sym_mutable_specifier] = ACTIONS(3127), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [839] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(842)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98326,62 +98765,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(3103), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3135), + [sym_self] = ACTIONS(3105), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [840] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(843)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1694), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [sym_mutable_specifier] = ACTIONS(3137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(844)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3151), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98399,23 +98911,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(3143), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98423,111 +98935,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [841] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1772), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [sym_mutable_specifier] = ACTIONS(3169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [842] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(953), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2354), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2402), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2194), - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3175), + [STATE(845)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [sym_mutable_specifier] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(846)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(847)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(848)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_type_parameters] = STATE(967), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2388), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2394), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2200), + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3185), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98545,22 +99201,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3187), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98568,38 +99224,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [843] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2166), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2169), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2171), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(849)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3191), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98617,22 +99273,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98640,37 +99296,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [844] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(844), - [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(850)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3378), + [sym_qualified_type] = STATE(3381), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98688,23 +99345,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98712,38 +99368,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [845] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(851)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2603), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_RPAREN] = ACTIONS(3193), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98761,22 +99417,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98784,38 +99440,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [846] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(846), - [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(852)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3090), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(844), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3187), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98833,22 +99488,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(3195), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98856,38 +99512,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [847] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(847), - [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(853)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_type_parameters] = STATE(968), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2382), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2161), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3197), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3189), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98905,22 +99561,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3199), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98928,37 +99584,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [848] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(848), - [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(854)] = { + [sym_function_modifiers] = STATE(3549), + [sym_higher_ranked_trait_bound] = STATE(2244), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2245), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2246), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98976,23 +99633,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(3201), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99000,38 +99656,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [849] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2571), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(849), - [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(855)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2546), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3203), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99049,22 +99705,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99072,38 +99728,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [850] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(850), - [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(856)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3195), + [anon_sym_RPAREN] = ACTIONS(3205), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99121,22 +99777,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99144,38 +99800,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [851] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(857)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_RPAREN] = ACTIONS(3207), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99193,22 +99849,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99216,38 +99872,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [852] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(858)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1496), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [sym_mutable_specifier] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(859)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2665), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3199), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99265,22 +99992,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3211), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99288,38 +100016,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [853] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2220), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2224), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(860)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1771), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(843), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [sym_mutable_specifier] = ACTIONS(3213), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(861)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_type_parameters] = STATE(972), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2356), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2406), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2186), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3215), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99337,22 +100137,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3217), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99360,38 +100160,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [854] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2227), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2228), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(862)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2731), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3219), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99409,22 +100209,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99432,38 +100232,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [855] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2227), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2224), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(863)] = { + [sym_function_modifiers] = STATE(3549), + [sym_higher_ranked_trait_bound] = STATE(2244), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2247), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2246), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99481,22 +100281,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(3201), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99504,110 +100304,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [856] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(838), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [sym_mutable_specifier] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [857] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3361), - [sym_qualified_type] = STATE(3468), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(864)] = { + [sym_function_modifiers] = STATE(3549), + [sym_higher_ranked_trait_bound] = STATE(2181), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2185), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2188), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99625,22 +100353,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(3201), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99648,254 +100376,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [858] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(939), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2397), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2192), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - }, - [859] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(841), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [sym_mutable_specifier] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [860] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(955), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2398), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2152), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), - }, - [861] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(889), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2315), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2167), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3213), + [STATE(865)] = { + [sym_function_modifiers] = STATE(3549), + [sym_higher_ranked_trait_bound] = STATE(2244), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2247), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2248), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99913,22 +100425,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(3201), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99936,38 +100448,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [862] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(866)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_RPAREN] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99985,22 +100497,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100008,38 +100520,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [863] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2747), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(867)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(841), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3219), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100057,22 +100568,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(3223), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100080,37 +100592,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [864] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3117), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(868)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3225), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100128,23 +100641,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3221), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100152,37 +100664,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [865] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(869)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_type_parameters] = STATE(981), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2360), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2411), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2191), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3227), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100200,23 +100713,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3229), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100224,37 +100736,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [866] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(870)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1792), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(871)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1457), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(872)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1387), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(873)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100272,22 +100997,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100295,37 +101020,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [867] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3129), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(874)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(875)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(876)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1385), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(877)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(878)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(879)] = { + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [sym_identifier] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_RBRACK] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2359), + [anon_sym_i8] = ACTIONS(2359), + [anon_sym_u16] = ACTIONS(2359), + [anon_sym_i16] = ACTIONS(2359), + [anon_sym_u32] = ACTIONS(2359), + [anon_sym_i32] = ACTIONS(2359), + [anon_sym_u64] = ACTIONS(2359), + [anon_sym_i64] = ACTIONS(2359), + [anon_sym_u128] = ACTIONS(2359), + [anon_sym_i128] = ACTIONS(2359), + [anon_sym_isize] = ACTIONS(2359), + [anon_sym_usize] = ACTIONS(2359), + [anon_sym_f32] = ACTIONS(2359), + [anon_sym_f64] = ACTIONS(2359), + [anon_sym_bool] = ACTIONS(2359), + [anon_sym_str] = ACTIONS(2359), + [anon_sym_char] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym__] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_gen] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_unsafe] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_ref] = ACTIONS(2359), + [sym_mutable_specifier] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_move] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [sym_integer_literal] = ACTIONS(2357), + [aux_sym_string_literal_token1] = ACTIONS(2357), + [sym_char_literal] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(2359), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2357), + [sym__raw_string_literal_start] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), + }, + [STATE(880)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2018), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100343,22 +101494,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100366,37 +101517,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [868] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2930), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(881)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1379), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(882)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1380), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(883)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(884)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2001), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100414,22 +101778,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100437,37 +101801,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [869] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3262), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(885)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1427), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(886)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2017), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100485,22 +101920,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100508,37 +101943,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [870] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2202), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(887)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2239), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100556,22 +101991,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100579,463 +102014,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [871] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1380), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [872] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1381), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [873] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1777), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [874] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [875] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1778), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [876] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1730), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [877] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2747), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(888)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2543), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101053,22 +102062,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101076,108 +102085,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [878] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [879] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2014), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(1999), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(889)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101195,22 +102133,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101218,37 +102156,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [880] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2767), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(890)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1481), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(891)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2818), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101266,22 +102275,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101289,37 +102298,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [881] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2368), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(892)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101337,22 +102346,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101360,37 +102369,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [882] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2371), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(893)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101408,486 +102417,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), + [sym_self] = ACTIONS(3231), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [883] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [884] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1737), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [885] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [886] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [887] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [888] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1407), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [889] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2365), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2366), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2175), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3225), + [STATE(894)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2231), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101905,22 +102488,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101928,179 +102511,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [890] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1409), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [891] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [892] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2345), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(895)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2020), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102118,22 +102559,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102141,37 +102582,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [893] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(896)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2013), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102189,22 +102630,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102212,179 +102653,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [894] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1693), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [895] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1412), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [896] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2571), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(897)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2494), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102402,22 +102701,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102425,37 +102724,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [897] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2642), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(898)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2353), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102473,22 +102772,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102496,179 +102795,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [898] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [899] = { + [STATE(899)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1691), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym__] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_COLON_COLON] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_gen] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_ref] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_move] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2099), - [aux_sym_string_literal_token1] = ACTIONS(2099), - [sym_char_literal] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2099), - [sym__raw_string_literal_start] = ACTIONS(2099), - [sym_float_literal] = ACTIONS(2099), - }, - [900] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2951), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(900)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1694), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(901)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1816), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(902)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3007), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102686,22 +103056,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102709,37 +103079,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [901] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(903)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1713), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(904)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1851), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(905)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1715), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(906)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1783), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(907)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1845), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(908)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2354), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102757,22 +103482,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102780,37 +103505,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [902] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(909)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1736), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(910)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1741), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(911)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1660), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(912)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102828,22 +103766,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102851,37 +103789,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [903] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2408), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(913)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2229), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102899,22 +103837,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102922,37 +103860,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [904] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2618), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(914)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1731), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(915)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2327), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102970,22 +103979,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102993,37 +104002,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [905] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(916)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103041,22 +104050,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103064,37 +104073,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [906] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(917)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3032), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103112,22 +104121,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103135,37 +104144,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [907] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3035), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(918)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2894), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103183,22 +104192,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103206,108 +104215,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [908] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1460), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [909] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3002), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(919)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103325,22 +104263,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103348,108 +104286,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [910] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1461), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [911] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2851), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(920)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2004), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103467,22 +104334,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103490,108 +104357,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [912] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1466), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [913] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(921)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103609,22 +104405,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103632,37 +104428,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [914] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(922)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2551), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103680,22 +104476,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103703,37 +104499,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [915] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2201), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(923)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1991), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103751,22 +104547,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103774,37 +104570,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [916] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2916), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(924)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103822,22 +104618,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103845,37 +104641,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [917] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2904), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(925)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3069), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103893,22 +104689,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103916,37 +104712,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [918] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2586), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(926)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103964,22 +104760,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103987,108 +104783,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [919] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1392), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [920] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2963), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(927)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2647), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104106,22 +104831,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104129,37 +104854,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [921] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2313), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(928)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2861), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104177,22 +104902,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104200,37 +104925,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [922] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(929)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2804), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104248,22 +104973,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104271,37 +104996,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [923] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(930)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104319,22 +105044,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104342,37 +105067,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [924] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1997), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(931)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104390,22 +105115,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104413,37 +105138,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [925] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2327), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(932)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2324), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104461,22 +105186,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104484,37 +105209,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [926] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2250), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(933)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2749), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104532,22 +105257,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104555,37 +105280,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [927] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(934)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104603,22 +105328,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104626,108 +105351,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [928] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [929] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2517), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(935)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104745,22 +105399,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104768,37 +105422,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [930] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2237), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(936)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1495), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(937)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2665), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104816,22 +105541,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104839,37 +105564,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [931] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3260), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(938)] = { + [sym_function_modifiers] = STATE(3659), + [sym_removed_trait_bound] = STATE(1784), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1861), + [sym_bracketed_type] = STATE(3579), + [sym_lifetime] = STATE(3433), + [sym_array_type] = STATE(1784), + [sym_for_lifetimes] = STATE(1595), + [sym_function_type] = STATE(1784), + [sym_tuple_type] = STATE(1784), + [sym_unit_type] = STATE(1784), + [sym_generic_type] = STATE(1607), + [sym_generic_type_with_turbofish] = STATE(3571), + [sym_bounded_type] = STATE(1784), + [sym_reference_type] = STATE(1784), + [sym_pointer_type] = STATE(1784), + [sym_never_type] = STATE(1784), + [sym_abstract_type] = STATE(1784), + [sym_dynamic_type] = STATE(1784), + [sym_macro_invocation] = STATE(1784), + [sym_scoped_identifier] = STATE(3307), + [sym_scoped_type_identifier] = STATE(1556), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3141), + }, + [STATE(939)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2731), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104887,22 +105683,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104910,37 +105706,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [932] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(940)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2000), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104958,22 +105754,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3017), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104981,37 +105777,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [933] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2014), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(1999), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(941)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105029,22 +105825,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105052,37 +105848,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [934] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(942)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3150), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105100,22 +105896,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105123,37 +105919,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [935] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2356), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(943)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3151), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105171,22 +105967,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105194,37 +105990,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [936] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3271), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(944)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105242,22 +106038,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105265,37 +106061,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [937] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2783), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(945)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2603), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105313,22 +106109,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105336,37 +106132,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [938] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(946)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2000), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105384,22 +106180,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105407,37 +106203,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [939] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2346), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2400), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2193), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3229), + [STATE(947)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2000), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105455,22 +106251,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105478,37 +106274,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [940] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(948)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2376), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105526,22 +106322,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105549,37 +106345,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [941] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(949)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2877), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105597,22 +106393,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105620,37 +106416,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [942] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2373), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(950)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2378), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105668,22 +106464,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105691,37 +106487,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [943] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2014), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(951)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2934), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105739,22 +106535,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105762,108 +106558,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [944] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(944), - [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [945] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2784), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(952)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2381), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105881,22 +106606,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105904,37 +106629,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [946] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(953)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105952,22 +106677,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105975,37 +106700,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [947] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2383), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(954)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3034), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106023,22 +106748,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106046,37 +106771,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [948] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(955)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3197), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106094,22 +106819,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106117,108 +106842,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [949] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1772), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [950] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2801), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(956)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2019), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106236,22 +106890,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106259,37 +106913,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [951] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(957)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3196), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106307,22 +106961,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106330,37 +106984,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [952] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2550), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(958)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2339), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106378,22 +107032,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106401,37 +107055,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [953] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2404), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2168), - [sym_line_comment] = STATE(953), - [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3233), + [STATE(959)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2211), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106449,22 +107103,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106472,37 +107126,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [954] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2900), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(954), - [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(960)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2340), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106520,22 +107174,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106543,37 +107197,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [955] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2363), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2405), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2155), - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3237), + [STATE(961)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106591,22 +107245,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106614,37 +107268,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [956] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(962)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2897), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106662,22 +107316,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106685,37 +107339,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [957] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2310), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(963)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2488), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106733,22 +107387,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106756,37 +107410,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [958] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(964)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2546), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106804,22 +107458,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106827,37 +107481,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [959] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(965)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106875,22 +107529,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106898,37 +107552,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [960] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2403), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(966)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106946,22 +107600,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106969,37 +107623,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [961] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2678), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(967)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2342), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2416), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2167), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3233), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107017,22 +107671,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3235), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107040,37 +107694,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [962] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(968)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2379), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2380), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2165), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3237), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107088,22 +107742,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3239), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107111,37 +107765,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [963] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(969)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107159,22 +107813,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107182,37 +107836,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [964] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2686), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(970)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2532), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107230,22 +107884,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107253,37 +107907,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [965] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2853), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(971)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3016), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107301,22 +107955,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107324,37 +107978,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [966] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2701), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(972)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2400), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2409), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2189), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3241), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107372,22 +108026,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107395,37 +108049,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [967] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(973)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107443,22 +108097,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107466,37 +108120,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [968] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2319), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(974)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2813), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107514,22 +108168,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107537,37 +108191,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [969] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2320), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(975)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2331), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107585,22 +108239,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107608,37 +108262,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [970] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(976)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2332), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107656,22 +108310,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107679,37 +108333,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [971] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(977)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2753), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107727,22 +108381,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107750,37 +108404,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [972] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2478), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(978)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2849), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107798,22 +108452,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107821,37 +108475,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [973] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2322), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(979)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2526), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107869,22 +108523,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107892,37 +108546,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [974] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(980)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107940,22 +108594,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107963,37 +108617,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [975] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(981)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2333), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(2413), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(2193), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3245), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108011,22 +108665,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3247), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108034,37 +108688,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [976] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2325), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(982)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108082,22 +108736,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108105,37 +108759,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [977] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2226), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(983)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2224), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108153,22 +108807,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108176,37 +108830,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [978] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2522), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(984)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2367), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108224,22 +108878,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108247,37 +108901,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [979] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2240), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(985)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2370), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108295,22 +108949,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108318,37 +108972,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [980] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(986)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2372), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108366,22 +109020,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108389,37 +109043,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [981] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(981), - [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(987)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2373), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108437,22 +109091,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108460,37 +109114,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [982] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(988)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108508,22 +109162,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108531,37 +109185,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [983] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2229), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(989)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2741), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108579,22 +109233,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108602,37 +109256,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [984] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2243), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(990)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2933), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108650,22 +109304,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108673,37 +109327,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [985] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(991)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108721,22 +109375,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108744,37 +109398,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [986] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2230), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(992)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2672), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108792,22 +109446,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108815,37 +109469,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [987] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2750), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(993)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2944), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108863,22 +109517,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108886,37 +109540,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [988] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2231), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(994)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108934,22 +109588,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108957,37 +109611,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [989] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2578), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(995)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2230), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109005,22 +109659,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109028,37 +109682,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [990] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(996)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2398), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109076,22 +109730,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109099,37 +109753,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [991] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(997)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2399), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109147,22 +109801,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109170,37 +109824,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [992] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2912), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(992), - [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(998)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2985), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109218,22 +109872,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109241,108 +109895,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [993] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(993), - [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [994] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(994), - [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(999)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2405), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109360,22 +109943,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109383,37 +109966,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [995] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(995), - [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1000)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2408), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109431,22 +110014,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109454,37 +110037,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [996] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(996), - [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1001)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2410), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109502,22 +110085,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109525,37 +110108,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [997] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2003), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1002)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109573,22 +110156,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109596,37 +110179,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [998] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2861), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1003)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2232), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109644,22 +110227,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109667,37 +110250,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [999] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1004)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2630), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109715,131 +110298,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3241), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1000] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1436), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [1001] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3325), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1005)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109857,22 +110369,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109880,37 +110392,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1002] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1006)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109928,22 +110440,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109951,37 +110463,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1003] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2008), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1007)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2234), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109999,22 +110511,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110022,108 +110534,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1004] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1860), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [1005] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1008)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110141,22 +110582,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110164,37 +110605,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1006] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1009)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2235), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110212,22 +110653,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110235,37 +110676,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1007] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2009), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1010)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2236), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110283,22 +110724,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110306,37 +110747,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1008] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2010), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1011)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(2782), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110354,22 +110795,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110377,37 +110818,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1009] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2511), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [STATE(1012)] = { + [sym_function_modifiers] = STATE(3383), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(1455), + [sym_bracketed_type] = STATE(3564), + [sym_lifetime] = STATE(3454), + [sym_array_type] = STATE(1459), + [sym_for_lifetimes] = STATE(1588), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(1459), + [sym_generic_type] = STATE(1306), + [sym_generic_type_with_turbofish] = STATE(3553), + [sym_bounded_type] = STATE(1459), + [sym_reference_type] = STATE(1459), + [sym_pointer_type] = STATE(1459), + [sym_never_type] = STATE(1459), + [sym_abstract_type] = STATE(1459), + [sym_dynamic_type] = STATE(1459), + [sym_macro_invocation] = STATE(1459), + [sym_scoped_identifier] = STATE(3239), + [sym_scoped_type_identifier] = STATE(1049), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u128] = ACTIONS(3157), + [anon_sym_i128] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_str] = ACTIONS(3157), + [anon_sym_char] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3163), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_gen] = ACTIONS(3169), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3177), + [sym_super] = ACTIONS(3177), + [sym_crate] = ACTIONS(3177), + [sym_metavariable] = ACTIONS(3179), + }, + [STATE(1013)] = { + [sym_function_modifiers] = STATE(3549), + [sym_removed_trait_bound] = STATE(1995), + [sym_extern_modifier] = STATE(2365), + [sym__type] = STATE(3116), + [sym_bracketed_type] = STATE(3378), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1995), + [sym_for_lifetimes] = STATE(1578), + [sym_function_type] = STATE(1995), + [sym_tuple_type] = STATE(1995), + [sym_unit_type] = STATE(1995), + [sym_generic_type] = STATE(1983), + [sym_generic_type_with_turbofish] = STATE(3382), + [sym_bounded_type] = STATE(1995), + [sym_reference_type] = STATE(1995), + [sym_pointer_type] = STATE(1995), + [sym_never_type] = STATE(1995), + [sym_abstract_type] = STATE(1995), + [sym_dynamic_type] = STATE(1995), + [sym_macro_invocation] = STATE(1995), + [sym_scoped_identifier] = STATE(3273), + [sym_scoped_type_identifier] = STATE(1939), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1267), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110425,22 +110937,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1299), + [anon_sym_for] = ACTIONS(1301), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_dyn] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110448,152 +110960,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1010] = { - [sym_attribute_item] = STATE(1011), - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_u8] = ACTIONS(3243), - [anon_sym_i8] = ACTIONS(3243), - [anon_sym_u16] = ACTIONS(3243), - [anon_sym_i16] = ACTIONS(3243), - [anon_sym_u32] = ACTIONS(3243), - [anon_sym_i32] = ACTIONS(3243), - [anon_sym_u64] = ACTIONS(3243), - [anon_sym_i64] = ACTIONS(3243), - [anon_sym_u128] = ACTIONS(3243), - [anon_sym_i128] = ACTIONS(3243), - [anon_sym_isize] = ACTIONS(3243), - [anon_sym_usize] = ACTIONS(3243), - [anon_sym_f32] = ACTIONS(3243), - [anon_sym_f64] = ACTIONS(3243), - [anon_sym_bool] = ACTIONS(3243), - [anon_sym_str] = ACTIONS(3243), - [anon_sym_char] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_gen] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_loop] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_move] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [sym_integer_literal] = ACTIONS(789), - [aux_sym_string_literal_token1] = ACTIONS(789), - [sym_char_literal] = ACTIONS(789), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_crate] = ACTIONS(3243), - [sym_metavariable] = ACTIONS(789), - [sym__raw_string_literal_start] = ACTIONS(789), - [sym_float_literal] = ACTIONS(789), - }, - [1011] = { - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [sym_identifier] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_RBRACK] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_u8] = ACTIONS(3245), - [anon_sym_i8] = ACTIONS(3245), - [anon_sym_u16] = ACTIONS(3245), - [anon_sym_i16] = ACTIONS(3245), - [anon_sym_u32] = ACTIONS(3245), - [anon_sym_i32] = ACTIONS(3245), - [anon_sym_u64] = ACTIONS(3245), - [anon_sym_i64] = ACTIONS(3245), - [anon_sym_u128] = ACTIONS(3245), - [anon_sym_i128] = ACTIONS(3245), - [anon_sym_isize] = ACTIONS(3245), - [anon_sym_usize] = ACTIONS(3245), - [anon_sym_f32] = ACTIONS(3245), - [anon_sym_f64] = ACTIONS(3245), - [anon_sym_bool] = ACTIONS(3245), - [anon_sym_str] = ACTIONS(3245), - [anon_sym_char] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_gen] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_loop] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_move] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [sym_integer_literal] = ACTIONS(3247), - [aux_sym_string_literal_token1] = ACTIONS(3247), - [sym_char_literal] = ACTIONS(3247), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_crate] = ACTIONS(3245), - [sym_metavariable] = ACTIONS(3247), - [sym__raw_string_literal_start] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - }, - [1012] = { - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), + [STATE(1014)] = { + [sym_attribute_item] = STATE(1015), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), [anon_sym_u8] = ACTIONS(3249), [anon_sym_i8] = ACTIONS(3249), [anon_sym_u16] = ACTIONS(3249), @@ -110611,15 +110988,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(3249), [anon_sym_str] = ACTIONS(3249), [anon_sym_char] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym__] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_DASH_GT] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_COLON_COLON] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(785), [anon_sym_SQUOTE] = ACTIONS(3249), [anon_sym_async] = ACTIONS(3249), [anon_sym_break] = ACTIONS(3249), @@ -110639,9 +111016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3249), [anon_sym_move] = ACTIONS(3249), [anon_sym_try] = ACTIONS(3249), - [sym_integer_literal] = ACTIONS(3251), - [aux_sym_string_literal_token1] = ACTIONS(3251), - [sym_char_literal] = ACTIONS(3251), + [sym_integer_literal] = ACTIONS(759), + [aux_sym_string_literal_token1] = ACTIONS(759), + [sym_char_literal] = ACTIONS(759), [anon_sym_true] = ACTIONS(3249), [anon_sym_false] = ACTIONS(3249), [anon_sym_SLASH_SLASH] = ACTIONS(103), @@ -110649,13 +111026,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(3249), [sym_super] = ACTIONS(3249), [sym_crate] = ACTIONS(3249), - [sym_metavariable] = ACTIONS(3251), - [sym__raw_string_literal_start] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - }, - [1013] = { - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), + [sym_metavariable] = ACTIONS(759), + [sym__raw_string_literal_start] = ACTIONS(759), + [sym_float_literal] = ACTIONS(759), + }, + [STATE(1015)] = { + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [sym_identifier] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_RBRACK] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_u8] = ACTIONS(3251), + [anon_sym_i8] = ACTIONS(3251), + [anon_sym_u16] = ACTIONS(3251), + [anon_sym_i16] = ACTIONS(3251), + [anon_sym_u32] = ACTIONS(3251), + [anon_sym_i32] = ACTIONS(3251), + [anon_sym_u64] = ACTIONS(3251), + [anon_sym_i64] = ACTIONS(3251), + [anon_sym_u128] = ACTIONS(3251), + [anon_sym_i128] = ACTIONS(3251), + [anon_sym_isize] = ACTIONS(3251), + [anon_sym_usize] = ACTIONS(3251), + [anon_sym_f32] = ACTIONS(3251), + [anon_sym_f64] = ACTIONS(3251), + [anon_sym_bool] = ACTIONS(3251), + [anon_sym_str] = ACTIONS(3251), + [anon_sym_char] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_DOT_DOT] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_COLON_COLON] = ACTIONS(3253), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_gen] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_loop] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_union] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_move] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [sym_integer_literal] = ACTIONS(3253), + [aux_sym_string_literal_token1] = ACTIONS(3253), + [sym_char_literal] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_crate] = ACTIONS(3251), + [sym_metavariable] = ACTIONS(3253), + [sym__raw_string_literal_start] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + }, + [STATE(1016)] = { + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [sym_identifier] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_u8] = ACTIONS(3255), + [anon_sym_i8] = ACTIONS(3255), + [anon_sym_u16] = ACTIONS(3255), + [anon_sym_i16] = ACTIONS(3255), + [anon_sym_u32] = ACTIONS(3255), + [anon_sym_i32] = ACTIONS(3255), + [anon_sym_u64] = ACTIONS(3255), + [anon_sym_i64] = ACTIONS(3255), + [anon_sym_u128] = ACTIONS(3255), + [anon_sym_i128] = ACTIONS(3255), + [anon_sym_isize] = ACTIONS(3255), + [anon_sym_usize] = ACTIONS(3255), + [anon_sym_f32] = ACTIONS(3255), + [anon_sym_f64] = ACTIONS(3255), + [anon_sym_bool] = ACTIONS(3255), + [anon_sym_str] = ACTIONS(3255), + [anon_sym_char] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym__] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3257), + [anon_sym_DASH_GT] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_gen] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_loop] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_union] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_move] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [sym_integer_literal] = ACTIONS(3257), + [aux_sym_string_literal_token1] = ACTIONS(3257), + [sym_char_literal] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_crate] = ACTIONS(3255), + [sym_metavariable] = ACTIONS(3257), + [sym__raw_string_literal_start] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + }, + [STATE(1017)] = { + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), [sym_identifier] = ACTIONS(1587), [anon_sym_LPAREN] = ACTIONS(1589), [anon_sym_LBRACK] = ACTIONS(1589), @@ -110728,10 +111240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1014), 2, + STATE(1018), 2, sym_line_comment, sym_block_comment, - ACTIONS(1097), 18, + ACTIONS(1121), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -110750,7 +111262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3253), 42, + ACTIONS(3259), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110798,10 +111310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1015), 2, + STATE(1019), 2, sym_line_comment, sym_block_comment, - ACTIONS(2099), 17, + ACTIONS(2357), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -110819,7 +111331,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2101), 39, + ACTIONS(2359), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110864,10 +111376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1016), 2, + STATE(1020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3257), 20, + ACTIONS(3263), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110888,7 +111400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3255), 35, + ACTIONS(3261), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110931,50 +111443,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(1271), 1, anon_sym_DASH, - ACTIONS(1341), 1, + ACTIONS(1317), 1, aux_sym_string_literal_token1, - ACTIONS(1351), 1, + ACTIONS(1327), 1, sym__raw_string_literal_start, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(3259), 1, + ACTIONS(3265), 1, sym_identifier, - ACTIONS(3269), 1, + ACTIONS(3275), 1, sym_metavariable, - STATE(2074), 1, + STATE(2085), 1, sym_scoped_identifier, - STATE(2129), 1, + STATE(2128), 1, sym__literal_pattern, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - ACTIONS(1343), 2, + ACTIONS(1319), 2, anon_sym_true, anon_sym_false, - STATE(1017), 2, + STATE(1021), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 3, + ACTIONS(1315), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3263), 3, + ACTIONS(3269), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3267), 3, + ACTIONS(3273), 3, sym_self, sym_super, sym_crate, - STATE(2037), 4, + STATE(2027), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3261), 7, + ACTIONS(3267), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -110982,7 +111494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3265), 20, + ACTIONS(3271), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111010,50 +111522,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(1271), 1, anon_sym_DASH, - ACTIONS(1341), 1, + ACTIONS(1317), 1, aux_sym_string_literal_token1, - ACTIONS(1351), 1, + ACTIONS(1327), 1, sym__raw_string_literal_start, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(3271), 1, + ACTIONS(3277), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(2079), 1, + STATE(2071), 1, sym_scoped_identifier, - STATE(2121), 1, + STATE(2107), 1, sym__literal_pattern, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - ACTIONS(1343), 2, + ACTIONS(1319), 2, anon_sym_true, anon_sym_false, - STATE(1018), 2, + STATE(1022), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 3, + ACTIONS(1315), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3275), 3, + ACTIONS(3281), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3279), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2037), 4, + STATE(2027), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3273), 7, + ACTIONS(3279), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -111061,7 +111573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3277), 20, + ACTIONS(3283), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111082,29 +111594,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [416] = 12, + [416] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(3295), 1, + anon_sym_BANG, + ACTIONS(3297), 1, + anon_sym_COLON_COLON, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1178), 1, + sym_parameters, + STATE(1372), 1, + sym_type_arguments, + STATE(1023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3289), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [493] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3287), 1, + ACTIONS(3305), 1, anon_sym_BANG, - ACTIONS(3289), 1, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3293), 1, + ACTIONS(3311), 1, anon_sym_move, - STATE(1421), 1, + STATE(1467), 1, sym_block, - STATE(3569), 1, + STATE(3589), 1, sym_label, - STATE(1019), 2, + STATE(1024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111120,7 +111698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 28, + ACTIONS(3301), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111149,27 +111727,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [495] = 11, + [572] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, + ACTIONS(3291), 1, anon_sym_LPAREN, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(3303), 1, - anon_sym_COLON_COLON, - ACTIONS(3305), 1, + ACTIONS(3299), 1, anon_sym_LT2, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + STATE(1178), 1, sym_parameters, - STATE(1020), 2, + STATE(1372), 1, + sym_type_arguments, + STATE(1025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 17, + ACTIONS(3315), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111187,7 +111763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3295), 27, + ACTIONS(3313), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111215,84 +111791,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [572] = 5, + [646] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1021), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1051), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1049), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [636] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3297), 1, + ACTIONS(3291), 1, anon_sym_LPAREN, - ACTIONS(3305), 1, + ACTIONS(3299), 1, anon_sym_LT2, - ACTIONS(3311), 1, + ACTIONS(3317), 1, anon_sym_COLON_COLON, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, + STATE(1178), 1, sym_parameters, - STATE(1022), 2, + STATE(1372), 1, + sym_type_arguments, + STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3321), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111310,7 +111827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 27, + ACTIONS(3319), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111338,15 +111855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [710] = 5, + [720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1023), 2, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(1433), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111356,7 +111873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1045), 40, + ACTIONS(1435), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111397,12 +111914,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [774] = 5, + [784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1024), 2, + STATE(1028), 2, sym_line_comment, sym_block_comment, ACTIONS(1475), 9, @@ -111456,15 +111973,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [838] = 5, + [848] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(3317), 1, + anon_sym_COLON_COLON, + STATE(1178), 1, + sym_parameters, + STATE(1372), 1, + sym_type_arguments, + STATE(1029), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3325), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3323), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [922] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 9, + ACTIONS(1051), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111474,7 +112055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1259), 40, + ACTIONS(1049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111515,15 +112096,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [902] = 5, + [986] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 9, + ACTIONS(1047), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111533,7 +112114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1417), 40, + ACTIONS(1045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111574,15 +112155,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [966] = 5, + [1050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1032), 2, sym_line_comment, sym_block_comment, - ACTIONS(1269), 9, + ACTIONS(1367), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111592,7 +112173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1271), 40, + ACTIONS(1369), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111633,79 +112214,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1030] = 10, + [1114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3311), 1, - anon_sym_COLON_COLON, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, - sym_parameters, - STATE(1028), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3315), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3313), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1104] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1029), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 9, + ACTIONS(1381), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111715,7 +112232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1275), 40, + ACTIONS(1383), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111749,86 +112266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trait, anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1168] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3311), 1, - anon_sym_COLON_COLON, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, - sym_parameters, - STATE(1030), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3319), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3317), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1242] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1031), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 9, + ACTIONS(1363), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111838,7 +112291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1267), 40, + ACTIONS(1365), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111879,15 +112332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1306] = 5, + [1242] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1032), 2, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1261), 9, + ACTIONS(1385), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111897,7 +112350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1263), 40, + ACTIONS(1387), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111938,25 +112391,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1370] = 5, + [1306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1033), 2, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 9, + ACTIONS(1355), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2189), 39, + ACTIONS(1357), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111980,6 +112433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111996,23 +112450,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1433] = 9, + [1370] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, + ACTIONS(3291), 1, anon_sym_LPAREN, - ACTIONS(3305), 1, + ACTIONS(3299), 1, anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, + STATE(1181), 1, sym_parameters, - STATE(1034), 2, + STATE(1373), 1, + sym_type_arguments, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 17, + ACTIONS(3329), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112030,7 +112484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 27, + ACTIONS(3327), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -112058,81 +112512,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1504] = 5, + [1441] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2733), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, + ACTIONS(3335), 1, + anon_sym_BANG, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2735), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1567] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, - sym_parameters, - STATE(1036), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 17, + ACTIONS(3333), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112150,8 +112542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 27, + ACTIONS(3331), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112178,15 +112571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1638] = 5, + anon_sym_LT2, + [1508] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1037), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(1907), 9, + ACTIONS(2401), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112196,7 +112590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1909), 39, + ACTIONS(2403), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112236,75 +112630,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1701] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_BANG, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - STATE(1038), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3331), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3329), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [1768] = 5, + [1571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(1755), 9, + ACTIONS(2405), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112314,7 +112648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1757), 39, + ACTIONS(2407), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112354,81 +112688,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1831] = 9, + [1634] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, + ACTIONS(3291), 1, anon_sym_LPAREN, - ACTIONS(3305), 1, + ACTIONS(3299), 1, anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, + STATE(1181), 1, sym_parameters, - STATE(1040), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3339), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3337), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1902] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, + STATE(1373), 1, + sym_type_arguments, STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 17, + ACTIONS(3341), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112446,9 +112722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3341), 29, + ACTIONS(3339), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112475,138 +112750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1969] = 7, + [1705] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_BANG, - ACTIONS(3355), 1, - anon_sym_COLON_COLON, STATE(1042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3351), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3349), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2036] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, - sym_parameters, - STATE(1043), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2107] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1044), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2199), 9, + ACTIONS(1887), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112616,7 +112768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2201), 39, + ACTIONS(1889), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112656,36 +112808,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2170] = 7, + [1768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_POUND, - STATE(1468), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1045), 3, + STATE(1043), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3363), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2057), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, - anon_sym_DOT_DOT, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3361), 30, + ACTIONS(2059), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112703,32 +112844,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [2237] = 7, + [1831] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_BANG, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - STATE(1046), 2, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1181), 1, + sym_parameters, + STATE(1373), 1, + sym_type_arguments, + STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 17, + ACTIONS(3345), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112746,9 +112900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3368), 29, + ACTIONS(3343), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112775,69 +112928,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2304] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [1902] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3107), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_fn, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, + ACTIONS(3351), 1, + anon_sym_POUND, + STATE(1423), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1045), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3349), 14, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(3382), 1, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, - ACTIONS(3384), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_for, - ACTIONS(3392), 1, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - STATE(1043), 1, - sym_scoped_type_identifier, - STATE(1093), 1, - sym_generic_type, - STATE(1584), 1, - sym_for_lifetimes, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3367), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3546), 1, - sym_generic_type_with_turbofish, - STATE(3556), 1, - sym_bracketed_type, - ACTIONS(3388), 2, - anon_sym_gen, - anon_sym_union, - STATE(1047), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3390), 3, - sym_self, - sym_super, - sym_crate, - STATE(1439), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3380), 17, + ACTIONS(3347), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112855,68 +112975,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2410] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1291), 1, - anon_sym_QMARK, - ACTIONS(1323), 1, - anon_sym_fn, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3394), 1, - sym_identifier, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, + anon_sym__, + anon_sym_const, anon_sym_default, - ACTIONS(3404), 1, - anon_sym_for, - ACTIONS(3410), 1, - sym_metavariable, - STATE(1565), 1, - sym_for_lifetimes, - STATE(1935), 1, - sym_scoped_type_identifier, - STATE(1966), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3386), 1, - sym_function_modifiers, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3406), 2, anon_sym_gen, anon_sym_union, - STATE(1048), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, sym_self, sym_super, - sym_crate, - STATE(1994), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3398), 17, + sym_crate, + [1969] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2741), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2743), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112934,32 +113024,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2516] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2032] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1049), 2, + ACTIONS(3358), 1, + anon_sym_BANG, + ACTIONS(3360), 1, + anon_sym_COLON_COLON, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(3356), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 31, + ACTIONS(3354), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112978,45 +113095,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2578] = 5, + anon_sym_LT2, + [2099] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1050), 2, + ACTIONS(3366), 1, + anon_sym_BANG, + ACTIONS(3368), 1, + anon_sym_COLON_COLON, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(3364), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 31, + ACTIONS(3362), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113035,281 +113155,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2640] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1325), 1, - anon_sym_for, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3412), 1, - sym_identifier, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_default, - ACTIONS(3426), 1, - sym_metavariable, - STATE(1540), 1, - sym_scoped_type_identifier, - STATE(1591), 1, - sym_for_lifetimes, - STATE(1619), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3341), 1, - sym_function_modifiers, - STATE(3538), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_bracketed_type, - ACTIONS(3422), 2, - anon_sym_gen, - anon_sym_union, - STATE(1051), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3424), 3, - sym_self, - sym_super, - sym_crate, - STATE(1729), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3416), 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, - [2746] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2664), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3430), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1052), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 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, - [2846] = 27, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_LT2, + [2166] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1291), 1, - anon_sym_QMARK, - ACTIONS(1323), 1, - anon_sym_fn, - ACTIONS(1325), 1, - anon_sym_for, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3396), 1, + ACTIONS(3291), 1, anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3442), 1, - sym_identifier, - STATE(1565), 1, - sym_for_lifetimes, - STATE(1933), 1, - sym_scoped_type_identifier, - STATE(1980), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3386), 1, - sym_function_modifiers, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1053), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2005), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3398), 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, - [2952] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1054), 2, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1181), 1, + sym_parameters, + STATE(1373), 1, + sym_type_arguments, + STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(3372), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 31, + ACTIONS(3370), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -113326,191 +113218,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3014] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [2237] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1325), 1, - anon_sym_for, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3107), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_fn, ACTIONS(3378), 1, - anon_sym_LPAREN, - ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3380), 1, anon_sym_COLON_COLON, - ACTIONS(3384), 1, - anon_sym_default, - ACTIONS(3392), 1, - sym_metavariable, - ACTIONS(3444), 1, - sym_identifier, - STATE(1040), 1, - sym_scoped_type_identifier, - STATE(1158), 1, - sym_generic_type, - STATE(1584), 1, - sym_for_lifetimes, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3367), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3546), 1, - sym_generic_type_with_turbofish, - STATE(3556), 1, - sym_bracketed_type, - ACTIONS(3388), 2, - anon_sym_gen, - anon_sym_union, - STATE(1055), 2, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3390), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3380), 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, - [3120] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, + ACTIONS(3376), 17, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3436), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2664), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3446), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3374), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(1056), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 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, - [3220] = 9, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2304] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3295), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3382), 1, anon_sym_LBRACE, - ACTIONS(3450), 1, + ACTIONS(3384), 1, anon_sym_COLON_COLON, - STATE(1473), 1, + STATE(1444), 1, sym_field_initializer_list, - STATE(1057), 2, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113526,7 +113320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 28, + ACTIONS(1489), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113555,111 +113349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [3290] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_default, - ACTIONS(3426), 1, - sym_metavariable, - ACTIONS(3452), 1, - sym_identifier, - ACTIONS(3454), 1, - anon_sym_for, - STATE(1557), 1, - sym_scoped_type_identifier, - STATE(1591), 1, - sym_for_lifetimes, - STATE(1628), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3341), 1, - sym_function_modifiers, - STATE(3538), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_bracketed_type, - ACTIONS(3422), 2, - anon_sym_gen, - anon_sym_union, - STATE(1058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3424), 3, - sym_self, - sym_super, - sym_crate, - STATE(1697), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3416), 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, - [3396] = 8, + [2374] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3456), 1, - anon_sym_BANG, - STATE(1059), 2, + STATE(1052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3285), 16, + ACTIONS(3366), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -113669,11 +113374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3283), 23, + ACTIONS(3368), 31, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -113694,15 +113401,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [3464] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1060), 2, + STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, + ACTIONS(3378), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113719,7 +113431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3355), 31, + ACTIONS(3380), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113751,32 +113463,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3526] = 7, + [2498] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3460), 1, - anon_sym_POUND, - STATE(1405), 1, - sym_attribute_item, - STATE(1061), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(789), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(1301), 1, + anon_sym_for, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3155), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(3167), 1, + anon_sym_fn, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LPAREN, + ACTIONS(3392), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + ACTIONS(3394), 1, + anon_sym_default, + ACTIONS(3400), 1, sym_metavariable, - ACTIONS(3243), 33, + STATE(1041), 1, + sym_scoped_type_identifier, + STATE(1243), 1, + sym_generic_type, + STATE(1588), 1, + sym_for_lifetimes, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3383), 1, + sym_function_modifiers, + STATE(3532), 1, + sym_scoped_identifier, + STATE(3566), 1, + sym_generic_type_with_turbofish, + STATE(3576), 1, + sym_bracketed_type, + ACTIONS(3396), 2, + anon_sym_gen, + anon_sym_union, + STATE(1054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3398), 3, + sym_self, + sym_super, + sym_crate, + STATE(1391), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3390), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113794,51 +113542,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3592] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, + [2604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3463), 1, - anon_sym_move, - STATE(395), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(1062), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -113848,10 +113567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(3337), 31, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -113872,30 +113594,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [3667] = 5, + anon_sym_else, + [2666] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3467), 13, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3402), 1, + sym_identifier, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3408), 1, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3412), 1, anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, + ACTIONS(3414), 1, anon_sym_COLON_COLON, + ACTIONS(3416), 1, anon_sym_SQUOTE, + ACTIONS(3420), 1, + anon_sym_for, + ACTIONS(3424), 1, sym_metavariable, - ACTIONS(3465), 33, + STATE(2555), 1, + sym_where_predicate, + STATE(2646), 1, + sym_scoped_type_identifier, + STATE(2984), 1, + sym_generic_type, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + ACTIONS(3404), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1056), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3418), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + STATE(3299), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3410), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113913,33 +113675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3728] = 6, + [2766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(1064), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(3358), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113956,12 +113700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 29, + ACTIONS(3360), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -113984,31 +113729,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3791] = 5, + [2828] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3155), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, + ACTIONS(3167), 1, + anon_sym_fn, + ACTIONS(3388), 1, + anon_sym_LPAREN, + ACTIONS(3392), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3394), 1, + anon_sym_default, + ACTIONS(3400), 1, sym_metavariable, - ACTIONS(3471), 33, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3428), 1, + anon_sym_for, + STATE(1037), 1, + sym_scoped_type_identifier, + STATE(1245), 1, + sym_generic_type, + STATE(1588), 1, + sym_for_lifetimes, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3383), 1, + sym_function_modifiers, + STATE(3532), 1, + sym_scoped_identifier, + STATE(3566), 1, + sym_generic_type_with_turbofish, + STATE(3576), 1, + sym_bracketed_type, + ACTIONS(3396), 2, + anon_sym_gen, + anon_sym_union, + STATE(1058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3398), 3, + sym_self, + sym_super, + sym_crate, + STATE(1460), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3390), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114026,45 +113811,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [2934] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3129), 1, anon_sym_fn, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3432), 1, + anon_sym_LPAREN, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, + ACTIONS(3438), 1, + anon_sym_default, + ACTIONS(3440), 1, anon_sym_for, + ACTIONS(3446), 1, + sym_metavariable, + STATE(1554), 1, + sym_scoped_type_identifier, + STATE(1595), 1, + sym_for_lifetimes, + STATE(1641), 1, + sym_generic_type, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3557), 1, + sym_scoped_identifier, + STATE(3574), 1, + sym_generic_type_with_turbofish, + STATE(3580), 1, + sym_bracketed_type, + STATE(3659), 1, + sym_function_modifiers, + ACTIONS(3442), 2, anon_sym_gen, - anon_sym_impl, anon_sym_union, + STATE(1059), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(3444), 3, sym_self, sym_super, sym_crate, - [3852] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3477), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3475), 33, + STATE(1801), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3434), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114082,45 +113890,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [3040] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1267), 1, + anon_sym_QMARK, + ACTIONS(1299), 1, anon_sym_fn, + ACTIONS(1301), 1, anon_sym_for, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3414), 1, + anon_sym_COLON_COLON, + ACTIONS(3424), 1, + sym_metavariable, + ACTIONS(3448), 1, + sym_identifier, + ACTIONS(3452), 1, + anon_sym_default, + STATE(1578), 1, + sym_for_lifetimes, + STATE(1937), 1, + sym_scoped_type_identifier, + STATE(1971), 1, + sym_generic_type, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + STATE(3549), 1, + sym_function_modifiers, + ACTIONS(3418), 2, anon_sym_gen, - anon_sym_impl, anon_sym_union, + STATE(1060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(3422), 3, sym_self, sym_super, sym_crate, - [3913] = 5, + STATE(2007), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3450), 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, + [3146] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3481), 13, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1599), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3402), 1, + sym_identifier, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3408), 1, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(3412), 1, anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, + ACTIONS(3414), 1, anon_sym_COLON_COLON, + ACTIONS(3416), 1, anon_sym_SQUOTE, + ACTIONS(3420), 1, + anon_sym_for, + ACTIONS(3424), 1, sym_metavariable, - ACTIONS(3479), 33, + STATE(2555), 1, + sym_where_predicate, + STATE(2646), 1, + sym_scoped_type_identifier, + STATE(2984), 1, + sym_generic_type, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + ACTIONS(3454), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3418), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + STATE(3299), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3410), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114138,45 +114045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3974] = 5, + [3246] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + ACTIONS(3456), 1, + anon_sym_POUND, + STATE(1448), 1, + sym_attribute_item, + STATE(1062), 3, sym_line_comment, sym_block_comment, - ACTIONS(3485), 13, - anon_sym_SEMI, + aux_sym_enum_variant_list_repeat1, + ACTIONS(759), 11, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(3483), 33, + ACTIONS(3249), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114201,38 +114095,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [4035] = 5, + [3312] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3489), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, + ACTIONS(1267), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, + ACTIONS(1299), 1, + anon_sym_fn, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3414), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3424), 1, sym_metavariable, - ACTIONS(3487), 33, + ACTIONS(3452), 1, + anon_sym_default, + ACTIONS(3459), 1, + sym_identifier, + ACTIONS(3461), 1, + anon_sym_for, + STATE(1578), 1, + sym_for_lifetimes, + STATE(1946), 1, + sym_scoped_type_identifier, + STATE(1979), 1, + sym_generic_type, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + STATE(3549), 1, + sym_function_modifiers, + ACTIONS(3418), 2, + anon_sym_gen, + anon_sym_union, + STATE(1063), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + STATE(2005), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3450), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114250,49 +114183,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4096] = 6, + [3418] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3495), 1, - anon_sym_RBRACE, - STATE(1070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3493), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(1301), 1, + anon_sym_for, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3117), 1, + anon_sym_QMARK, + ACTIONS(3129), 1, + anon_sym_fn, + ACTIONS(3432), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3438), 1, + anon_sym_default, + ACTIONS(3446), 1, sym_metavariable, - ACTIONS(3491), 30, + ACTIONS(3463), 1, + sym_identifier, + STATE(1551), 1, + sym_scoped_type_identifier, + STATE(1595), 1, + sym_for_lifetimes, + STATE(1657), 1, + sym_generic_type, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3557), 1, + sym_scoped_identifier, + STATE(3574), 1, + sym_generic_type_with_turbofish, + STATE(3580), 1, + sym_bracketed_type, + STATE(3659), 1, + sym_function_modifiers, + ACTIONS(3442), 2, + anon_sym_gen, + anon_sym_union, + STATE(1064), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3444), 3, + sym_self, + sym_super, + sym_crate, + STATE(1743), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3434), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114310,37 +114262,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4159] = 6, + [3524] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3497), 1, - anon_sym_LBRACE, - STATE(1071), 2, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + ACTIONS(3465), 1, + anon_sym_BANG, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3303), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -114350,12 +114297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 29, + anon_sym_as, + ACTIONS(3301), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -114376,19 +114322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4222] = 5, + [3592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 7, + ACTIONS(2125), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114396,7 +114338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3499), 39, + ACTIONS(2127), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114436,90 +114378,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4283] = 6, + [3653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, - anon_sym_LBRACE, - STATE(1073), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3355), 29, + ACTIONS(2969), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4346] = 6, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2971), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_RBRACE, - STATE(1074), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2973), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3505), 30, + ACTIONS(2975), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114537,28 +114468,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [4409] = 5, + [3775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114574,7 +114514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3511), 31, + ACTIONS(3469), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114606,15 +114546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4470] = 5, + [3836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 15, + ACTIONS(3475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114630,7 +114570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3515), 31, + ACTIONS(3473), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114658,33 +114598,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4531] = 5, + [3897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 13, + ACTIONS(1779), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3519), 33, + ACTIONS(1781), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114705,141 +114639,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [4592] = 6, + [3958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LBRACE, - STATE(1078), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3374), 29, + ACTIONS(1783), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4655] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1585), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4716] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1785), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4019] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(2857), 7, + ACTIONS(1791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114847,7 +114730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2859), 39, + ACTIONS(1793), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114887,186 +114770,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4777] = 6, + [4080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_COLON_COLON, - STATE(1081), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 30, + ACTIONS(1795), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4840] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3527), 1, - anon_sym_COLON_COLON, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4903] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3529), 1, anon_sym_COLON_COLON, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4966] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1797), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(2539), 7, + ACTIONS(1799), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115074,7 +114842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2541), 39, + ACTIONS(1801), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115114,15 +114882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5027] = 5, + [4202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1085), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(2573), 7, + ACTIONS(1803), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115130,7 +114898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2575), 39, + ACTIONS(1805), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115170,58 +114938,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5088] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [4263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - aux_sym_string_literal_token1, - ACTIONS(1687), 1, - sym__raw_string_literal_start, - ACTIONS(3275), 1, - anon_sym_if, - ACTIONS(3531), 1, - sym_identifier, - ACTIONS(3535), 1, - anon_sym_COLON_COLON, - ACTIONS(3539), 1, - sym_metavariable, - STATE(2632), 1, - sym_scoped_identifier, - STATE(2864), 1, - sym__literal_pattern, - STATE(3495), 1, - sym_bracketed_type, - STATE(3508), 1, - sym_generic_type_with_turbofish, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3273), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1086), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(1677), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3537), 3, - sym_self, - sym_super, - sym_crate, - STATE(2364), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3533), 20, + ACTIONS(1807), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1809), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115239,117 +114972,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [5181] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3541), 31, + ACTIONS(1811), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5242] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - aux_sym_string_literal_token1, - ACTIONS(1687), 1, - sym__raw_string_literal_start, - ACTIONS(3263), 1, - anon_sym_if, - ACTIONS(3535), 1, anon_sym_COLON_COLON, - ACTIONS(3545), 1, - sym_identifier, - ACTIONS(3551), 1, + anon_sym_POUND, sym_metavariable, - STATE(2718), 1, - sym_scoped_identifier, - STATE(2882), 1, - sym__literal_pattern, - STATE(3495), 1, - sym_bracketed_type, - STATE(3508), 1, - sym_generic_type_with_turbofish, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3261), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1677), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3549), 3, - sym_self, - sym_super, - sym_crate, - STATE(2364), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3547), 20, + ACTIONS(1813), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115367,471 +115028,429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [5335] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3553), 31, + ACTIONS(1815), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5396] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1817), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3559), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3557), 31, + ACTIONS(1819), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5457] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1821), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3257), 31, + ACTIONS(1823), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5518] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3565), 1, - anon_sym_DASH_GT, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3563), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3561), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5581] = 6, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1825), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(1093), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 30, + ACTIONS(1827), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5644] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1829), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(1094), 2, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3325), 30, + ACTIONS(1831), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5707] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1833), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3571), 1, - anon_sym_DASH_GT, - STATE(1095), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 30, + ACTIONS(1835), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5770] = 6, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1837), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3577), 1, - anon_sym_DASH_GT, - STATE(1096), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3575), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3573), 30, + ACTIONS(1839), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5833] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1841), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2535), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115839,7 +115458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2537), 39, + ACTIONS(1845), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115879,73 +115498,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5894] = 7, + [4873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, - anon_sym_else, - STATE(1387), 1, - sym_else_clause, - STATE(1098), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1251), 29, + ACTIONS(1847), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [5959] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1849), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115953,7 +115570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 39, + ACTIONS(1853), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115993,15 +115610,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6020] = 5, + [4995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116009,7 +115626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 39, + ACTIONS(1857), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116049,15 +115666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6081] = 5, + [5056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116065,7 +115682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2823), 39, + ACTIONS(1861), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116105,15 +115722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6142] = 5, + [5117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116121,7 +115738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2887), 39, + ACTIONS(1865), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116161,15 +115778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6203] = 5, + [5178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2889), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116177,7 +115794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2891), 39, + ACTIONS(1877), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116217,15 +115834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6264] = 5, + [5239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116233,7 +115850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2911), 39, + ACTIONS(1885), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116273,15 +115890,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6325] = 5, + [5300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2945), 7, + ACTIONS(2787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116289,7 +115906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2947), 39, + ACTIONS(2789), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116329,15 +115946,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6386] = 5, + [5361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2131), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116345,7 +115962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2133), 39, + ACTIONS(1893), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116385,15 +116002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6447] = 5, + [5422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116401,7 +116018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2161), 39, + ACTIONS(1897), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116441,15 +116058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6508] = 5, + [5483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116457,7 +116074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2185), 39, + ACTIONS(1901), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116497,15 +116114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6569] = 5, + [5544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2605), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116513,7 +116130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2607), 39, + ACTIONS(1905), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116553,15 +116170,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6630] = 5, + [5605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(2625), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116569,7 +116186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2627), 39, + ACTIONS(1909), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116609,15 +116226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6691] = 5, + [5666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116625,7 +116242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 39, + ACTIONS(1913), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116665,15 +116282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6752] = 5, + [5727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116681,7 +116298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2727), 39, + ACTIONS(1917), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116721,15 +116338,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6813] = 5, + [5788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116737,7 +116354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1901), 39, + ACTIONS(1921), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116777,15 +116394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6874] = 5, + [5849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116793,7 +116410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1985), 39, + ACTIONS(1925), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116833,298 +116450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6935] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1115), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3343), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3341), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [6996] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3581), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7057] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - STATE(1117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3587), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3585), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7120] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3595), 1, - anon_sym_DASH_GT, - STATE(1118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7183] = 6, + [5910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3601), 1, - anon_sym_DASH_GT, - STATE(1119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3599), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3597), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7246] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2111), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117132,7 +116466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2113), 39, + ACTIONS(1929), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117172,15 +116506,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7307] = 5, + [5971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117188,7 +116522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2125), 39, + ACTIONS(1933), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117228,15 +116562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7368] = 5, + [6032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117244,7 +116578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2129), 39, + ACTIONS(1937), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117284,15 +116618,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7429] = 5, + [6093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117300,7 +116634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2137), 39, + ACTIONS(1941), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117340,15 +116674,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7490] = 5, + [6154] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117356,7 +116690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2141), 39, + ACTIONS(1945), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117396,15 +116730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7551] = 5, + [6215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117412,7 +116746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2153), 39, + ACTIONS(1949), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117452,15 +116786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7612] = 5, + [6276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117468,7 +116802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2165), 39, + ACTIONS(1953), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117508,15 +116842,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7673] = 5, + [6337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117524,7 +116858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2173), 39, + ACTIONS(1957), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117564,15 +116898,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7734] = 5, + [6398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 7, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117580,7 +116914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2177), 39, + ACTIONS(1961), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117620,15 +116954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7795] = 5, + [6459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117636,7 +116970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2181), 39, + ACTIONS(1965), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117676,15 +117010,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7856] = 5, + [6520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117692,7 +117026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2193), 39, + ACTIONS(1969), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117732,15 +117066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7917] = 5, + [6581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117748,7 +117082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2197), 39, + ACTIONS(1973), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117788,15 +117122,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7978] = 5, + [6642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117804,7 +117138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2205), 39, + ACTIONS(1977), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117844,15 +117178,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8039] = 5, + [6703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117860,7 +117194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2213), 39, + ACTIONS(1981), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117900,15 +117234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8100] = 5, + [6764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117916,7 +117250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2253), 39, + ACTIONS(1985), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117956,15 +117290,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8161] = 5, + [6825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2255), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117972,7 +117306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2257), 39, + ACTIONS(1989), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118012,71 +117346,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8222] = 5, + [6886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2259), 7, + ACTIONS(3479), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3477), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2261), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [8283] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3483), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3481), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [7008] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2263), 7, + ACTIONS(2013), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118084,7 +117474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2265), 39, + ACTIONS(2015), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118124,15 +117514,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8344] = 5, + [7069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 7, + ACTIONS(2017), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118140,7 +117530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2959), 39, + ACTIONS(2019), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118180,15 +117570,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8405] = 5, + [7130] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1699), 7, + ACTIONS(2021), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118196,7 +117586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1701), 39, + ACTIONS(2023), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118236,15 +117626,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8466] = 5, + [7191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2271), 7, + ACTIONS(2025), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118252,7 +117642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2273), 39, + ACTIONS(2027), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118292,15 +117682,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8527] = 5, + [7252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 7, + ACTIONS(2029), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118308,7 +117698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2277), 39, + ACTIONS(2031), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118348,15 +117738,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8588] = 5, + [7313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 7, + ACTIONS(2033), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118364,7 +117754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2285), 39, + ACTIONS(2035), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118404,15 +117794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8649] = 5, + [7374] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2287), 7, + ACTIONS(2037), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118420,7 +117810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2289), 39, + ACTIONS(2039), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118460,15 +117850,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8710] = 5, + [7435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2291), 7, + ACTIONS(1771), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118476,7 +117866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2293), 39, + ACTIONS(1773), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118516,15 +117906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8771] = 5, + [7496] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2295), 7, + ACTIONS(2045), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118532,7 +117922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2297), 39, + ACTIONS(2047), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118572,15 +117962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8832] = 5, + [7557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2299), 7, + ACTIONS(2049), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118588,7 +117978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2301), 39, + ACTIONS(2051), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118628,15 +118018,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8893] = 5, + [7618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2389), 7, + ACTIONS(2053), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118644,7 +118034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2391), 39, + ACTIONS(2055), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118684,15 +118074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8954] = 5, + [7679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 7, + ACTIONS(2791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118700,7 +118090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2395), 39, + ACTIONS(2793), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118740,15 +118130,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9015] = 5, + [7740] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 7, + ACTIONS(2061), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118756,7 +118146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2399), 39, + ACTIONS(2063), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118796,15 +118186,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9076] = 5, + [7801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2401), 7, + ACTIONS(2065), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118812,7 +118202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2403), 39, + ACTIONS(2067), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118852,15 +118242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9137] = 5, + [7862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 7, + ACTIONS(2069), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118868,7 +118258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2407), 39, + ACTIONS(2071), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118908,15 +118298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9198] = 5, + [7923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2409), 7, + ACTIONS(2073), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118924,7 +118314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2411), 39, + ACTIONS(2075), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118964,15 +118354,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9259] = 5, + [7984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2413), 7, + ACTIONS(2077), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118980,7 +118370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2415), 39, + ACTIONS(2079), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119020,15 +118410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9320] = 5, + [8045] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2425), 7, + ACTIONS(2081), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119036,7 +118426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2427), 39, + ACTIONS(2083), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119076,15 +118466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9381] = 5, + [8106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2445), 7, + ACTIONS(2085), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119092,7 +118482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2447), 39, + ACTIONS(2087), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119132,241 +118522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9442] = 5, + [8167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3605), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3603), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9503] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1157), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3609), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3607), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9564] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(1158), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3339), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3337), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9627] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - STATE(1159), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3613), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3611), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9690] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2527), 7, + ACTIONS(2089), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119374,7 +118538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2529), 39, + ACTIONS(2091), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119414,15 +118578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9751] = 5, + [8228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2531), 7, + ACTIONS(2093), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119430,7 +118594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2533), 39, + ACTIONS(2095), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119470,15 +118634,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9812] = 5, + [8289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2543), 7, + ACTIONS(2097), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119486,7 +118650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2545), 39, + ACTIONS(2099), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119526,15 +118690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9873] = 5, + [8350] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 7, + ACTIONS(2101), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119542,7 +118706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2555), 39, + ACTIONS(2103), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119582,15 +118746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9934] = 5, + [8411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2557), 7, + ACTIONS(2105), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119598,7 +118762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2559), 39, + ACTIONS(2107), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119638,15 +118802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9995] = 5, + [8472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 7, + ACTIONS(2109), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119654,7 +118818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2563), 39, + ACTIONS(2111), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119694,15 +118858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10056] = 5, + [8533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 7, + ACTIONS(2113), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119710,7 +118874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2567), 39, + ACTIONS(2115), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119750,15 +118914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10117] = 5, + [8594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2569), 7, + ACTIONS(2117), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119766,7 +118930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2571), 39, + ACTIONS(2119), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119806,15 +118970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10178] = 5, + [8655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2589), 7, + ACTIONS(2121), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119822,7 +118986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2591), 39, + ACTIONS(2123), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119862,15 +119026,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10239] = 5, + [8716] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + ACTIONS(3489), 1, + anon_sym_DASH_GT, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2593), 7, + ACTIONS(3487), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3485), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8779] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1151), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2129), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119878,7 +119099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2595), 39, + ACTIONS(2131), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119918,15 +119139,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10300] = 5, + [8840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2597), 7, + ACTIONS(2137), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119934,7 +119155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2599), 39, + ACTIONS(2139), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119974,15 +119195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10361] = 5, + [8901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 7, + ACTIONS(2141), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119990,7 +119211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2611), 39, + ACTIONS(2143), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120030,15 +119251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10422] = 5, + [8962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2613), 7, + ACTIONS(2145), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120046,7 +119267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2615), 39, + ACTIONS(2147), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120086,15 +119307,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10483] = 5, + [9023] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 7, + ACTIONS(2149), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120102,7 +119323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2619), 39, + ACTIONS(2151), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120142,15 +119363,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10544] = 5, + [9084] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2621), 7, + ACTIONS(2153), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120158,7 +119379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2623), 39, + ACTIONS(2155), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120198,15 +119419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10605] = 5, + [9145] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 7, + ACTIONS(2157), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120214,7 +119435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2635), 39, + ACTIONS(2159), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120254,15 +119475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10666] = 5, + [9206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(2161), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120270,7 +119491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 39, + ACTIONS(2163), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120310,15 +119531,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10727] = 5, + [9267] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(2165), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120326,7 +119547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 39, + ACTIONS(2167), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120366,15 +119587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10788] = 5, + [9328] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 7, + ACTIONS(2169), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120382,7 +119603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2751), 39, + ACTIONS(2171), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120422,15 +119643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10849] = 5, + [9389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 7, + ACTIONS(2173), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120438,7 +119659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2755), 39, + ACTIONS(2175), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120478,15 +119699,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10910] = 5, + [9450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 7, + ACTIONS(2177), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120494,7 +119715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2759), 39, + ACTIONS(2179), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120534,15 +119755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10971] = 5, + [9511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 7, + ACTIONS(2181), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120550,7 +119771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2763), 39, + ACTIONS(2183), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120590,15 +119811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11032] = 5, + [9572] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2765), 7, + ACTIONS(2185), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120606,7 +119827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2767), 39, + ACTIONS(2187), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120646,15 +119867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11093] = 5, + [9633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2769), 7, + ACTIONS(2189), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120662,7 +119883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2771), 39, + ACTIONS(2191), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120702,15 +119923,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11154] = 5, + [9694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2773), 7, + ACTIONS(2193), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120718,7 +119939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2775), 39, + ACTIONS(2195), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120758,15 +119979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11215] = 5, + [9755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2777), 7, + ACTIONS(2197), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120774,7 +119995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2779), 39, + ACTIONS(2199), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120814,15 +120035,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11276] = 5, + [9816] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2781), 7, + ACTIONS(2201), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120830,7 +120051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2783), 39, + ACTIONS(2203), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120870,15 +120091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11337] = 5, + [9877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2785), 7, + ACTIONS(2205), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120886,7 +120107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2787), 39, + ACTIONS(2207), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120926,15 +120147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11398] = 5, + [9938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2789), 7, + ACTIONS(2209), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120942,7 +120163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2791), 39, + ACTIONS(2211), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120982,15 +120203,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11459] = 5, + [9999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2793), 7, + ACTIONS(2213), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120998,7 +120219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2795), 39, + ACTIONS(2215), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121038,15 +120259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, + [10060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2797), 7, + ACTIONS(2217), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121054,7 +120275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2799), 39, + ACTIONS(2219), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121094,15 +120315,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11581] = 5, + [10121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 7, + ACTIONS(2221), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121110,7 +120331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2803), 39, + ACTIONS(2223), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121150,23 +120371,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11642] = 5, + [10182] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + ACTIONS(3495), 1, + anon_sym_RBRACE, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3493), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2807), 39, + ACTIONS(3491), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121184,37 +120415,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [11703] = 5, + [10245] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 7, + ACTIONS(2985), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121222,7 +120444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2811), 39, + ACTIONS(2987), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121262,15 +120484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11764] = 5, + [10306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 7, + ACTIONS(2041), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121278,7 +120500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2815), 39, + ACTIONS(2043), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121318,15 +120540,298 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11825] = 5, + [10367] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3376), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3374), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [10428] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3501), 1, + anon_sym_DASH_GT, + STATE(1178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3499), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3497), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10491] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3505), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3503), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10552] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3507), 1, + anon_sym_COLON_COLON, + STATE(1180), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3345), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3343), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10615] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3513), 1, + anon_sym_DASH_GT, + STATE(1181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 7, + ACTIONS(2613), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121334,7 +120839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2819), 39, + ACTIONS(2615), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121374,295 +120879,301 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11886] = 5, + [10739] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + ACTIONS(3519), 1, + anon_sym_DASH_GT, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2825), 7, + ACTIONS(3517), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3515), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2827), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11947] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10802] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + ACTIONS(3525), 1, + anon_sym_DASH_GT, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2829), 7, + ACTIONS(3523), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3521), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2831), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12008] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + ACTIONS(3531), 1, + anon_sym_DASH_GT, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 7, + ACTIONS(3529), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3527), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2835), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12069] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + ACTIONS(3533), 1, + anon_sym_LBRACE, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 7, + ACTIONS(3366), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3368), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2839), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12130] = 5, + anon_sym_as, + anon_sym_else, + [10991] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + ACTIONS(3535), 1, + anon_sym_else, + STATE(1410), 1, + sym_else_clause, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2841), 7, + ACTIONS(1253), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1251), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2843), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12191] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + [11056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121670,7 +121181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2847), 39, + ACTIONS(1873), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121710,71 +121221,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12252] = 5, + [11117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2849), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2851), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12313] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2853), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121782,7 +121237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2855), 39, + ACTIONS(1881), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121822,15 +121277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12374] = 5, + [11178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2861), 7, + ACTIONS(2133), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121838,7 +121293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2863), 39, + ACTIONS(2135), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121878,15 +121333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12435] = 5, + [11239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 7, + ACTIONS(2293), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121894,7 +121349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2867), 39, + ACTIONS(2295), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121934,15 +121389,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12496] = 5, + [11300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 7, + ACTIONS(2297), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121950,7 +121405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2871), 39, + ACTIONS(2299), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121990,15 +121445,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12557] = 5, + [11361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 7, + ACTIONS(2637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122006,7 +121461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2879), 39, + ACTIONS(2639), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122046,23 +121501,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12618] = 5, + [11422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2905), 7, + ACTIONS(3539), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2907), 39, + ACTIONS(3537), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122083,34 +121544,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12679] = 5, + [11483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 7, + ACTIONS(2301), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122118,7 +121573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2915), 39, + ACTIONS(2303), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122158,127 +121613,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12740] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1210), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3619), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3617), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12801] = 5, + [11544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3623), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3621), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12862] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2953), 7, + ACTIONS(2317), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122286,7 +121629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2955), 39, + ACTIONS(2319), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122326,15 +121669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12923] = 5, + [11605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 7, + ACTIONS(2321), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122342,7 +121685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2269), 39, + ACTIONS(2323), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122382,15 +121725,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12984] = 5, + [11666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 7, + ACTIONS(2329), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122398,7 +121741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2157), 39, + ACTIONS(2331), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122438,15 +121781,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13045] = 5, + [11727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 7, + ACTIONS(2353), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122454,7 +121797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2743), 39, + ACTIONS(2355), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122494,15 +121837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13106] = 5, + [11788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 7, + ACTIONS(2641), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122510,7 +121853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2747), 39, + ACTIONS(2643), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122550,15 +121893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13167] = 5, + [11849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2873), 7, + ACTIONS(2481), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122566,7 +121909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2875), 39, + ACTIONS(2483), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122606,15 +121949,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13228] = 5, + [11910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 7, + ACTIONS(2485), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122622,7 +121965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2883), 39, + ACTIONS(2487), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122662,23 +122005,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13289] = 5, + [11971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 7, + ACTIONS(3543), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1745), 39, + ACTIONS(3541), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122699,42 +122048,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13350] = 5, + [12032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2075), 7, + ACTIONS(3547), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2077), 39, + ACTIONS(3545), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122755,34 +122104,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13411] = 5, + [12093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 7, + ACTIONS(2537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122790,7 +122133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2081), 39, + ACTIONS(2539), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122830,15 +122173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13472] = 5, + [12154] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 7, + ACTIONS(2541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122846,7 +122189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2085), 39, + ACTIONS(2543), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122886,15 +122229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13533] = 5, + [12215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2087), 7, + ACTIONS(2545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122902,7 +122245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2089), 39, + ACTIONS(2547), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122942,15 +122285,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13594] = 5, + [12276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2091), 7, + ACTIONS(2553), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122958,7 +122301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2093), 39, + ACTIONS(2555), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122998,15 +122341,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13655] = 5, + [12337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2095), 7, + ACTIONS(2561), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123014,7 +122357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2097), 39, + ACTIONS(2563), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123054,23 +122397,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13716] = 5, + [12398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2103), 7, + ACTIONS(3551), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2105), 39, + ACTIONS(3549), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123091,42 +122440,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13777] = 5, + [12459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2107), 7, + ACTIONS(3555), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2109), 39, + ACTIONS(3553), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123147,34 +122496,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13838] = 5, + [12520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 7, + ACTIONS(2565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123182,7 +122525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2117), 39, + ACTIONS(2567), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123222,15 +122565,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13899] = 5, + [12581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 7, + ACTIONS(2569), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123238,7 +122581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2121), 39, + ACTIONS(2571), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123278,15 +122621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13960] = 5, + [12642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 13, + ACTIONS(3559), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -123300,7 +122643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3625), 33, + ACTIONS(3557), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123334,15 +122677,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14021] = 5, + [12703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 7, + ACTIONS(2573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123350,7 +122693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2149), 39, + ACTIONS(2575), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123390,15 +122733,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14082] = 5, + [12764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 7, + ACTIONS(2577), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123406,7 +122749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2169), 39, + ACTIONS(2579), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123446,15 +122789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14143] = 5, + [12825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 7, + ACTIONS(2587), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123462,7 +122805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2209), 39, + ACTIONS(2589), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123502,23 +122845,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14204] = 5, + [12886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 7, + ACTIONS(3563), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2217), 39, + ACTIONS(3561), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123539,42 +122888,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14265] = 5, + [12947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 7, + ACTIONS(3567), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2221), 39, + ACTIONS(3565), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123595,34 +122944,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14326] = 5, + [13008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2223), 7, + ACTIONS(2595), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123630,7 +122973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2225), 39, + ACTIONS(2597), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123670,15 +123013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14387] = 5, + [13069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 7, + ACTIONS(2697), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123686,7 +123029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2229), 39, + ACTIONS(2699), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123726,15 +123069,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14448] = 5, + [13130] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 7, + ACTIONS(2709), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123742,7 +123085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2233), 39, + ACTIONS(2711), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123782,15 +123125,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14509] = 5, + [13191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 7, + ACTIONS(2717), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123798,7 +123141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2237), 39, + ACTIONS(2719), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123838,15 +123181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14570] = 5, + [13252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 7, + ACTIONS(2831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123854,7 +123197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2241), 39, + ACTIONS(2833), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123894,15 +123237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14631] = 5, + [13313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 7, + ACTIONS(2965), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123910,7 +123253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2245), 39, + ACTIONS(2967), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123950,15 +123293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14692] = 5, + [13374] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 7, + ACTIONS(2977), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123966,7 +123309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2249), 39, + ACTIONS(2979), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124006,15 +123349,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14753] = 5, + [13435] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + ACTIONS(3569), 1, + anon_sym_LBRACE, + STATE(1227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3358), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3360), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [13498] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 7, + ACTIONS(2981), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124022,7 +123422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2281), 39, + ACTIONS(2983), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124062,15 +123462,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14814] = 5, + [13559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + ACTIONS(3575), 1, + anon_sym_RBRACE, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2417), 7, + ACTIONS(3573), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3571), 30, + 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__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13622] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2493), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124078,7 +123535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2419), 39, + ACTIONS(2495), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124118,15 +123575,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14875] = 5, + [13683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2421), 7, + ACTIONS(1775), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124134,7 +123591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2423), 39, + ACTIONS(1777), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124174,15 +123631,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14936] = 5, + [13744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2429), 7, + ACTIONS(1787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124190,7 +123647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2431), 39, + ACTIONS(1789), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124230,15 +123687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14997] = 5, + [13805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 7, + ACTIONS(2357), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124246,7 +123703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2435), 39, + ACTIONS(2359), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124286,15 +123743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15058] = 5, + [13866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 7, + ACTIONS(2781), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124302,7 +123759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2439), 39, + ACTIONS(2783), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124342,23 +123799,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15119] = 5, + [13927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2441), 7, + ACTIONS(3579), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2443), 39, + ACTIONS(3577), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124379,34 +123842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [15180] = 5, + [13988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 7, + ACTIONS(2225), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124414,7 +123871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2455), 39, + ACTIONS(2227), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124454,15 +123911,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15241] = 5, + [14049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 7, + ACTIONS(2285), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124470,7 +123927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2459), 39, + ACTIONS(2287), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124510,23 +123967,85 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15302] = 5, + [14110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 7, + ACTIONS(3583), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3581), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14171] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3587), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2515), 39, + ACTIONS(3585), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124547,34 +124066,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [15363] = 5, + [14232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2517), 7, + ACTIONS(2661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124582,7 +124095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2519), 39, + ACTIONS(2663), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124622,15 +124135,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15424] = 5, + [14293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2521), 7, + ACTIONS(3591), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3589), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14354] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1242), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2689), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124638,7 +124207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2523), 39, + ACTIONS(2691), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124678,15 +124247,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15485] = 5, + [14415] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + ACTIONS(3507), 1, + anon_sym_COLON_COLON, + STATE(1243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3341), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3339), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14478] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 7, + ACTIONS(2693), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124694,7 +124320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2549), 39, + ACTIONS(2695), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124734,15 +124360,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15546] = 5, + [14539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + ACTIONS(3507), 1, + anon_sym_COLON_COLON, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2577), 7, + ACTIONS(3329), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14602] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1246), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2713), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124750,7 +124433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2579), 39, + ACTIONS(2715), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124790,15 +124473,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15607] = 5, + [14663] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + ACTIONS(3597), 1, + anon_sym_DASH_GT, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2581), 7, + ACTIONS(3595), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3593), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14726] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2721), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124806,7 +124546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2583), 39, + ACTIONS(2723), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124846,15 +124586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15668] = 5, + [14787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 7, + ACTIONS(2305), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124862,7 +124602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2587), 39, + ACTIONS(2307), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124902,15 +124642,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15729] = 5, + [14848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 7, + ACTIONS(2313), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124918,7 +124658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2603), 39, + ACTIONS(2315), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124958,15 +124698,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15790] = 5, + [14909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 7, + ACTIONS(2325), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124974,7 +124714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2731), 39, + ACTIONS(2327), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125014,15 +124754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15851] = 5, + [14970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 7, + ACTIONS(2333), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125030,7 +124770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2739), 39, + ACTIONS(2335), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125070,127 +124810,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15912] = 5, + [15031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3629), 31, + ACTIONS(2337), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15973] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2339), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3633), 31, + ACTIONS(2341), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16034] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2343), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2893), 7, + ACTIONS(2345), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125198,7 +124938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2895), 39, + ACTIONS(2347), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125238,15 +124978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16095] = 5, + [15214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2897), 7, + ACTIONS(2349), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125254,7 +124994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2899), 39, + ACTIONS(2351), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125294,15 +125034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16156] = 5, + [15275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2901), 7, + ACTIONS(2361), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125310,7 +125050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2903), 39, + ACTIONS(2363), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125350,15 +125090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16217] = 5, + [15336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2917), 7, + ACTIONS(2365), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125366,7 +125106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2919), 39, + ACTIONS(2367), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125406,15 +125146,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16278] = 5, + [15397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 7, + ACTIONS(2369), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125422,7 +125162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2923), 39, + ACTIONS(2371), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125462,15 +125202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16339] = 5, + [15458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2925), 7, + ACTIONS(2373), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125478,7 +125218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2927), 39, + ACTIONS(2375), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125518,15 +125258,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16400] = 5, + [15519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2929), 7, + ACTIONS(2377), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125534,7 +125274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2931), 39, + ACTIONS(2379), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125574,15 +125314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16461] = 5, + [15580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2933), 7, + ACTIONS(2381), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125590,7 +125330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2935), 39, + ACTIONS(2383), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125630,15 +125370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16522] = 5, + [15641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2937), 7, + ACTIONS(2385), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125646,7 +125386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2939), 39, + ACTIONS(2387), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125686,15 +125426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16583] = 5, + [15702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2941), 7, + ACTIONS(2389), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125702,7 +125442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2943), 39, + ACTIONS(2391), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125742,15 +125482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16644] = 5, + [15763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2949), 7, + ACTIONS(2393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125758,7 +125498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2951), 39, + ACTIONS(2395), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125798,15 +125538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16705] = 5, + [15824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(1703), 7, + ACTIONS(2397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125814,7 +125554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1705), 39, + ACTIONS(2399), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125854,15 +125594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16766] = 5, + [15885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(1707), 7, + ACTIONS(2725), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125870,7 +125610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1709), 39, + ACTIONS(2727), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125910,15 +125650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16827] = 5, + [15946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(1711), 7, + ACTIONS(2409), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125926,7 +125666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1713), 39, + ACTIONS(2411), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125966,15 +125706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16888] = 5, + [16007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(1715), 7, + ACTIONS(2413), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125982,7 +125722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1717), 39, + ACTIONS(2415), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126022,15 +125762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16949] = 5, + [16068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(1719), 7, + ACTIONS(2417), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126038,7 +125778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1721), 39, + ACTIONS(2419), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126078,15 +125818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17010] = 5, + [16129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(1723), 7, + ACTIONS(2421), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126094,7 +125834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1725), 39, + ACTIONS(2423), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126134,15 +125874,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17071] = 5, + [16190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(1727), 7, + ACTIONS(2425), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126150,7 +125890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1729), 39, + ACTIONS(2427), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126190,15 +125930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17132] = 5, + [16251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 7, + ACTIONS(2429), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126206,7 +125946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1733), 39, + ACTIONS(2431), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126246,15 +125986,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17193] = 5, + [16312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 7, + ACTIONS(2433), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126262,7 +126002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1737), 39, + ACTIONS(2435), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126302,15 +126042,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17254] = 5, + [16373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 7, + ACTIONS(2437), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126318,7 +126058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1741), 39, + ACTIONS(2439), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126358,15 +126098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17315] = 5, + [16434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(1747), 7, + ACTIONS(2441), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126374,7 +126114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1749), 39, + ACTIONS(2443), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126414,15 +126154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17376] = 5, + [16495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1751), 7, + ACTIONS(2445), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126430,7 +126170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1753), 39, + ACTIONS(2447), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126470,15 +126210,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17437] = 5, + [16556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(1759), 7, + ACTIONS(2449), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126486,7 +126226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1761), 39, + ACTIONS(2451), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126526,15 +126266,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17498] = 5, + [16617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(1763), 7, + ACTIONS(2453), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126542,7 +126282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1765), 39, + ACTIONS(2455), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126582,15 +126322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17559] = 5, + [16678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1767), 7, + ACTIONS(2457), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126598,7 +126338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1769), 39, + ACTIONS(2459), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126638,15 +126378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17620] = 5, + [16739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 7, + ACTIONS(2461), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126654,7 +126394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1773), 39, + ACTIONS(2463), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126694,15 +126434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17681] = 5, + [16800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(1775), 7, + ACTIONS(2465), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126710,7 +126450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1777), 39, + ACTIONS(2467), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126750,15 +126490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17742] = 5, + [16861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 7, + ACTIONS(2469), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126766,7 +126506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1781), 39, + ACTIONS(2471), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126806,15 +126546,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17803] = 5, + [16922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 7, + ACTIONS(2473), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126822,7 +126562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1785), 39, + ACTIONS(2475), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126862,15 +126602,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17864] = 5, + [16983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(1787), 7, + ACTIONS(2477), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126878,7 +126618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1789), 39, + ACTIONS(2479), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126918,15 +126658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17925] = 5, + [17044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, + ACTIONS(2489), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126934,7 +126674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1793), 39, + ACTIONS(2491), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126974,15 +126714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17986] = 5, + [17105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(1795), 7, + ACTIONS(2989), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126990,7 +126730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1797), 39, + ACTIONS(2991), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127030,127 +126770,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18047] = 5, + [17166] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + ACTIONS(3601), 1, + anon_sym_LPAREN, + STATE(1407), 1, + sym_arguments, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3603), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1801), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18108] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1298), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1803), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3599), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1805), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18169] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1807), 7, + ACTIONS(2497), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127158,7 +126844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1809), 39, + ACTIONS(2499), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127198,15 +126884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18230] = 5, + [17292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(1811), 7, + ACTIONS(2501), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127214,7 +126900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1813), 39, + ACTIONS(2503), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127254,15 +126940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18291] = 5, + [17353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(1815), 7, + ACTIONS(2505), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127270,7 +126956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1817), 39, + ACTIONS(2507), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127310,15 +126996,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18352] = 5, + [17414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(1819), 7, + ACTIONS(2737), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127326,7 +127012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1821), 39, + ACTIONS(2739), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127366,15 +127052,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18413] = 5, + [17475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1823), 7, + ACTIONS(2509), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127382,7 +127068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1825), 39, + ACTIONS(2511), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127422,15 +127108,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18474] = 5, + [17536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(1827), 7, + ACTIONS(2513), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127438,7 +127124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1829), 39, + ACTIONS(2515), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127478,15 +127164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18535] = 5, + [17597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(1831), 7, + ACTIONS(2517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127494,7 +127180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1833), 39, + ACTIONS(2519), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127534,15 +127220,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18596] = 5, + [17658] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3605), 1, + anon_sym_move, + STATE(473), 1, + sym_block, + STATE(3637), 1, + sym_label, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(1835), 7, + ACTIONS(3303), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [17733] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1297), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127550,7 +127299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1837), 39, + ACTIONS(2523), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127590,15 +127339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18657] = 5, + [17794] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(1839), 7, + ACTIONS(2525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127606,7 +127355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1841), 39, + ACTIONS(2527), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127646,15 +127395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18718] = 5, + [17855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 7, + ACTIONS(2529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127662,7 +127411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1845), 39, + ACTIONS(2531), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127702,15 +127451,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18779] = 5, + [17916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(1847), 7, + ACTIONS(2533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127718,7 +127467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1849), 39, + ACTIONS(2535), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127758,15 +127507,128 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18840] = 5, + [17977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 7, + ACTIONS(1583), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1585), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18038] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3607), 1, + anon_sym_COLON_COLON, + STATE(1302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3370), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18101] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1303), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127774,7 +127636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1853), 39, + ACTIONS(2551), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127814,15 +127676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18901] = 5, + [18162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(1855), 7, + ACTIONS(2557), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127830,7 +127692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1857), 39, + ACTIONS(2559), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127870,15 +127732,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18962] = 5, + [18223] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + ACTIONS(3609), 1, + anon_sym_COLON_COLON, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127894,7 +127758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 31, + ACTIONS(3370), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127922,19 +127786,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18286] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3507), 1, anon_sym_COLON_COLON, + STATE(1306), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3370), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19023] = 5, + [18349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 15, + ACTIONS(3613), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127950,7 +127870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3641), 31, + ACTIONS(3611), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127978,19 +127898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19084] = 5, + [18410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(1859), 7, + ACTIONS(2729), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127998,7 +127918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1861), 39, + ACTIONS(2731), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128038,15 +127958,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19145] = 5, + [18471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(1863), 7, + ACTIONS(3617), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3615), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1310), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2745), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128054,7 +128030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1865), 39, + ACTIONS(2747), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128094,71 +128070,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19206] = 5, + [18593] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + ACTIONS(3619), 1, + anon_sym_LBRACE, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(1867), 7, + ACTIONS(3378), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3380), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1869), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19267] = 5, + anon_sym_as, + anon_sym_else, + [18656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1871), 7, + ACTIONS(2591), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128166,7 +128143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1873), 39, + ACTIONS(2593), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128206,15 +128183,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19328] = 5, + [18717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(1875), 7, + ACTIONS(2599), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128222,7 +128199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1877), 39, + ACTIONS(2601), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128262,15 +128239,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19389] = 5, + [18778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 7, + ACTIONS(3623), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128278,7 +128255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1881), 39, + ACTIONS(3621), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128318,15 +128295,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19450] = 5, + [18839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + ACTIONS(3625), 1, + anon_sym_LBRACE, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(1883), 7, + ACTIONS(3335), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3337), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [18902] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2609), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128334,7 +128368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1885), 39, + ACTIONS(2611), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128374,15 +128408,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19511] = 5, + [18963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3629), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3627), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19024] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1318), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3633), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3631), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19085] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 7, + ACTIONS(2617), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128390,7 +128536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1889), 39, + ACTIONS(2619), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128430,15 +128576,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19572] = 5, + [19146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(1891), 7, + ACTIONS(2621), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128446,7 +128592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1893), 39, + ACTIONS(2623), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128486,15 +128632,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19633] = 5, + [19207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(1895), 7, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128502,7 +128648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1897), 39, + ACTIONS(2231), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128542,15 +128688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19694] = 5, + [19268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 7, + ACTIONS(2625), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128558,7 +128704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1905), 39, + ACTIONS(2627), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128598,15 +128744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19755] = 5, + [19329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 7, + ACTIONS(2289), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128614,7 +128760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1913), 39, + ACTIONS(2291), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128654,15 +128800,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19816] = 5, + [19390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(1915), 7, + ACTIONS(2629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128670,7 +128816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1917), 39, + ACTIONS(2631), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128710,15 +128856,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19877] = 5, + [19451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(1919), 7, + ACTIONS(2633), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128726,7 +128872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1921), 39, + ACTIONS(2635), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128766,15 +128912,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19938] = 5, + [19512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(1923), 7, + ACTIONS(2645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128782,7 +128928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1925), 39, + ACTIONS(2647), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128822,15 +128968,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19999] = 5, + [19573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(1927), 7, + ACTIONS(2649), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128838,7 +128984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1929), 39, + ACTIONS(2651), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128878,15 +129024,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20060] = 5, + [19634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(1931), 7, + ACTIONS(2653), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128894,7 +129040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1933), 39, + ACTIONS(2655), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128934,15 +129080,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20121] = 5, + [19695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 7, + ACTIONS(2657), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128950,7 +129096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1937), 39, + ACTIONS(2659), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128990,15 +129136,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20182] = 5, + [19756] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(1939), 7, + ACTIONS(2665), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129006,7 +129152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1941), 39, + ACTIONS(2667), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129046,15 +129192,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20243] = 5, + [19817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(1943), 7, + ACTIONS(2669), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129062,7 +129208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1945), 39, + ACTIONS(2671), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129102,15 +129248,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20304] = 5, + [19878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(1947), 7, + ACTIONS(2673), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129118,7 +129264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1949), 39, + ACTIONS(2675), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129158,15 +129304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20365] = 5, + [19939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 7, + ACTIONS(2677), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129174,7 +129320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1953), 39, + ACTIONS(2679), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129214,15 +129360,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20426] = 5, + [20000] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3465), 1, + anon_sym_BANG, + ACTIONS(3635), 1, + anon_sym_move, + STATE(390), 1, + sym_block, + STATE(3600), 1, + sym_label, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(1955), 7, + ACTIONS(3303), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [20075] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1335), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2681), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129230,7 +129439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1957), 39, + ACTIONS(2683), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129270,15 +129479,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20487] = 5, + [20136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(1959), 7, + ACTIONS(2685), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129286,7 +129495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1961), 39, + ACTIONS(2687), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129326,15 +129535,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20548] = 5, + [20197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(1963), 7, + ACTIONS(2701), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129342,7 +129551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1965), 39, + ACTIONS(2703), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129382,15 +129591,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20609] = 5, + [20258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(1967), 7, + ACTIONS(2705), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129398,7 +129607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1969), 39, + ACTIONS(2707), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129438,15 +129647,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20670] = 5, + [20319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(1971), 7, + ACTIONS(2733), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129454,7 +129663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1973), 39, + ACTIONS(2735), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129494,15 +129703,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20731] = 5, + [20380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 7, + ACTIONS(2749), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129510,7 +129719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1977), 39, + ACTIONS(2751), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129550,15 +129759,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20792] = 5, + [20441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(1979), 7, + ACTIONS(2753), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129566,7 +129775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1981), 39, + ACTIONS(2755), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129606,15 +129815,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20853] = 5, + [20502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 7, + ACTIONS(2757), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129622,7 +129831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1989), 39, + ACTIONS(2759), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129662,15 +129871,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20914] = 5, + [20563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(1991), 7, + ACTIONS(2761), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129678,7 +129887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1993), 39, + ACTIONS(2763), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129718,15 +129927,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20975] = 5, + [20624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(1995), 7, + ACTIONS(2765), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129734,7 +129943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1997), 39, + ACTIONS(2767), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129774,15 +129983,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21036] = 5, + [20685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(1999), 7, + ACTIONS(2769), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129790,7 +129999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2001), 39, + ACTIONS(2771), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129830,15 +130039,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21097] = 5, + [20746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 7, + ACTIONS(2773), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129846,7 +130055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2005), 39, + ACTIONS(2775), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129886,15 +130095,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21158] = 5, + [20807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2007), 7, + ACTIONS(2777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129902,7 +130111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2009), 39, + ACTIONS(2779), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129942,15 +130151,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21219] = 5, + [20868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 7, + ACTIONS(2795), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129958,7 +130167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2013), 39, + ACTIONS(2797), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129998,15 +130207,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21280] = 5, + [20929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 7, + ACTIONS(2799), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130014,7 +130223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2017), 39, + ACTIONS(2801), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130054,15 +130263,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21341] = 5, + [20990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2019), 7, + ACTIONS(2803), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130070,7 +130279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2021), 39, + ACTIONS(2805), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130110,15 +130319,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21402] = 5, + [21051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 7, + ACTIONS(2807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130126,7 +130335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2025), 39, + ACTIONS(2809), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130166,15 +130375,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21463] = 5, + [21112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 7, + ACTIONS(2811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130182,7 +130391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2029), 39, + ACTIONS(2813), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130222,15 +130431,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21524] = 5, + [21173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2031), 7, + ACTIONS(2815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130238,7 +130447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2033), 39, + ACTIONS(2817), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130278,15 +130487,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21585] = 5, + [21234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2035), 7, + ACTIONS(2819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130294,7 +130503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2037), 39, + ACTIONS(2821), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130334,15 +130543,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21646] = 5, + [21295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 7, + ACTIONS(2823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130350,7 +130559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2041), 39, + ACTIONS(2825), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130390,15 +130599,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21707] = 5, + [21356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2043), 7, + ACTIONS(2827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130406,7 +130615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2045), 39, + ACTIONS(2829), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130446,15 +130655,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21768] = 5, + [21417] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2047), 7, + ACTIONS(2835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130462,7 +130671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2049), 39, + ACTIONS(2837), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130502,15 +130711,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21829] = 5, + [21478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2051), 7, + ACTIONS(2839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130518,7 +130727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2053), 39, + ACTIONS(2841), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130558,15 +130767,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21890] = 5, + [21539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 7, + ACTIONS(2843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130574,7 +130783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2057), 39, + ACTIONS(2845), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130614,15 +130823,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21951] = 5, + [21600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 7, + ACTIONS(2847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130630,7 +130839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2061), 39, + ACTIONS(2849), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130670,15 +130879,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22012] = 5, + [21661] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2063), 7, + ACTIONS(2851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130686,7 +130895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2065), 39, + ACTIONS(2853), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130726,15 +130935,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22073] = 5, + [21722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 7, + ACTIONS(2855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130742,7 +130951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2069), 39, + ACTIONS(2857), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130782,15 +130991,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22134] = 5, + [21783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 7, + ACTIONS(2859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130798,7 +131007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2073), 39, + ACTIONS(2861), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130838,19 +131047,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22195] = 7, + [21844] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1384), 1, + STATE(1445), 1, sym_label, - STATE(1365), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, + ACTIONS(3639), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130866,7 +131075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3645), 29, + ACTIONS(3637), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130896,29 +131105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [22260] = 5, + [21909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 13, + ACTIONS(2863), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3649), 33, + ACTIONS(2865), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130939,42 +131142,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22321] = 5, + [21970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3655), 13, + ACTIONS(3261), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3263), 31, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22031] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1657), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3269), 1, + anon_sym_if, + ACTIONS(3641), 1, + sym_identifier, + ACTIONS(3645), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3649), 1, sym_metavariable, - ACTIONS(3653), 33, + STATE(2655), 1, + sym_scoped_identifier, + STATE(2832), 1, + sym__literal_pattern, + STATE(3515), 1, + sym_bracketed_type, + STATE(3527), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3267), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3647), 3, + sym_self, + sym_super, + sym_crate, + STATE(2344), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3643), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130992,91 +131286,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22382] = 5, + [22124] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3651), 1, + anon_sym_COLON_COLON, STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2099), 7, + ACTIONS(1487), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1489), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2101), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22443] = 7, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_arguments, STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, + ACTIONS(3655), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131092,8 +131370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 29, + ACTIONS(3653), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -131119,32 +131398,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22508] = 12, + [22248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3289), 1, + STATE(1370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2867), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3291), 1, - anon_sym_SQUOTE, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2869), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22309] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1657), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3281), 1, + anon_sym_if, + ACTIONS(3645), 1, + anon_sym_COLON_COLON, + ACTIONS(3657), 1, + sym_identifier, ACTIONS(3663), 1, - anon_sym_move, - STATE(461), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(1370), 2, + sym_metavariable, + STATE(2628), 1, + sym_scoped_identifier, + STATE(2854), 1, + sym__literal_pattern, + STATE(3515), 1, + sym_bracketed_type, + STATE(3527), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3279), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3661), 3, + sym_self, + sym_super, + sym_crate, + STATE(2344), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3659), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [22402] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3667), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131160,9 +131554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(3665), 31, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -131184,18 +131582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [22583] = 6, + anon_sym_else, + [22463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3665), 1, - anon_sym_COLON_COLON, - STATE(1371), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3671), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131211,7 +131610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, + ACTIONS(3669), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131239,18 +131638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22646] = 5, + [22524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 7, + ACTIONS(2871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131258,7 +131658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2145), 39, + ACTIONS(2873), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131298,68 +131698,124 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22707] = 6, + [22585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1373), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2875), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3667), 28, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2877), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22646] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1867), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [22769] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1869), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, ACTIONS(3675), 15, @@ -131409,15 +131865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22829] = 5, + [22767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 15, + ACTIONS(3679), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131433,7 +131889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1487), 30, + ACTIONS(3677), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131464,15 +131920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22889] = 5, + [22827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1271), 15, + ACTIONS(3683), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131488,7 +131944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1269), 30, + ACTIONS(3681), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131519,23 +131975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22949] = 9, + [22887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - STATE(1377), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 14, + ACTIONS(3687), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131549,14 +131997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 27, + ACTIONS(3685), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -131577,71 +132028,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [23017] = 5, + [22947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3689), 30, - anon_sym_SEMI, + ACTIONS(2357), 12, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23077] = 5, + sym_integer_literal, + sym_metavariable, + ACTIONS(2359), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3691), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131657,7 +132109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 30, + ACTIONS(3689), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131688,15 +132140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23137] = 5, + [23067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(3695), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131712,7 +132164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 30, + ACTIONS(3693), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131743,15 +132195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23197] = 5, + [23127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(3345), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131767,7 +132219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 30, + ACTIONS(3343), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131798,15 +132250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23257] = 5, + [23187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3699), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131822,7 +132274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, + ACTIONS(3697), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131853,15 +132305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23317] = 5, + [23247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131877,7 +132329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131908,15 +132360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23377] = 5, + [23307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(3703), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131932,7 +132384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 30, + ACTIONS(3701), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131963,15 +132415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23437] = 5, + [23367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3707), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131987,7 +132439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(3705), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132018,70 +132470,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23497] = 5, + [23427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2305), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23557] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2307), 30, + 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__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1279), 15, + ACTIONS(3703), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132097,7 +132549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1277), 30, + ACTIONS(3701), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132128,15 +132580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23617] = 5, + [23547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132152,7 +132604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 30, + ACTIONS(3339), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132183,15 +132635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23677] = 5, + [23607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132207,7 +132659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3721), 30, + ACTIONS(1471), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132238,15 +132690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23737] = 5, + [23667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(3711), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132262,7 +132714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1261), 30, + ACTIONS(3709), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132293,15 +132745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23797] = 5, + [23727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132317,7 +132769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1429), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132348,15 +132800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23857] = 5, + [23787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, + ACTIONS(1005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132372,7 +132824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3725), 30, + ACTIONS(1007), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132403,15 +132855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23917] = 5, + [23847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3715), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132427,7 +132879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3729), 30, + ACTIONS(3713), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132458,73 +132910,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23977] = 8, + [23907] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - STATE(1394), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3735), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3733), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(407), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3309), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24043] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1395), 2, + ACTIONS(3717), 1, + anon_sym_BANG, + ACTIONS(3719), 1, + anon_sym_COLON_COLON, + ACTIONS(3721), 1, + anon_sym_move, + STATE(1863), 1, + sym_block, + STATE(3638), 1, + sym_label, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132540,14 +132948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 30, - anon_sym_SEMI, + ACTIONS(3301), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132567,74 +132971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24103] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1396), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3493), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3491), 30, - 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__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24163] = 5, + [23981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, + ACTIONS(3725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132650,7 +132996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3737), 30, + ACTIONS(3723), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132681,15 +133027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24223] = 5, + [24041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132705,7 +133051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3741), 30, + ACTIONS(1047), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132736,15 +133082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24283] = 5, + [24101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3747), 15, + ACTIONS(3729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132760,7 +133106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 30, + ACTIONS(3727), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132791,15 +133137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24343] = 5, + [24161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3751), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132815,7 +133161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3749), 30, + ACTIONS(1479), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132846,76 +133192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24403] = 5, + [24221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3507), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3505), 30, - 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__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24463] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 14, + ACTIONS(3733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132929,14 +133214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 28, + ACTIONS(3731), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -132959,7 +133247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24529] = 5, + [24281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -132967,7 +133255,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 15, + ACTIONS(3737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132983,7 +133271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3757), 30, + ACTIONS(3735), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133014,7 +133302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24589] = 5, + [24341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133022,7 +133310,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133038,7 +133326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1459), 30, + ACTIONS(3739), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133069,7 +133357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24649] = 5, + [24401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133077,54 +133365,54 @@ static const uint16_t ts_small_parse_table[] = { STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3247), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1049), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1051), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3245), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24709] = 5, + anon_sym_as, + anon_sym_else, + [24461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133132,7 +133420,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3763), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133148,7 +133436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3761), 30, + ACTIONS(1437), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133179,7 +133467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24769] = 5, + [24521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133187,7 +133475,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3745), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133203,7 +133491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3765), 30, + ACTIONS(3743), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133234,7 +133522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24829] = 5, + [24581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133242,7 +133530,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1275), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133258,7 +133546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1273), 30, + ACTIONS(1417), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133289,15 +133577,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24889] = 5, + [24641] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3751), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133311,17 +133605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 30, + ACTIONS(3747), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -133344,7 +133635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24949] = 5, + [24707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133352,7 +133643,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(1397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133368,7 +133659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 30, + ACTIONS(1395), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133399,7 +133690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25009] = 5, + [24767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133407,7 +133698,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3775), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133423,7 +133714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3773), 30, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133454,7 +133745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25069] = 5, + [24827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133462,7 +133753,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3779), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133478,7 +133769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3777), 30, + ACTIONS(1453), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133509,7 +133800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25129] = 5, + [24887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133517,7 +133808,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(1007), 15, + ACTIONS(3759), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133533,7 +133824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1009), 30, + ACTIONS(3757), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133564,7 +133855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25189] = 5, + [24947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133572,7 +133863,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 15, + ACTIONS(3763), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133588,7 +133879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3781), 30, + ACTIONS(3761), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133619,15 +133910,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25249] = 5, + [25007] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3787), 15, + ACTIONS(3767), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133641,17 +133938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3785), 30, + ACTIONS(3765), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -133674,7 +133968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25309] = 5, + [25073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133682,7 +133976,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, + ACTIONS(3771), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133698,7 +133992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 30, + ACTIONS(3769), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133729,7 +134023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25369] = 5, + [25133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133737,7 +134031,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(1423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133753,7 +134047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133784,21 +134078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25429] = 8, + [25193] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 14, + ACTIONS(3775), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133812,14 +134100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3789), 28, + ACTIONS(3773), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -133842,7 +134133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25495] = 5, + [25253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133850,7 +134141,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(3779), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133866,7 +134157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 30, + ACTIONS(3777), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133897,7 +134188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25555] = 5, + [25313] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133905,7 +134196,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133921,7 +134212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1455), 30, + ACTIONS(1495), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133952,15 +134243,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25615] = 5, + [25373] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3783), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3781), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25439] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + STATE(1422), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133976,13 +134329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1447), 30, + ACTIONS(3301), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -134004,18 +134356,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25675] = 5, + [25503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1453), 15, + ACTIONS(3787), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3785), 30, + 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__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25563] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3791), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3789), 30, + 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__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25623] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134031,7 +134492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3793), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134062,15 +134523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25735] = 5, + [25683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 15, + ACTIONS(1357), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134086,7 +134547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1479), 30, + ACTIONS(1355), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134117,15 +134578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25795] = 5, + [25743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134141,7 +134602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 30, + ACTIONS(3797), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134172,15 +134633,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25855] = 5, + [25803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3493), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3491), 30, + 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__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25863] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 15, + ACTIONS(1365), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134196,7 +134712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1483), 30, + ACTIONS(1363), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134227,15 +134743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25915] = 5, + [25923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1367), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134251,7 +134767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1365), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134282,15 +134798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25975] = 5, + [25983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(3803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134306,7 +134822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 30, + ACTIONS(3801), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134337,88 +134853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26035] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [26043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2492), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(1428), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 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, - [26131] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 15, + ACTIONS(3807), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134434,7 +134877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1257), 30, + ACTIONS(3805), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134465,15 +134908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26191] = 5, + [26103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 15, + ACTIONS(3811), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134489,7 +134932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1411), 30, + ACTIONS(3809), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134520,21 +134963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26251] = 8, + [26163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - STATE(1431), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 14, + ACTIONS(3815), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134548,14 +134985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3793), 28, + ACTIONS(3813), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -134578,15 +135018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26317] = 5, + [26223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134602,7 +135042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3797), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134633,15 +135073,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26377] = 5, + [26283] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3402), 1, + sym_identifier, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3408), 1, + anon_sym_STAR, + ACTIONS(3412), 1, + anon_sym_AMP, + ACTIONS(3414), 1, + anon_sym_COLON_COLON, + ACTIONS(3416), 1, + anon_sym_SQUOTE, + ACTIONS(3420), 1, + anon_sym_for, + ACTIONS(3424), 1, + sym_metavariable, + STATE(2441), 1, + sym_where_predicate, + STATE(2646), 1, + sym_scoped_type_identifier, + STATE(2984), 1, + sym_generic_type, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 15, + ACTIONS(3418), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + STATE(3299), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3410), 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, + [26379] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3819), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134657,7 +135170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3801), 30, + ACTIONS(3817), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134688,15 +135201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26437] = 5, + [26439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3823), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134712,7 +135225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 30, + ACTIONS(3821), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134743,15 +135256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26497] = 5, + [26499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(3827), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134767,7 +135280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 30, + ACTIONS(3825), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134798,70 +135311,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26557] = 5, + [26559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3573), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26617] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3571), 30, + 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__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134877,7 +135390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134908,15 +135421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26677] = 5, + [26679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(3831), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134932,7 +135445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 30, + ACTIONS(3829), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134963,15 +135476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26737] = 5, + [26739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 15, + ACTIONS(997), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134987,7 +135500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3357), 30, + ACTIONS(999), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135018,15 +135531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26797] = 5, + [26799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(3835), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135042,7 +135555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 30, + ACTIONS(3833), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135073,15 +135586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26857] = 5, + [26859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3839), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135097,7 +135610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, + ACTIONS(3837), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135128,15 +135641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26917] = 5, + [26919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(3843), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135152,7 +135665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 30, + ACTIONS(3841), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135183,15 +135696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26977] = 5, + [26979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(3847), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135207,7 +135720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 30, + ACTIONS(3845), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135238,15 +135751,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27037] = 5, + [27039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3253), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3251), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27099] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135262,7 +135830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(983), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135293,15 +135861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27097] = 5, + [27159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135317,7 +135885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 30, + ACTIONS(3849), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135348,15 +135916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27157] = 5, + [27219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135372,7 +135940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1361), 30, + ACTIONS(3853), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135403,15 +135971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27217] = 5, + [27279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135427,7 +135995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135458,88 +136026,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27277] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [27339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, + STATE(1453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1369), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3436), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3438), 1, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1367), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2664), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(1448), 2, + anon_sym_as, + anon_sym_else, + [27399] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 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, - [27373] = 5, + ACTIONS(3859), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3857), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135555,7 +136160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, + ACTIONS(3861), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135586,15 +136191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27433] = 5, + [27519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135610,7 +136215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 30, + ACTIONS(3865), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135641,15 +136246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27493] = 5, + [27579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1027), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135665,7 +136270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1029), 30, + ACTIONS(3869), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135696,15 +136301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27553] = 5, + [27639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135720,7 +136325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, + ACTIONS(3873), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135751,19 +136356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27613] = 7, + [27699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - STATE(1453), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135779,12 +136380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 28, + ACTIONS(3370), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -135806,17 +136408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27677] = 5, + [27759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1267), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135832,7 +136435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1265), 30, + ACTIONS(3327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135863,15 +136466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27737] = 5, + [27819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(1405), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135887,7 +136490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 30, + ACTIONS(1403), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135918,18 +136521,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27797] = 6, + [27879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 2, + STATE(1462), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1013), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1015), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1456), 2, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27939] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3879), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135945,12 +136600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 28, + ACTIONS(3877), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -135972,17 +136628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27859] = 5, + [27999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(1409), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135998,7 +136655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3851), 30, + ACTIONS(1407), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136029,15 +136686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27919] = 5, + [28059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136053,7 +136710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3855), 30, + ACTIONS(1441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136084,15 +136741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27979] = 5, + [28119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136108,7 +136765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136139,15 +136796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28039] = 5, + [28179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3861), 15, + ACTIONS(1427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136163,7 +136820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3859), 30, + ACTIONS(1425), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136194,15 +136851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28099] = 5, + [28239] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + ACTIONS(3881), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3675), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136218,13 +136878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3863), 30, + ACTIONS(3673), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -136246,73 +136905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28159] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1462), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2099), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(2101), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28219] = 5, + [28301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136328,7 +136931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 30, + ACTIONS(1491), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136359,84 +136962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28279] = 5, + [28361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2527), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2529), 30, - 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__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28339] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3871), 1, - anon_sym_BANG, - ACTIONS(3873), 1, - anon_sym_COLON_COLON, - ACTIONS(3875), 1, - anon_sym_move, - STATE(1747), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(1465), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136452,10 +136986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(1429), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136475,16 +137013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [28413] = 5, + anon_sym_else, + [28421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, + ACTIONS(3885), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136500,7 +137041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3877), 30, + ACTIONS(3883), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136531,15 +137072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28473] = 5, + [28481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136555,7 +137096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1407), 30, + ACTIONS(1499), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136586,125 +137127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28533] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1468), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3883), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3881), 30, - 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__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28593] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1469), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3887), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3885), 30, - 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__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28653] = 5, + [28541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3891), 15, + ACTIONS(3889), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136720,7 +137151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3889), 30, + ACTIONS(3887), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136751,15 +137182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28713] = 5, + [28601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3603), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136775,7 +137206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, + ACTIONS(3599), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136806,15 +137237,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28773] = 5, + [28661] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 15, + ACTIONS(3893), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136828,17 +137267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1013), 30, + ACTIONS(3891), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136859,17 +137295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [28833] = 5, + [28729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3895), 15, + ACTIONS(3899), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136885,7 +137320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3893), 30, + ACTIONS(3897), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136916,15 +137351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28893] = 5, + [28789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136940,7 +137375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, + ACTIONS(1503), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136971,15 +137406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28953] = 5, + [28849] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + ACTIONS(3295), 1, + anon_sym_BANG, + ACTIONS(3901), 1, + anon_sym_COLON_COLON, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(1417), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136995,13 +137434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1415), 30, + ACTIONS(1489), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137023,18 +137461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29013] = 5, + [28913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 15, + ACTIONS(1387), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137050,7 +137487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 30, + ACTIONS(1385), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137081,15 +137518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29073] = 5, + [28973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 15, + ACTIONS(3905), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137105,7 +137542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3901), 30, + ACTIONS(3903), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137136,15 +137573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29133] = 5, + [29033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3907), 15, + ACTIONS(3909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137160,7 +137597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3905), 30, + ACTIONS(3907), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137191,15 +137628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29193] = 5, + [29093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3911), 15, + ACTIONS(3913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137215,7 +137652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3909), 30, + ACTIONS(3911), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137246,15 +137683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29253] = 5, + [29153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(1401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137270,7 +137707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 30, + ACTIONS(1399), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137301,15 +137738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29313] = 5, + [29213] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + ACTIONS(3915), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, + ACTIONS(3675), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137325,13 +137765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3917), 30, + ACTIONS(3673), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137353,18 +137792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29373] = 5, + [29275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, + ACTIONS(3919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137380,7 +137818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 30, + ACTIONS(3917), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137411,12 +137849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29433] = 5, + [29335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, ACTIONS(3923), 15, @@ -137466,12 +137904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29493] = 5, + [29395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, ACTIONS(3927), 15, @@ -137521,15 +137959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29553] = 5, + [29455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137545,7 +137983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137576,15 +138014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29613] = 5, + [29515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(991), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137600,7 +138038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 30, + ACTIONS(993), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137631,19 +138069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29673] = 7, + [29575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(3937), 1, - anon_sym_COLON_COLON, - STATE(1487), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1383), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137659,12 +138093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 28, + ACTIONS(1381), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -137686,17 +138121,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29737] = 5, + [29635] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3402), 1, + sym_identifier, + ACTIONS(3406), 1, + anon_sym_LPAREN, + ACTIONS(3408), 1, + anon_sym_STAR, + ACTIONS(3412), 1, + anon_sym_AMP, + ACTIONS(3414), 1, + anon_sym_COLON_COLON, + ACTIONS(3416), 1, + anon_sym_SQUOTE, + ACTIONS(3420), 1, + anon_sym_for, + ACTIONS(3424), 1, + sym_metavariable, + STATE(2555), 1, + sym_where_predicate, + STATE(2646), 1, + sym_scoped_type_identifier, + STATE(2984), 1, + sym_generic_type, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3941), 15, + ACTIONS(3418), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + STATE(3299), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3410), 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, + [29731] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137712,7 +138221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3939), 30, + ACTIONS(3929), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137743,15 +138252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29797] = 5, + [29791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137767,7 +138276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(997), 30, + ACTIONS(3933), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137798,15 +138307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29857] = 5, + [29851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137822,7 +138331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, + ACTIONS(3937), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137853,15 +138362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29917] = 5, + [29911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137877,7 +138386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1025), 30, + ACTIONS(3941), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137908,15 +138417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29977] = 5, + [29971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3945), 15, + ACTIONS(3947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137932,7 +138441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3943), 30, + ACTIONS(3945), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137963,15 +138472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30037] = 5, + [30031] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3949), 15, + ACTIONS(3951), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137985,17 +138500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3947), 30, + ACTIONS(3949), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138023,10 +138535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138042,7 +138554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(3953), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138080,56 +138592,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1323), 1, + ACTIONS(1299), 1, anon_sym_fn, - ACTIONS(1331), 1, + ACTIONS(1307), 1, anon_sym_extern, - ACTIONS(3181), 1, + ACTIONS(3201), 1, anon_sym_for, - ACTIONS(3400), 1, + ACTIONS(3414), 1, anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, + ACTIONS(3424), 1, sym_metavariable, - ACTIONS(3951), 1, + ACTIONS(3452), 1, + anon_sym_default, + ACTIONS(3957), 1, sym_identifier, - STATE(1565), 1, + STATE(1578), 1, sym_for_lifetimes, - STATE(1938), 1, + STATE(1948), 1, sym_scoped_type_identifier, - STATE(1978), 1, + STATE(1972), 1, sym_generic_type, - STATE(2239), 1, + STATE(2250), 1, aux_sym_function_modifiers_repeat1, - STATE(2387), 1, + STATE(2365), 1, sym_extern_modifier, STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3386), 1, - sym_function_modifiers, - STATE(3462), 1, sym_scoped_identifier, - STATE(3499), 1, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, sym_bracketed_type, - ACTIONS(3406), 2, + STATE(3549), 1, + sym_function_modifiers, + ACTIONS(3418), 2, anon_sym_gen, anon_sym_union, - STATE(1495), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - STATE(1995), 2, + STATE(2006), 2, sym_higher_ranked_trait_bound, sym_function_type, - ACTIONS(1317), 3, + ACTIONS(1293), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3408), 3, + ACTIONS(3422), 3, sym_self, sym_super, sym_crate, - ACTIONS(3398), 17, + ACTIONS(3450), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138147,17 +138659,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30256] = 6, + [30256] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3311), 1, + anon_sym_move, + ACTIONS(3959), 1, anon_sym_COLON_COLON, - STATE(1496), 2, + STATE(1467), 1, + sym_block, + STATE(3589), 1, + sym_label, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138173,13 +138695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 28, - anon_sym_SEMI, + ACTIONS(3301), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138199,28 +138718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, - anon_sym_else, - [30317] = 10, + [30327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3293), 1, - anon_sym_move, - ACTIONS(3953), 1, + ACTIONS(3961), 1, anon_sym_COLON_COLON, - STATE(1421), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(1497), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138236,10 +138745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(1489), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138259,103 +138771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COMMA, anon_sym_as, - [30386] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_default, - ACTIONS(3426), 1, - sym_metavariable, - ACTIONS(3955), 1, - sym_identifier, - ACTIONS(3957), 1, - anon_sym_for, - STATE(1556), 1, - sym_scoped_type_identifier, - STATE(1591), 1, - sym_for_lifetimes, - STATE(1635), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3341), 1, - sym_function_modifiers, - STATE(3538), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_bracketed_type, - ACTIONS(3422), 2, - anon_sym_gen, - anon_sym_union, - STATE(1498), 2, - sym_line_comment, - sym_block_comment, - STATE(1700), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3424), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3416), 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, - [30485] = 11, + anon_sym_else, + [30388] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, + ACTIONS(3305), 1, anon_sym_BANG, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3293), 1, + ACTIONS(3311), 1, anon_sym_move, - ACTIONS(3953), 1, + ACTIONS(3959), 1, anon_sym_COLON_COLON, - STATE(1421), 1, + STATE(1467), 1, sym_block, - STATE(3569), 1, + STATE(3589), 1, sym_label, - STATE(1499), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138371,7 +138808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3301), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -138394,64 +138831,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [30556] = 25, + [30457] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, + ACTIONS(1307), 1, anon_sym_extern, - ACTIONS(3119), 1, + ACTIONS(3167), 1, anon_sym_fn, - ACTIONS(3382), 1, + ACTIONS(3392), 1, anon_sym_COLON_COLON, - ACTIONS(3384), 1, + ACTIONS(3394), 1, anon_sym_default, - ACTIONS(3392), 1, + ACTIONS(3400), 1, sym_metavariable, - ACTIONS(3959), 1, + ACTIONS(3963), 1, sym_identifier, - ACTIONS(3961), 1, + ACTIONS(3965), 1, anon_sym_for, - STATE(1036), 1, + STATE(1044), 1, sym_scoped_type_identifier, - STATE(1094), 1, + STATE(1180), 1, sym_generic_type, - STATE(1584), 1, + STATE(1588), 1, sym_for_lifetimes, - STATE(2239), 1, + STATE(2250), 1, aux_sym_function_modifiers_repeat1, - STATE(2387), 1, + STATE(2365), 1, sym_extern_modifier, - STATE(3367), 1, + STATE(3383), 1, sym_function_modifiers, - STATE(3513), 1, + STATE(3532), 1, sym_scoped_identifier, - STATE(3546), 1, + STATE(3566), 1, sym_generic_type_with_turbofish, - STATE(3556), 1, + STATE(3576), 1, sym_bracketed_type, - ACTIONS(3388), 2, + ACTIONS(3396), 2, anon_sym_gen, anon_sym_union, - STATE(1440), 2, + STATE(1384), 2, sym_higher_ranked_trait_bound, sym_function_type, - STATE(1500), 2, + STATE(1503), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3398), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3390), 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, + [30556] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3129), 1, + anon_sym_fn, + ACTIONS(3436), 1, + anon_sym_COLON_COLON, + ACTIONS(3438), 1, + anon_sym_default, + ACTIONS(3446), 1, + sym_metavariable, + ACTIONS(3967), 1, + sym_identifier, + ACTIONS(3969), 1, + anon_sym_for, + STATE(1557), 1, + sym_scoped_type_identifier, + STATE(1595), 1, + sym_for_lifetimes, + STATE(1642), 1, + sym_generic_type, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(3557), 1, + sym_scoped_identifier, + STATE(3574), 1, + sym_generic_type_with_turbofish, + STATE(3580), 1, + sym_bracketed_type, + STATE(3659), 1, + sym_function_modifiers, + ACTIONS(3442), 2, + anon_sym_gen, + anon_sym_union, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 3, + STATE(1805), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1293), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3390), 3, + ACTIONS(3444), 3, sym_self, sym_super, sym_crate, - ACTIONS(3380), 17, + ACTIONS(3434), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138474,12 +138986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - STATE(1501), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138495,7 +139007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 28, + ACTIONS(3301), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138524,66 +139036,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [30716] = 22, + [30716] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, anon_sym_EQ, - ACTIONS(3989), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1502), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3939), 7, + ACTIONS(387), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138594,122 +139099,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30808] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3991), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1503), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [30898] = 19, + [30802] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(1657), 1, anon_sym_DASH, - ACTIONS(1341), 1, + ACTIONS(1681), 1, aux_sym_string_literal_token1, - ACTIONS(1351), 1, + ACTIONS(1689), 1, sym__raw_string_literal_start, - ACTIONS(2471), 1, + ACTIONS(3645), 1, anon_sym_COLON_COLON, - ACTIONS(3271), 1, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3663), 1, sym_metavariable, - STATE(2079), 1, + STATE(2628), 1, sym_scoped_identifier, - STATE(2121), 1, + STATE(2854), 1, sym__literal_pattern, - STATE(3353), 1, + STATE(3515), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3527), 1, sym_generic_type_with_turbofish, - ACTIONS(1343), 2, + ACTIONS(1683), 2, anon_sym_true, anon_sym_false, - STATE(1504), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 3, + ACTIONS(1679), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3279), 3, + ACTIONS(3661), 3, sym_self, sym_super, sym_crate, - STATE(2037), 4, + STATE(2344), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3277), 20, + ACTIONS(3659), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138730,57 +139170,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [30984] = 18, + [30888] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + STATE(1508), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3893), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3681), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1505), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3677), 20, + anon_sym_DOT_DOT, + ACTIONS(3891), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -138792,34 +139220,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31068] = 11, + [30956] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1506), 2, + ACTIONS(3382), 1, + anon_sym_LBRACE, + ACTIONS(3384), 1, + anon_sym_COLON_COLON, + ACTIONS(3991), 1, + anon_sym_BANG, + STATE(1444), 1, + sym_field_initializer_list, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(1487), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -138828,13 +139258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 25, + ACTIONS(1489), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138853,65 +139284,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31138] = 21, + anon_sym_as, + [31022] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(3965), 2, + anon_sym_AMP, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3991), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1507), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3993), 17, + ACTIONS(3893), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138922,65 +139338,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31228] = 21, + [31096] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3991), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1508), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3997), 17, + ACTIONS(3893), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138991,113 +139398,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31318] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1295), 1, - anon_sym_DASH, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(1351), 1, - sym__raw_string_literal_start, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(3259), 1, - sym_identifier, - ACTIONS(3269), 1, - sym_metavariable, - STATE(2074), 1, - sym_scoped_identifier, - STATE(2129), 1, - sym__literal_pattern, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - ACTIONS(1343), 2, - anon_sym_true, - anon_sym_false, - STATE(1509), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1339), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3267), 3, - sym_self, - sym_super, - sym_crate, - STATE(2037), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3265), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [31404] = 15, + [31168] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1510), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 4, + ACTIONS(3893), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3677), 25, + ACTIONS(3891), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139123,59 +139468,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31482] = 19, + [31244] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3965), 2, + ACTIONS(3893), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4003), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1511), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4001), 19, + ACTIONS(3891), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139190,49 +139533,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31568] = 11, + [31326] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_BANG, - ACTIONS(4009), 1, - anon_sym_COLON_COLON, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1512), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3299), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3893), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, + STATE(1514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3295), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + ACTIONS(3891), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -139242,36 +139593,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31638] = 10, + anon_sym_COMMA, + anon_sym_else, + [31410] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - STATE(1513), 2, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3893), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -139281,7 +139632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3677), 25, + ACTIONS(3891), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139307,58 +139658,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31706] = 21, + [31480] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3995), 1, + anon_sym_EQ, + ACTIONS(3997), 1, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3993), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31570] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, + ACTIONS(3997), 1, anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(4003), 1, anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1514), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4013), 17, + ACTIONS(4001), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139376,44 +139796,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31796] = 9, + [31660] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - ACTIONS(3450), 1, - anon_sym_COLON_COLON, - ACTIONS(4017), 1, - anon_sym_BANG, - STATE(1473), 1, - sym_field_initializer_list, - STATE(1515), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, + ACTIONS(3973), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3893), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, + ACTIONS(3891), 25, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139432,55 +139857,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31862] = 19, + anon_sym_COMMA, + anon_sym_else, + [31738] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - STATE(1516), 2, + ACTIONS(4007), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(387), 19, + ACTIONS(4005), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139500,63 +139926,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31948] = 21, + [31824] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, + ACTIONS(3997), 1, anon_sym_DOT_DOT, - ACTIONS(4021), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1517), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 17, + ACTIONS(3873), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139567,60 +139996,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32038] = 22, + [31916] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4015), 1, + anon_sym_BANG, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + ACTIONS(4019), 1, + anon_sym_LT2, + STATE(1634), 1, + sym_type_arguments, + STATE(1645), 1, + sym_parameters, + STATE(1521), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3293), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3289), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31986] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1518), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3889), 7, + ACTIONS(3845), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139628,7 +140114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139639,58 +140125,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32130] = 21, + [32078] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, + ACTIONS(3997), 1, anon_sym_DOT_DOT, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1519), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 17, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139708,53 +140194,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [32220] = 19, + [32168] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1271), 1, anon_sym_DASH, - ACTIONS(1679), 1, + ACTIONS(1317), 1, aux_sym_string_literal_token1, - ACTIONS(1687), 1, + ACTIONS(1327), 1, sym__raw_string_literal_start, - ACTIONS(3531), 1, - sym_identifier, - ACTIONS(3535), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(3539), 1, + ACTIONS(3265), 1, + sym_identifier, + ACTIONS(3275), 1, sym_metavariable, - STATE(2632), 1, + STATE(2085), 1, sym_scoped_identifier, - STATE(2864), 1, + STATE(2128), 1, sym__literal_pattern, - STATE(3495), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3508), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - ACTIONS(1681), 2, + ACTIONS(1319), 2, anon_sym_true, anon_sym_false, - STATE(1520), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(1677), 3, + ACTIONS(1315), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3537), 3, + ACTIONS(3273), 3, sym_self, sym_super, sym_crate, - STATE(2364), 4, + STATE(2027), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3533), 20, + ACTIONS(3271), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139775,109 +140261,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32306] = 13, + [32254] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3971), 1, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3965), 2, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 1, + anon_sym_DOT_DOT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1521), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32380] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1522), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 25, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4021), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139888,61 +140328,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32452] = 19, + [32344] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1271), 1, anon_sym_DASH, - ACTIONS(1679), 1, + ACTIONS(1317), 1, aux_sym_string_literal_token1, - ACTIONS(1687), 1, + ACTIONS(1327), 1, sym__raw_string_literal_start, - ACTIONS(3535), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(3545), 1, + ACTIONS(3277), 1, sym_identifier, - ACTIONS(3551), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(2718), 1, + STATE(2071), 1, sym_scoped_identifier, - STATE(2882), 1, + STATE(2107), 1, sym__literal_pattern, - STATE(3495), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3508), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - ACTIONS(1681), 2, + ACTIONS(1319), 2, anon_sym_true, anon_sym_false, - STATE(1523), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(1677), 3, + ACTIONS(1315), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3549), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2364), 4, + STATE(2027), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3547), 20, + ACTIONS(3283), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139963,50 +140397,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32538] = 14, + [32430] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3965), 2, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 1, + anon_sym_DOT_DOT, + ACTIONS(4027), 1, + anon_sym_EQ, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1524), 2, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 25, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4025), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140017,65 +140464,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32614] = 17, + [32520] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1657), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3641), 1, + sym_identifier, + ACTIONS(3645), 1, + anon_sym_COLON_COLON, + ACTIONS(3649), 1, + sym_metavariable, + STATE(2655), 1, + sym_scoped_identifier, + STATE(2832), 1, + sym__literal_pattern, + STATE(3515), 1, + sym_bracketed_type, + STATE(3527), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + STATE(1528), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3647), 3, + sym_self, + sym_super, + sym_crate, + STATE(2344), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3643), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32606] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3681), 2, - anon_sym_EQ, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - STATE(1525), 2, + ACTIONS(3999), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 21, + ACTIONS(3801), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140086,119 +140603,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32696] = 22, + [32698] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4031), 1, + anon_sym_EQ, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(3999), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1526), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3821), 7, + ACTIONS(4029), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32788] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(4027), 1, - sym_identifier, - STATE(1527), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3283), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140209,79 +140670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [32851] = 10, + anon_sym_COMMA, + anon_sym_else, + [32788] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(4035), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4029), 1, - anon_sym_COLON_COLON, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3319), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3317), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32918] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(4033), 10, - anon_sym_LPAREN, + ACTIONS(4038), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -140291,7 +140692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4031), 32, + ACTIONS(4033), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140324,25 +140725,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32975] = 10, + [32847] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(4013), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4019), 1, anon_sym_LT2, - ACTIONS(4029), 1, + ACTIONS(4040), 1, anon_sym_COLON_COLON, - STATE(1618), 1, + STATE(1634), 1, sym_type_arguments, - STATE(1642), 1, + STATE(1645), 1, sym_parameters, - STATE(1530), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3315), 17, + ACTIONS(3325), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140360,90 +140761,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 20, + ACTIONS(3323), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3655), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3653), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33099] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [32914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - STATE(1532), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 9, + ACTIONS(3543), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -140451,9 +140798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4035), 32, + ACTIONS(3541), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140486,15 +140834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33158] = 5, + [32971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 10, + ACTIONS(4044), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -140505,7 +140853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3625), 32, + ACTIONS(4042), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140538,15 +140886,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33215] = 5, + [33028] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + ACTIONS(4046), 1, + anon_sym_COLON_COLON, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(4044), 10, + ACTIONS(4038), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -140554,10 +140904,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4042), 32, + ACTIONS(4033), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140590,15 +140939,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33272] = 5, + [33087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(4048), 10, + ACTIONS(4051), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -140609,7 +140958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4046), 32, + ACTIONS(4049), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140642,25 +140991,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33329] = 10, + [33144] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4029), 1, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1536), 2, + ACTIONS(3465), 1, + anon_sym_BANG, + ACTIONS(4053), 1, + sym_identifier, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3303), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140671,16 +141016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 20, + anon_sym_as, + ACTIONS(3301), 23, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140692,24 +141038,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33396] = 6, + [33207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4050), 1, - anon_sym_LPAREN, - STATE(1537), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 9, + ACTIONS(3567), 10, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -140719,7 +141065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4035), 32, + ACTIONS(3565), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140752,134 +141098,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33455] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(4053), 1, - anon_sym_COLON_COLON, - STATE(1473), 1, - sym_field_initializer_list, - STATE(1538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [33518] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_BANG, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, - STATE(1689), 1, - sym_field_initializer_list, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33583] = 9, + [33264] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(4013), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4019), 1, anon_sym_LT2, - STATE(1620), 1, + ACTIONS(4040), 1, + anon_sym_COLON_COLON, + STATE(1634), 1, sym_type_arguments, - STATE(1646), 1, + STATE(1645), 1, sym_parameters, - STATE(1540), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 17, + ACTIONS(3315), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140897,7 +141134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 20, + ACTIONS(3313), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -140918,75 +141155,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33647] = 5, + [33331] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3353), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3295), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3355), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4055), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [33703] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3497), 1, - anon_sym_LBRACE, - STATE(1542), 2, + STATE(1444), 1, + sym_field_initializer_list, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140996,10 +141185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 24, + ACTIONS(1489), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141019,288 +141208,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [33761] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_BANG, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - STATE(1543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3370), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3368), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33821] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_BANG, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - STATE(1544), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3331), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3329), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [33881] = 7, + [33394] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - STATE(1545), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3341), 22, + ACTIONS(4059), 10, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33941] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_BANG, - ACTIONS(3355), 1, - anon_sym_COLON_COLON, - STATE(1546), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3351), 17, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3349), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [34001] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1547), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3333), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3335), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - [34057] = 9, + sym_metavariable, + ACTIONS(4057), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33451] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(4013), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4019), 1, anon_sym_LT2, - STATE(1620), 1, + ACTIONS(4040), 1, + anon_sym_COLON_COLON, + STATE(1634), 1, sym_type_arguments, - STATE(1646), 1, + STATE(1645), 1, sym_parameters, - STATE(1548), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 17, + ACTIONS(3321), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141318,7 +141298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 20, + ACTIONS(3319), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141339,22 +141319,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34121] = 5, + [33518] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + ACTIONS(4015), 1, + anon_sym_BANG, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_COLON_COLON, + STATE(1769), 1, + sym_field_initializer_list, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141364,10 +141351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 25, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141387,20 +141374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34177] = 6, + [33583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, + ACTIONS(3619), 1, anon_sym_LBRACE, - STATE(1550), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, + ACTIONS(3378), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141417,7 +141402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3355), 24, + ACTIONS(3380), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141442,24 +141427,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34235] = 6, + [33641] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LBRACE, - STATE(1551), 2, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3959), 1, + anon_sym_COLON_COLON, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141469,10 +141455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 24, + ACTIONS(3301), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141492,27 +141478,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34293] = 7, + [33701] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3937), 1, - anon_sym_COLON_COLON, - ACTIONS(4017), 1, - anon_sym_BANG, - STATE(1552), 2, + ACTIONS(3569), 1, + anon_sym_LBRACE, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3358), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141522,11 +141507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, - anon_sym_SEMI, + ACTIONS(3360), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141546,18 +141530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [34353] = 6, + [33759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3469), 1, + ACTIONS(3533), 1, anon_sym_LBRACE, - STATE(1553), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(3366), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141574,7 +141559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 24, + ACTIONS(3368), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141599,15 +141584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34411] = 5, + [33817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141624,7 +141609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 25, + ACTIONS(3337), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141650,19 +141635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34467] = 7, + [33873] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, + ACTIONS(3335), 1, anon_sym_BANG, - ACTIONS(3953), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - STATE(1555), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3333), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141673,15 +141658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(3331), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141693,51 +141680,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34527] = 9, + anon_sym_LT2, + [33933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1620), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1556), 2, + ACTIONS(3625), 1, + anon_sym_LBRACE, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 17, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 20, + ACTIONS(3337), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141751,30 +141730,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [34591] = 9, + [33991] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(4013), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4019), 1, anon_sym_LT2, - STATE(1620), 1, + STATE(1635), 1, sym_type_arguments, STATE(1646), 1, sym_parameters, - STATE(1557), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 17, + ACTIONS(3341), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141792,7 +141774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3357), 20, + ACTIONS(3339), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141813,19 +141795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34655] = 7, + [34055] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3295), 1, anon_sym_BANG, - ACTIONS(4059), 1, + ACTIONS(4065), 1, anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141841,7 +141823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, + ACTIONS(1489), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141866,23 +141848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [34715] = 6, + [34115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_COLON_COLON, - STATE(1559), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3358), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141892,7 +141873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, + ACTIONS(3360), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141915,208 +141896,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34772] = 25, + [34171] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_SEMI, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2771), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, + anon_sym_LT2, + STATE(1635), 1, + sym_type_arguments, + STATE(1646), 1, + sym_parameters, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3329), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34867] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(772), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_SEMI, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(3055), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1561), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34962] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 20, anon_sym_LBRACK, - ACTIONS(3683), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4075), 1, - anon_sym_SEMI, - ACTIONS(4077), 1, - anon_sym_COMMA, - STATE(2797), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142125,26 +141947,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35057] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1563), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3378), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -142154,10 +141979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 23, + ACTIONS(3380), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142177,67 +142002,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35114] = 25, + [34291] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - STATE(1423), 1, - sym_block, - STATE(3569), 1, - sym_label, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1564), 2, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, + anon_sym_LT2, + STATE(1635), 1, + sym_type_arguments, + STATE(1646), 1, + sym_parameters, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3372), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_EQ, - ACTIONS(4095), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3370), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142246,135 +142053,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35209] = 22, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34355] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_fn, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2741), 1, - sym_scoped_type_identifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3427), 1, - sym_generic_type, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(3520), 1, - sym_function_modifiers, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1565), 2, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, + anon_sym_LT2, + STATE(1635), 1, + sym_type_arguments, + STATE(1646), 1, + sym_parameters, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3398), 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, - [35298] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(3345), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - STATE(1424), 1, - sym_block, - STATE(3569), 1, - sym_label, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3343), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142383,21 +142108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35393] = 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34419] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_else, - STATE(1773), 1, - sym_else_clause, - STATE(1567), 2, + ACTIONS(3366), 1, + anon_sym_BANG, + ACTIONS(3368), 1, + anon_sym_COLON_COLON, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 15, + ACTIONS(3364), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142408,12 +142138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1251), 23, + ACTIONS(3362), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142428,26 +142160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35452] = 6, + anon_sym_LT2, + [34479] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 1, + ACTIONS(3901), 1, anon_sym_COLON_COLON, - STATE(1568), 2, + ACTIONS(3991), 1, + anon_sym_BANG, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142463,10 +142196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 24, + ACTIONS(1489), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142486,17 +142220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35509] = 5, + [34539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1569), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, + ACTIONS(3366), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142513,10 +142246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3355), 24, + ACTIONS(3368), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142537,20 +142270,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35564] = 7, + [34595] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, - anon_sym_SQUOTE, - STATE(1683), 1, - sym_label, - STATE(1570), 2, + ACTIONS(3358), 1, + anon_sym_BANG, + ACTIONS(3360), 1, + anon_sym_COLON_COLON, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, + ACTIONS(3356), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142561,12 +142295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3645), 23, + ACTIONS(3354), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142581,41 +142317,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35623] = 5, + anon_sym_LT2, + [34655] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1571), 2, + ACTIONS(3378), 1, + anon_sym_BANG, + ACTIONS(3380), 1, + anon_sym_COLON_COLON, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(3376), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 24, + ACTIONS(3374), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142630,76 +142370,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35678] = 25, + anon_sym_LT2, + [34715] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(476), 1, + STATE(407), 1, sym_block, - STATE(3619), 1, + STATE(3600), 1, sym_label, - ACTIONS(4079), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34810] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(881), 1, + anon_sym_RBRACK, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4095), 1, + anon_sym_SEMI, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4101), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1572), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142710,19 +142518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35773] = 7, + [34905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3871), 1, - anon_sym_BANG, - ACTIONS(3873), 1, + ACTIONS(3915), 1, anon_sym_COLON_COLON, - STATE(1573), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3675), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142738,10 +142544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3673), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142761,67 +142567,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [35832] = 25, + [34962] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - STATE(477), 1, - sym_block, - STATE(3619), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4103), 1, + anon_sym_SEMI, + ACTIONS(4105), 1, + anon_sym_COMMA, + STATE(2783), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142832,19 +142639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35927] = 7, + [35057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_BANG, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - STATE(1575), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3583), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142860,9 +142663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(3581), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142883,67 +142687,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [35986] = 25, + [35112] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(3881), 1, + anon_sym_COLON_COLON, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3675), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - STATE(1779), 1, - sym_block, - STATE(3620), 1, - sym_label, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3673), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1576), 2, + anon_sym_SQUOTE, + anon_sym_as, + [35169] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3613), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3611), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35224] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4107), 1, + anon_sym_SQUOTE, + STATE(1719), 1, + sym_label, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3639), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3637), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142954,66 +142835,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36081] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35283] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(1785), 1, + STATE(1411), 1, sym_block, - STATE(3620), 1, + STATE(3589), 1, sym_label, - ACTIONS(4079), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1577), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143024,15 +142912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36176] = 5, + [35378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1578), 2, + ACTIONS(4109), 1, + anon_sym_else, + STATE(1699), 1, + sym_else_clause, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(1253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143048,10 +142940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 25, + ACTIONS(1251), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143072,68 +142963,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36231] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [35437] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - STATE(392), 1, - sym_block, - STATE(3355), 1, + STATE(1445), 1, sym_label, - ACTIONS(4079), 2, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3639), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4093), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4095), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3637), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143144,17 +143007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36326] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [35494] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3953), 1, + ACTIONS(4015), 1, + anon_sym_BANG, + ACTIONS(4111), 1, anon_sym_COLON_COLON, - STATE(1580), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143170,10 +143043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143193,68 +143066,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36383] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [35553] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(403), 1, + STATE(1401), 1, sym_block, - STATE(3355), 1, + STATE(3589), 1, sym_label, - ACTIONS(4079), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1581), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143265,17 +143137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36478] = 6, + [35648] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 1, - sym_label, - STATE(1582), 2, + ACTIONS(3717), 1, + anon_sym_BANG, + ACTIONS(3719), 1, + anon_sym_COLON_COLON, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143291,10 +143165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3645), 24, + ACTIONS(3301), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143314,23 +143188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36535] = 5, + [35707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(3366), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -143340,10 +143214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 25, + ACTIONS(3368), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143366,56 +143239,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36590] = 22, + [35762] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, + ACTIONS(1307), 1, anon_sym_extern, - ACTIONS(3400), 1, + ACTIONS(3414), 1, anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, + ACTIONS(3424), 1, sym_metavariable, - ACTIONS(4117), 1, + ACTIONS(3452), 1, + anon_sym_default, + ACTIONS(4113), 1, sym_identifier, - ACTIONS(4119), 1, + ACTIONS(4115), 1, anon_sym_fn, - STATE(2239), 1, + STATE(2250), 1, aux_sym_function_modifiers_repeat1, - STATE(2387), 1, + STATE(2365), 1, sym_extern_modifier, - STATE(2616), 1, + STATE(2554), 1, sym_scoped_type_identifier, STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, sym_generic_type_with_turbofish, - STATE(3400), 1, + STATE(3447), 1, sym_function_modifiers, - STATE(3427), 1, - sym_generic_type, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, + STATE(3519), 1, sym_bracketed_type, - ACTIONS(3406), 2, + STATE(3596), 1, + sym_generic_type, + ACTIONS(3418), 2, anon_sym_gen, anon_sym_union, - STATE(1584), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 3, + ACTIONS(1293), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3408), 3, + ACTIONS(3422), 3, sym_self, sym_super, sym_crate, - ACTIONS(3398), 17, + ACTIONS(3450), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143433,22 +143306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [36679] = 5, + [35851] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + ACTIONS(3915), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(3675), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -143458,7 +143333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 24, + ACTIONS(3673), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143481,20 +143356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36734] = 6, + [35908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1586), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143510,9 +143381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 23, + ACTIONS(3469), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143533,89 +143405,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [36791] = 5, + [35963] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3639), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + STATE(397), 1, + sym_block, + STATE(3600), 1, + sym_label, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3637), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36846] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1588), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3347), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143626,74 +143477,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36901] = 25, + [36058] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(750), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(4121), 1, - anon_sym_SEMI, - ACTIONS(4123), 1, - anon_sym_COMMA, - STATE(3016), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + STATE(483), 1, + sym_block, + STATE(3637), 1, + sym_label, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1589), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143704,156 +143547,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36996] = 5, + [36153] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1590), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3605), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + STATE(1718), 1, + sym_block, + STATE(3638), 1, + sym_label, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3603), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [37051] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(4125), 1, - sym_identifier, - ACTIONS(4127), 1, - anon_sym_fn, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2574), 1, - sym_scoped_type_identifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3427), 1, - sym_generic_type, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(3514), 1, - sym_function_modifiers, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3398), 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, - [37140] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3849), 1, - anon_sym_COLON_COLON, - STATE(1592), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3667), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143864,55 +143617,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [37197] = 14, + [36248] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4079), 2, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + STATE(1733), 1, + sym_block, + STATE(3638), 1, + sym_label, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1593), 2, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143923,22 +143687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37269] = 5, + [36343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1594), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(3479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143954,9 +143711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1261), 24, + ACTIONS(3477), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143977,117 +143735,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [37323] = 19, + [36398] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4003), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4101), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1595), 2, + ACTIONS(3959), 1, + anon_sym_COLON_COLON, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3303), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4001), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37405] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(3681), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1596), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3677), 17, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 24, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144100,20 +143780,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37483] = 6, + anon_sym_as, + [36455] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4129), 1, + ACTIONS(4117), 1, anon_sym_COLON_COLON, - STATE(1597), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144129,10 +143814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(1489), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144152,22 +143837,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [37539] = 5, + [36512] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3414), 1, + anon_sym_COLON_COLON, + ACTIONS(3424), 1, + sym_metavariable, + ACTIONS(3452), 1, + anon_sym_default, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_fn, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(2639), 1, + sym_scoped_type_identifier, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3416), 1, + sym_function_modifiers, + STATE(3519), 1, + sym_bracketed_type, + STATE(3596), 1, + sym_generic_type, + ACTIONS(3418), 2, + anon_sym_gen, + anon_sym_union, + STATE(1588), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3450), 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, + [36601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1598), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(3358), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -144177,7 +143931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3511), 24, + ACTIONS(3360), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144202,116 +143956,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37593] = 24, + [36656] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(893), 1, + anon_sym_RBRACK, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_RPAREN, - ACTIONS(4133), 1, + ACTIONS(4123), 1, + anon_sym_SEMI, + ACTIONS(4125), 1, anon_sym_COMMA, - STATE(2917), 1, + STATE(2837), 1, aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1599), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37685] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144322,40 +144026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37759] = 5, + [36751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1601), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 17, + ACTIONS(3378), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3341), 22, + ACTIONS(3380), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144370,23 +144066,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [37813] = 5, + [36806] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1602), 2, + ACTIONS(3881), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 15, + ACTIONS(3675), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144402,7 +144103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3581), 24, + ACTIONS(3673), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144425,25 +144126,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [37867] = 6, + [36863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4135), 1, - anon_sym_DASH_GT, - STATE(1603), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -144453,7 +144152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3585), 23, + ACTIONS(3337), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144476,63 +144175,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [37923] = 22, + [36918] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(903), 1, + anon_sym_RBRACK, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4137), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4127), 1, + anon_sym_SEMI, + ACTIONS(4129), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1604), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3939), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144543,55 +144247,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38011] = 18, + [37013] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_extern, + ACTIONS(3414), 1, + anon_sym_COLON_COLON, + ACTIONS(3424), 1, + sym_metavariable, + ACTIONS(3452), 1, + anon_sym_default, + ACTIONS(4131), 1, + sym_identifier, + ACTIONS(4133), 1, + anon_sym_fn, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(2552), 1, + sym_scoped_type_identifier, + STATE(3369), 1, + sym_scoped_identifier, + STATE(3385), 1, + sym_generic_type_with_turbofish, + STATE(3519), 1, + sym_bracketed_type, + STATE(3533), 1, + sym_function_modifiers, + STATE(3596), 1, + sym_generic_type, + ACTIONS(3418), 2, + anon_sym_gen, + anon_sym_union, + STATE(1595), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1293), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3422), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3450), 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, + [37102] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3681), 2, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, anon_sym_EQ, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + STATE(467), 1, + sym_block, + STATE(3637), 1, + sym_label, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - STATE(1605), 2, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144602,59 +144384,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38091] = 19, + [37197] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + STATE(1597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3629), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1606), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3627), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144665,63 +144425,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38173] = 21, + anon_sym_COLON_COLON, + anon_sym_as, + [37251] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4135), 1, + anon_sym_RPAREN, + ACTIONS(4137), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1607), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144732,61 +144501,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38259] = 21, + [37343] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(4139), 1, + anon_sym_DASH_GT, + STATE(1599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3523), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1608), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4013), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3521), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144797,61 +144544,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38345] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37399] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(933), 1, + anon_sym_RBRACK, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(2888), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1609), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144862,18 +144619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38431] = 6, + [37491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4141), 1, - anon_sym_DASH_GT, - STATE(1610), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(3617), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144889,7 +144643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3591), 23, + ACTIONS(3615), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144912,18 +144666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [38487] = 6, + [37545] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4143), 1, - anon_sym_DASH_GT, - STATE(1611), 2, + anon_sym_COLON_COLON, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3599), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144939,7 +144694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3597), 23, + ACTIONS(3370), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144963,113 +144718,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38543] = 5, + [37601] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3517), 15, - anon_sym_PLUS, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4149), 1, + anon_sym_RBRACE, + ACTIONS(4151), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3515), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4155), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, anon_sym_COLON_COLON, - anon_sym_as, - [38597] = 24, + ACTIONS(4161), 1, + sym_metavariable, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3056), 1, + sym__use_clause, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, + sym_bracketed_type, + STATE(1603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [37681] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(943), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4145), 1, - anon_sym_RPAREN, - ACTIONS(4147), 1, + ACTIONS(4163), 1, anon_sym_COMMA, - STATE(2813), 1, + STATE(2952), 1, aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145080,64 +144848,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38689] = 24, + [37773] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(935), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 1, - anon_sym_COMMA, - STATE(2821), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1614), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4165), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145148,15 +144914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38781] = 5, + [37861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1615), 2, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145172,7 +144940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3541), 24, + ACTIONS(3370), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145195,17 +144963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38835] = 5, + [37917] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1616), 2, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3609), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145221,7 +144990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3607), 24, + ACTIONS(3370), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145244,66 +145013,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38889] = 24, + [37973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3719), 1, + anon_sym_COLON_COLON, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3303), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4151), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3301), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145314,15 +145057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38981] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [38029] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145338,7 +145090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3553), 24, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145361,19 +145113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39035] = 6, + [38085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1619), 2, + ACTIONS(4173), 1, + anon_sym_LPAREN, + STATE(1781), 1, + sym_arguments, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(3603), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145389,8 +145142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 23, - anon_sym_LPAREN, + ACTIONS(3599), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145413,15 +145165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39091] = 5, + [38143] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1620), 2, + ACTIONS(4175), 1, + anon_sym_COLON_COLON, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3559), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145437,7 +145191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 24, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145460,60 +145214,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39145] = 21, + [38199] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4021), 1, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [38281] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4177), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4179), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1621), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 13, + ACTIONS(341), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -145527,17 +145343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [39231] = 6, + [38367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, + ACTIONS(4181), 1, anon_sym_DASH_GT, - STATE(1622), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3613), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145553,7 +145369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3611), 23, + ACTIONS(3527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145577,62 +145393,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39287] = 22, + [38423] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(995), 1, + anon_sym_RBRACK, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4183), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1623), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4157), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145643,64 +145461,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39375] = 24, + [38515] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4031), 1, + anon_sym_EQ, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4177), 1, anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4179), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1624), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4029), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145711,74 +145525,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39467] = 6, + anon_sym_SQUOTE, + [38601] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4161), 1, - anon_sym_DASH_GT, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3563), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3561), 23, - anon_sym_LPAREN, + ACTIONS(3749), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3753), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, anon_sym_as, - [39523] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4163), 1, - anon_sym_LPAREN, - STATE(1698), 1, - sym_arguments, - STATE(1626), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -145787,12 +145557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 22, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3891), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145811,95 +145579,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39581] = 11, + anon_sym_SQUOTE, + [38665] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1627), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 9, + ACTIONS(4027), 1, + anon_sym_EQ, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4177), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4179), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39647] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1628), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 23, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4025), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145910,22 +145644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39703] = 5, + anon_sym_SQUOTE, + [38751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1629), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, + ACTIONS(3475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145941,7 +145669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3621), 24, + ACTIONS(3473), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145966,128 +145694,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [39757] = 24, + [38805] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1630), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39849] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(3893), 6, anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1631), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3993), 13, + anon_sym_DOT_DOT, + ACTIONS(3891), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146098,131 +145744,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39935] = 21, + [38875] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4185), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, + anon_sym_COMMA, + STATE(3004), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3997), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [40021] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40077] = 5, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, + ACTIONS(3633), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146238,7 +145843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3633), 24, + ACTIONS(3631), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146261,19 +145866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_as, - [40131] = 6, + [39021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(3483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146289,7 +145892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 23, + ACTIONS(3481), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146312,36 +145915,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [40187] = 5, + [39075] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1636), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3641), 24, + ACTIONS(3891), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146360,19 +145972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [40241] = 6, + anon_sym_SQUOTE, + [39143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3873), 1, - anon_sym_COLON_COLON, - STATE(1637), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3591), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146388,7 +145997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3589), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146411,63 +146020,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [40297] = 22, + [39197] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(1023), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4189), 1, + anon_sym_COMMA, + STATE(3073), 1, + aux_sym_arguments_repeat1, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1638), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4169), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146478,39 +146090,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40385] = 10, + [39289] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - STATE(1639), 2, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3893), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3677), 21, + ACTIONS(3891), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -146532,44 +146148,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40449] = 13, + [39361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1640), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3505), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 21, + ACTIONS(3503), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146588,63 +146195,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40519] = 22, + anon_sym_DASH_GT, + anon_sym_as, + [39415] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4007), 2, anon_sym_EQ, - ACTIONS(4137), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1641), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4081), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4005), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146655,17 +146257,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40607] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39497] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, + ACTIONS(4191), 1, anon_sym_DASH_GT, - STATE(1642), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, + ACTIONS(3517), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146681,7 +146286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3567), 23, + ACTIONS(3515), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146705,79 +146310,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40663] = 18, - ACTIONS(29), 1, - anon_sym_LT, + [39553] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, ACTIONS(4177), 1, - anon_sym_RBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4183), 1, - anon_sym_COMMA, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3047), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1643), 2, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4179), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [40743] = 6, + ACTIONS(3845), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4191), 1, - anon_sym_COLON_COLON, - STATE(1644), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, + ACTIONS(3655), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146793,7 +146400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 23, + ACTIONS(3653), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146816,46 +146423,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40799] = 12, + [39695] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4079), 2, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4177), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1645), 2, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4179), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3801), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146866,24 +146491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40867] = 6, + [39783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4193), 1, - anon_sym_DASH_GT, - STATE(1646), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3575), 15, + ACTIONS(3667), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146899,7 +146515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3573), 23, + ACTIONS(3665), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146922,18 +146538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40923] = 6, + [39837] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 1, - anon_sym_COLON_COLON, - STATE(1647), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3671), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146949,7 +146564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(3669), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146972,16 +146587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40979] = 5, + [39891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1648), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(1275), 15, + ACTIONS(1369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146997,7 +146613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1273), 24, + ACTIONS(1367), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147022,39 +146638,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [41033] = 6, + [39945] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4177), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 23, + ACTIONS(4179), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4021), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147065,22 +146702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41089] = 5, + anon_sym_SQUOTE, + [40031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + ACTIONS(4193), 1, + anon_sym_DASH_GT, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 15, + ACTIONS(3487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147096,7 +146729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1257), 24, + ACTIONS(3485), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147120,16 +146753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41143] = 5, + [40087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(1271), 15, + ACTIONS(1383), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147145,7 +146777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1269), 24, + ACTIONS(1381), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147170,15 +146802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [41197] = 5, + [40141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(1267), 15, + ACTIONS(1365), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147194,7 +146826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1265), 24, + ACTIONS(1363), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147219,128 +146851,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [41251] = 22, + [40195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4137), 1, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4139), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1653), 2, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4081), 3, + ACTIONS(3329), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4095), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41339] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147351,15 +146894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41428] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3747), 15, + ACTIONS(3345), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147375,7 +146927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 23, + ACTIONS(3343), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147399,87 +146951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41481] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4199), 1, - anon_sym_RPAREN, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41570] = 8, + [40307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - STATE(1657), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 14, + ACTIONS(1387), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147493,10 +146973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 21, + ACTIONS(1385), 24, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147516,62 +146999,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41629] = 23, + anon_sym_else, + [40361] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1357), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1658), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1355), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147582,15 +147041,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41718] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_else, + [40415] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(4195), 1, + anon_sym_DASH_GT, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(3891), 15, + ACTIONS(3499), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147606,7 +147075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3889), 23, + ACTIONS(3497), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147630,15 +147099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41771] = 5, + [40471] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + ACTIONS(4197), 1, + anon_sym_DASH_GT, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147654,7 +147125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147678,15 +147149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41824] = 5, + [40527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + ACTIONS(4199), 1, + anon_sym_DASH_GT, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3595), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147702,7 +147175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(3593), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147726,61 +147199,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41877] = 22, + [40583] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4177), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4179), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4209), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1662), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3873), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147791,36 +147265,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41964] = 5, + [40671] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(3893), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3891), 17, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40749] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(3893), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3897), 23, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3891), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -147832,27 +147385,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40829] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42017] = 5, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40917] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147861,13 +147486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(3891), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147886,63 +147508,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42070] = 23, + anon_sym_SQUOTE, + [40983] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3995), 1, + anon_sym_EQ, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4177), 1, anon_sym_DOT_DOT, - ACTIONS(4211), 1, - anon_sym_RPAREN, - ACTIONS(4213), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4179), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(3993), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147953,15 +147573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42159] = 5, + anon_sym_SQUOTE, + [41069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, + ACTIONS(3376), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147972,12 +147593,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 23, + ACTIONS(3374), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147992,44 +147615,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42212] = 5, + anon_sym_LT2, + [41123] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4177), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4179), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4001), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [41209] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3893), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3797), 23, + ACTIONS(3891), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148048,16 +147746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42265] = 5, + anon_sym_SQUOTE, + [41283] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3907), 15, + ACTIONS(3341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148073,7 +147773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3905), 23, + ACTIONS(3339), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148097,15 +147797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42318] = 5, + [41339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3911), 15, + ACTIONS(3913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148121,7 +147821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3909), 23, + ACTIONS(3911), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148145,15 +147845,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42371] = 5, + [41392] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4203), 1, + anon_sym_LBRACE, + ACTIONS(4209), 1, + anon_sym_CARET, + ACTIONS(4211), 1, + anon_sym_AMP, + ACTIONS(4213), 1, + anon_sym_PIPE, + ACTIONS(4215), 1, + anon_sym_AMP_AMP, + ACTIONS(4217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4223), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_DOT_DOT, + STATE(399), 1, + sym_match_block, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4227), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4231), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4221), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41481] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(3695), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148169,7 +147935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 23, + ACTIONS(3693), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148193,20 +147959,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42424] = 5, + [41534] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, + ACTIONS(4235), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148215,13 +147990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(3891), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148240,36 +148012,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42477] = 5, + [41597] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, + anon_sym_AMP, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, - anon_sym_PLUS, + ACTIONS(4235), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 23, + ACTIONS(3891), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148288,16 +148068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42530] = 5, + [41666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(3879), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148313,7 +148092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 23, + ACTIONS(3877), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148337,15 +148116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42583] = 5, + [41719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(3931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148361,7 +148140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 23, + ACTIONS(3929), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148385,37 +148164,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42636] = 5, + [41772] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4249), 1, + anon_sym_SEMI, + ACTIONS(4251), 1, + anon_sym_else, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3713), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148426,43 +148230,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42689] = 8, + [41861] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4239), 1, anon_sym_DOT, - STATE(1676), 2, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 14, - anon_sym_PLUS, + ACTIONS(4235), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3733), 21, + ACTIONS(3891), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -148483,41 +148285,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42748] = 8, + [41928] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(1111), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - STATE(1677), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3791), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3789), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148528,69 +148351,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42807] = 23, + [42017] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4215), 1, - anon_sym_SEMI, - ACTIONS(4217), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(4255), 1, + anon_sym_RBRACE, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148601,62 +148417,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42896] = 23, + [42106] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4219), 1, + ACTIONS(4259), 1, anon_sym_RBRACE, - ACTIONS(4221), 1, + ACTIONS(4261), 1, anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1679), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148667,56 +148483,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42985] = 19, + [42195] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(389), 2, + ACTIONS(4011), 1, anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - STATE(1680), 2, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(387), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148727,62 +148549,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [43066] = 21, + [42284] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3893), 5, anon_sym_PIPE, - ACTIONS(4233), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(4235), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42355] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, anon_sym_as, ACTIONS(4245), 1, + anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(3893), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1681), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, + ACTIONS(3891), 16, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148793,36 +148664,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43151] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42432] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3783), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, + ACTIONS(4273), 1, + anon_sym_AMP_AMP, + ACTIONS(3893), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3781), 23, + STATE(1673), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4269), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3891), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -148834,27 +148725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43204] = 5, + [42511] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, - anon_sym_PLUS, + ACTIONS(4235), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3893), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148863,13 +148759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 23, + ACTIONS(3891), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148888,38 +148781,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43257] = 5, + [42576] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + ACTIONS(3995), 1, + anon_sym_EQ, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, + anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(4273), 1, + anon_sym_AMP_AMP, + ACTIONS(4275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4277), 1, + anon_sym_DOT_DOT, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4271), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4279), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, + ACTIONS(4235), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4269), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3993), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42661] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4209), 1, anon_sym_CARET, + ACTIONS(4211), 1, anon_sym_AMP, + ACTIONS(4213), 1, anon_sym_PIPE, + ACTIONS(4215), 1, + anon_sym_AMP_AMP, + ACTIONS(4217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 23, + STATE(1676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 14, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148930,67 +148905,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43310] = 21, + [42742] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, + ACTIONS(347), 1, anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1685), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4013), 12, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149001,60 +148971,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43395] = 21, + [42827] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, + ACTIONS(4223), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_DOT_DOT, + ACTIONS(4285), 1, + anon_sym_LBRACE, + STATE(485), 1, + sym_match_block, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4227), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4231), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4221), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42916] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4031), 1, + anon_sym_EQ, + ACTIONS(4209), 1, + anon_sym_CARET, + ACTIONS(4211), 1, + anon_sym_AMP, + ACTIONS(4213), 1, + anon_sym_PIPE, + ACTIONS(4215), 1, + anon_sym_AMP_AMP, + ACTIONS(4217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 12, + ACTIONS(4029), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149065,61 +149101,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43480] = 22, + [43001] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4027), 1, + anon_sym_EQ, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4091), 1, + ACTIONS(4215), 1, + anon_sym_AMP_AMP, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4251), 1, - anon_sym_AMP_AMP, - ACTIONS(4079), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4249), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1687), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4025), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149130,61 +149165,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43567] = 22, + [43086] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4277), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3939), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4253), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149195,15 +149231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43654] = 5, + [43175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3895), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149219,7 +149255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3893), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149243,62 +149279,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43707] = 23, + [43228] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4273), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4277), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, - anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4279), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4001), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149309,35 +149343,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43796] = 5, + [43313] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, + anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, - anon_sym_PLUS, + ACTIONS(4235), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3893), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(3891), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149356,16 +149401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43849] = 5, + [43386] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(3919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149381,7 +149425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 23, + ACTIONS(3917), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149405,37 +149449,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43902] = 5, + [43439] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3815), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, + ACTIONS(4273), 1, + anon_sym_AMP_AMP, + ACTIONS(4275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3813), 23, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4269), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4005), 14, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149446,22 +149509,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43955] = 5, + [43520] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 15, + ACTIONS(3951), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149475,13 +149539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3257), 23, + ACTIONS(3949), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149501,61 +149562,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44008] = 22, + [43579] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(3873), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4285), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1695), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149566,15 +149627,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44095] = 5, + [43666] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 15, + ACTIONS(3783), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149588,13 +149655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3901), 23, + ACTIONS(3781), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149614,37 +149678,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44148] = 5, + [43725] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1697), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4209), 1, anon_sym_CARET, + ACTIONS(4211), 1, anon_sym_AMP, + ACTIONS(4213), 1, anon_sym_PIPE, + ACTIONS(4215), 1, + anon_sym_AMP_AMP, + ACTIONS(4217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4223), 1, + anon_sym_EQ, + ACTIONS(4229), 1, + anon_sym_DOT_DOT, + ACTIONS(4287), 1, + anon_sym_LBRACE, + STATE(1386), 1, + sym_match_block, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4231), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4221), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149655,22 +149744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44201] = 5, + [43814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149686,7 +149768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3917), 23, + ACTIONS(3861), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149710,37 +149792,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44254] = 5, + [43867] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3923), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(4291), 1, + anon_sym_AMP_AMP, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3921), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4289), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149751,22 +149857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44307] = 5, + [43954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149782,7 +149881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 23, + ACTIONS(1491), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149806,15 +149905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44360] = 5, + [44007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3941), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149830,7 +149929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3939), 23, + ACTIONS(3869), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149854,126 +149953,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44413] = 23, + [44060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4287), 1, - anon_sym_LBRACE, - ACTIONS(4289), 1, - anon_sym_DOT_DOT, - STATE(393), 1, - sym_match_block, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4291), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3843), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44502] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4257), 1, anon_sym_CARET, - ACTIONS(4259), 1, anon_sym_AMP, - ACTIONS(4261), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3841), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149984,61 +149994,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44587] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44113] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4277), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3821), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4253), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1704), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150049,61 +150067,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44674] = 22, + [44202] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4293), 1, + anon_sym_SEMI, + ACTIONS(4295), 1, + anon_sym_else, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4293), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1705), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150114,15 +150133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44761] = 5, + [44291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150138,7 +150157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(3865), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150162,15 +150181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44814] = 5, + [44344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3945), 15, + ACTIONS(1397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150186,7 +150205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3943), 23, + ACTIONS(1395), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150210,29 +150229,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44867] = 10, + [44397] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - STATE(1708), 2, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4297), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 11, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44484] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1423), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150241,10 +150316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 20, + ACTIONS(1421), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150263,46 +150341,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44930] = 13, + anon_sym_as, + [44537] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4259), 1, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4253), 2, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4299), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1709), 2, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150313,51 +150408,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44999] = 12, + [44626] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1710), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 7, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(3801), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150368,51 +150473,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45066] = 14, + [44713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1711), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3759), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 20, + ACTIONS(3757), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150431,54 +150520,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45137] = 17, + anon_sym_as, + [44766] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3681), 2, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4301), 1, + anon_sym_RPAREN, + ACTIONS(4303), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - STATE(1712), 2, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150489,57 +150587,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45214] = 18, + [44855] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4273), 1, anon_sym_AMP_AMP, - ACTIONS(3681), 2, + ACTIONS(4275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - STATE(1713), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 15, + ACTIONS(387), 14, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150552,30 +150649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45293] = 11, + [44936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1714), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(1443), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150584,10 +150671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 20, + ACTIONS(1441), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150606,60 +150696,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45358] = 21, + anon_sym_as, + [44989] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(1057), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1715), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150670,60 +150763,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45443] = 21, + [45078] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1716), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3997), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150734,46 +150829,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45528] = 15, + [45167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1717), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3775), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 20, + ACTIONS(3773), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150792,56 +150876,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45601] = 19, + anon_sym_as, + [45220] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(4003), 2, + ACTIONS(4223), 1, anon_sym_EQ, + ACTIONS(4229), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4305), 1, + anon_sym_LBRACE, + STATE(1800), 1, + sym_match_block, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - STATE(1718), 2, + ACTIONS(4231), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4001), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4221), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150852,39 +150943,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45682] = 5, + [45309] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3949), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3947), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150895,19 +151009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45735] = 5, + [45398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, ACTIONS(3691), 15, @@ -150950,37 +151057,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45788] = 5, + [45451] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3695), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, + ACTIONS(4273), 1, + anon_sym_AMP_AMP, + ACTIONS(4275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4277), 1, + anon_sym_DOT_DOT, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3693), 23, + ACTIONS(4279), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4269), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150991,22 +151121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45841] = 5, + [45536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, + ACTIONS(3699), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151022,7 +151145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3721), 23, + ACTIONS(3697), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151046,37 +151169,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45894] = 5, + [45589] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3707), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3705), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4307), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151087,22 +151233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45947] = 5, + [45674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151118,7 +151257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 23, + ACTIONS(3937), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151142,21 +151281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46000] = 8, + [45727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - STATE(1725), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 14, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151170,10 +151303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3793), 21, + ACTIONS(1449), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151193,80 +151329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46059] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(3889), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1726), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46146] = 5, + [45780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3763), 15, + ACTIONS(3839), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151282,7 +151353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3761), 23, + ACTIONS(3837), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151306,15 +151377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46199] = 5, + [45833] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3779), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151330,7 +151401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 23, + ACTIONS(3777), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151354,15 +151425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46252] = 5, + [45886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(3675), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151378,7 +151449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 23, + ACTIONS(3673), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151402,37 +151473,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46305] = 5, + [45939] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3779), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3777), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151443,22 +151539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46358] = 5, + [46028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3787), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151474,7 +151563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3785), 23, + ACTIONS(1453), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151498,75 +151587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46411] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [46081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - ACTIONS(4295), 1, - anon_sym_RBRACE, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3166), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1732), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [46488] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151582,7 +151611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3737), 23, + ACTIONS(1495), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151606,37 +151635,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46541] = 5, + [46134] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3853), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4309), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3851), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151647,22 +151701,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46594] = 5, + [46223] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(3893), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151676,13 +151731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3855), 23, + ACTIONS(3891), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151701,16 +151753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46647] = 5, + [46284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3861), 15, + ACTIONS(3905), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151726,7 +151777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3859), 23, + ACTIONS(3903), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151750,15 +151801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46700] = 5, + [46337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(1401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151774,7 +151825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3863), 23, + ACTIONS(1399), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151798,15 +151849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46753] = 5, + [46390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151822,7 +151873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3877), 23, + ACTIONS(1417), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151846,15 +151897,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46806] = 5, + [46443] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151870,7 +151987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3725), 23, + ACTIONS(3797), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151894,61 +152011,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46859] = 22, + [46585] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4297), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1740), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151959,15 +152077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46946] = 5, + [46674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3751), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151983,7 +152101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3749), 23, + ACTIONS(1479), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152007,60 +152125,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46999] = 21, + [46727] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4031), 1, + anon_sym_EQ, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4091), 1, + ACTIONS(4273), 1, + anon_sym_AMP_AMP, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4277), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4279), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4299), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4099), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4029), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152071,15 +152189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47084] = 5, + [46812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 15, + ACTIONS(981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152095,7 +152213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3757), 23, + ACTIONS(983), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152119,15 +152237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47137] = 5, + [46865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3775), 15, + ACTIONS(3683), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152143,7 +152261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3773), 23, + ACTIONS(3681), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152167,37 +152285,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47190] = 5, + [46918] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4311), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, - anon_sym_PLUS, + ACTIONS(3973), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47005] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4313), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1585), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152208,22 +152416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47243] = 5, + [47094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1746), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(991), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152239,7 +152440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 23, + ACTIONS(993), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152263,37 +152464,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47296] = 5, + [47147] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1447), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152304,22 +152530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47349] = 5, + [47236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1748), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(1453), 15, + ACTIONS(3687), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152335,7 +152554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3685), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152359,37 +152578,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47402] = 5, + [47289] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1367), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4315), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1365), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152400,22 +152644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47455] = 5, + [47378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(3341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152431,7 +152668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 23, + ACTIONS(3339), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152455,61 +152692,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47508] = 22, + [47431] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3939), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1751), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152520,15 +152758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47595] = 5, + [47520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152544,7 +152782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 23, + ACTIONS(1499), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152568,15 +152806,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47648] = 5, + [47573] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47662] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1409), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152592,7 +152896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 23, + ACTIONS(1407), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152616,60 +152920,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47701] = 21, + [47715] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4317), 1, + anon_sym_SEMI, + ACTIONS(4319), 1, + anon_sym_else, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1754), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152680,61 +152986,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47786] = 22, + [47804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(997), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(999), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152745,15 +153027,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47873] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152769,7 +153058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1361), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152793,15 +153082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47926] = 5, + [47910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3831), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152817,7 +153106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 23, + ACTIONS(3829), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152841,61 +153130,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47979] = 22, + [47963] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4273), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4277), 1, anon_sym_DOT_DOT, - ACTIONS(3821), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4323), 1, + anon_sym_EQ, + ACTIONS(3873), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4279), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4321), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152906,15 +153195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48066] = 5, + [48050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 15, + ACTIONS(1005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152930,7 +153219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1407), 23, + ACTIONS(1007), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152954,99 +153243,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48119] = 10, + [48103] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4243), 1, + ACTIONS(3895), 1, anon_sym_as, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3981), 1, anon_sym_AMP_AMP, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48182] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1761), 2, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153057,51 +153309,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48251] = 12, + [48192] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4243), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4223), 2, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1762), 2, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153112,53 +153375,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48318] = 14, + [48281] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4325), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 5, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153169,58 +153441,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48389] = 17, + [48370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1435), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4229), 1, anon_sym_AMP, - ACTIONS(4231), 1, anon_sym_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(3681), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3677), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1433), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153233,57 +153482,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48466] = 18, + anon_sym_as, + [48423] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(3681), 2, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - STATE(1765), 2, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153294,32 +153555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48545] = 11, + [48512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1766), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3851), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153328,10 +153577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 20, + ACTIONS(3849), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153350,60 +153602,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48610] = 21, + anon_sym_as, + [48565] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1767), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153414,60 +153669,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48695] = 21, + [48654] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(4273), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4277), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4323), 1, + anon_sym_EQ, + ACTIONS(3845), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4279), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3997), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4321), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153478,48 +153734,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48780] = 15, + [48741] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1769), 2, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153530,91 +153800,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48853] = 5, + [48830] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_STAR, + ACTIONS(4157), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + sym_metavariable, + ACTIONS(4327), 1, + anon_sym_RBRACE, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3232), 1, + sym__use_clause, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, + sym_bracketed_type, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [48907] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4329), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3741), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48906] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, - anon_sym_PLUS, + ACTIONS(3973), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3697), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153625,22 +153926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48959] = 5, + [48996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(3847), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153656,7 +153950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 23, + ACTIONS(3845), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153680,85 +153974,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49012] = 5, + [49049] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1279), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4209), 1, anon_sym_CARET, + ACTIONS(4211), 1, anon_sym_AMP, + ACTIONS(4213), 1, anon_sym_PIPE, + ACTIONS(4215), 1, + anon_sym_AMP_AMP, + ACTIONS(4217), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4223), 1, + anon_sym_EQ, + ACTIONS(4281), 1, + anon_sym_DOT_DOT, + ACTIONS(3873), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1277), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49065] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 15, - anon_sym_PLUS, + ACTIONS(4207), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1429), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4221), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153769,68 +154039,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49118] = 22, + [49136] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4027), 1, + anon_sym_EQ, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4273), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4277), 1, anon_sym_DOT_DOT, - ACTIONS(3889), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4279), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1775), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4025), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153841,15 +154103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49205] = 5, + [49221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 15, + ACTIONS(1013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153865,7 +154127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1459), 23, + ACTIONS(1015), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153889,15 +154151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49258] = 5, + [49274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3835), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153913,7 +154175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3765), 23, + ACTIONS(3833), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153937,15 +154199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49311] = 5, + [49327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153961,7 +154223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153985,15 +154247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49364] = 5, + [49380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 15, + ACTIONS(3947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154009,7 +154271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1479), 23, + ACTIONS(3945), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154033,15 +154295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49417] = 5, + [49433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 15, + ACTIONS(1431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154057,7 +154319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1483), 23, + ACTIONS(1429), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154081,37 +154343,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49470] = 5, + [49486] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1413), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4331), 1, + anon_sym_SEMI, + ACTIONS(4333), 1, + anon_sym_else, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1411), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154122,22 +154409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49523] = 5, + [49575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(3603), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154153,7 +154433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 23, + ACTIONS(3599), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154177,37 +154457,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49576] = 5, + [49628] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1489), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4233), 1, + anon_sym_LBRACK, + ACTIONS(4237), 1, + anon_sym_QMARK, + ACTIONS(4239), 1, + anon_sym_DOT, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, + ACTIONS(4273), 1, + anon_sym_AMP_AMP, + ACTIONS(4275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4277), 1, + anon_sym_DOT_DOT, + ACTIONS(4323), 1, + anon_sym_EQ, + ACTIONS(3801), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1487), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4279), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4235), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4269), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4321), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154218,69 +154522,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49629] = 23, + [49715] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4303), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(4305), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154291,37 +154588,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49718] = 5, + [49804] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1435), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1083), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1433), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154332,22 +154654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49771] = 5, + [49893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 15, + ACTIONS(3737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154363,7 +154678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(997), 23, + ACTIONS(3735), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154387,15 +154702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49824] = 5, + [49946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(1007), 15, + ACTIONS(3795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154411,7 +154726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1009), 23, + ACTIONS(3793), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154435,15 +154750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49877] = 5, + [49999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 15, + ACTIONS(3885), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154459,7 +154774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1455), 23, + ACTIONS(3883), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154483,15 +154798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49930] = 5, + [50052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 15, + ACTIONS(3745), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154507,7 +154822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1013), 23, + ACTIONS(3743), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154531,61 +154846,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49983] = 22, + [50105] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(4273), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4277), 1, anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(3939), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4223), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4279), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1790), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4307), 10, + ACTIONS(4021), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154596,15 +154910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50070] = 5, + [50190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 15, + ACTIONS(3711), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154620,7 +154934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1025), 23, + ACTIONS(3709), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154644,15 +154958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50123] = 5, + [50243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154668,7 +154982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(3370), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154692,61 +155006,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50176] = 22, + [50296] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4309), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(3821), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4223), 2, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4335), 1, + anon_sym_RPAREN, + ACTIONS(4337), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4307), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154757,15 +155072,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50263] = 5, + [50385] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_STAR, + ACTIONS(4157), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + sym_metavariable, + ACTIONS(4339), 1, + anon_sym_RBRACE, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3232), 1, + sym__use_clause, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, + sym_bracketed_type, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [50462] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(1027), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154781,7 +155156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1029), 23, + ACTIONS(3739), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154805,15 +155180,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50316] = 5, + [50515] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, + ACTIONS(1097), 1, + anon_sym_RPAREN, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50604] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(1417), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154829,7 +155270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1415), 23, + ACTIONS(3933), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154853,61 +155294,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50369] = 22, + [50657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(3889), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3763), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3761), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154918,15 +155335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50456] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50710] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154942,7 +155366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154966,15 +155390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50509] = 5, + [50763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154990,7 +155414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 23, + ACTIONS(3941), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155014,62 +155438,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50562] = 23, + [50816] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4311), 1, - anon_sym_RPAREN, - ACTIONS(4313), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4341), 1, + anon_sym_SEMI, + ACTIONS(4343), 1, + anon_sym_else, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155080,61 +155504,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50651] = 22, + [50905] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4315), 2, + ACTIONS(4345), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1800), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155145,62 +155569,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50738] = 23, + [50992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3263), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51045] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(291), 1, anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155211,61 +155683,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50827] = 22, + [51134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1439), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4317), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1802), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1437), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155276,15 +155724,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50914] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(1505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155300,7 +155755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 23, + ACTIONS(1503), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155324,62 +155779,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50967] = 23, + [51240] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4289), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4319), 1, - anon_sym_LBRACE, - STATE(1449), 1, - sym_match_block, - ACTIONS(4253), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4291), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155390,15 +155845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51056] = 5, + [51329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155414,7 +155869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155438,62 +155893,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51109] = 23, + [51382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3329), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1806), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155504,62 +155934,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51198] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51435] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + ACTIONS(4347), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155570,62 +156006,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51287] = 23, + [51522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1045), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4321), 1, - anon_sym_SEMI, - ACTIONS(4323), 1, - anon_sym_else, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1047), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155636,15 +156047,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51376] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155660,7 +156078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3801), 23, + ACTIONS(1051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155684,62 +156102,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51429] = 23, + [51628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1083), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3345), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3343), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1810), 2, + anon_sym_as, + [51681] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3889), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3887), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155750,122 +156191,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51518] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - ACTIONS(4325), 1, - anon_sym_RBRACE, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3166), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [51595] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51734] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, + ACTIONS(4349), 1, anon_sym_SEMI, - ACTIONS(4329), 1, + ACTIONS(4351), 1, anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155876,62 +156264,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51684] = 23, + [51823] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, - anon_sym_RBRACE, - ACTIONS(4333), 1, + ACTIONS(3845), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155942,62 +156329,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51773] = 23, + [51910] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4353), 1, + anon_sym_RBRACE, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1814), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156008,62 +156395,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51862] = 23, + [51999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1065), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3807), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1815), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3805), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156074,61 +156436,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51951] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1473), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1471), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4335), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1816), 2, + anon_sym_as, + [52105] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3827), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3825), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156139,62 +156532,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52038] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52158] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, - anon_sym_SEMI, - ACTIONS(4339), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4021), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156205,62 +156603,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52127] = 23, + [52243] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4341), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1818), 2, + ACTIONS(4355), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156271,62 +156668,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52216] = 23, + [52330] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(4343), 1, - anon_sym_RPAREN, - ACTIONS(3965), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4357), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156337,62 +156732,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52305] = 23, + [52415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3703), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4345), 1, - anon_sym_SEMI, - ACTIONS(4347), 1, - anon_sym_else, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3701), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + anon_sym_as, + [52468] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3815), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3813), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156403,15 +156821,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52394] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3703), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156427,7 +156852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 23, + ACTIONS(3701), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156451,62 +156876,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52447] = 23, + [52574] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_SEMI, - ACTIONS(4351), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + ACTIONS(4359), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156517,62 +156941,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52536] = 23, + [52661] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4223), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3801), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1823), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4221), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156583,56 +157006,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52625] = 19, + [52748] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(389), 2, + ACTIONS(4223), 1, anon_sym_EQ, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(3845), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - STATE(1824), 2, + ACTIONS(4283), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(387), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4221), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156643,62 +157071,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [52706] = 21, + [52835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3819), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4259), 1, anon_sym_AMP, - ACTIONS(4261), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3817), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + anon_sym_as, + [52888] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3729), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3727), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52941] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1583), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1585), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156709,62 +157208,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52791] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3811), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4259), 1, anon_sym_AMP, - ACTIONS(4261), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4289), 1, - anon_sym_DOT_DOT, - ACTIONS(4353), 1, - anon_sym_LBRACE, - STATE(480), 1, - sym_match_block, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4291), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1826), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3809), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156775,60 +157256,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52880] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3927), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4259), 1, anon_sym_AMP, - ACTIONS(4261), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1827), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4013), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3925), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156839,60 +157304,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52965] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53100] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + ACTIONS(4361), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156903,62 +157376,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53050] = 23, + [53187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3875), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1829), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3873), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156969,15 +157417,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53139] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53240] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156993,7 +157448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 23, + ACTIONS(3857), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157017,62 +157472,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53192] = 23, + [53293] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4363), 1, + anon_sym_RPAREN, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157083,62 +157538,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53281] = 23, + [53382] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4355), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1832), 2, + ACTIONS(4365), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157149,62 +157603,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53370] = 23, + [53469] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3893), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_DOT_DOT, + ACTIONS(3891), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + [53532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(1487), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1489), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157215,62 +157697,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53459] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53585] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4357), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3893), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53654] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3893), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157281,15 +157809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53548] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(3715), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157305,7 +157839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 23, + ACTIONS(3713), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157329,40 +157863,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53601] = 9, + [53774] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4243), 1, + ACTIONS(3895), 1, anon_sym_as, - STATE(1836), 2, + ACTIONS(4209), 1, + anon_sym_CARET, + ACTIONS(4211), 1, + anon_sym_AMP, + ACTIONS(4205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 14, - anon_sym_PLUS, + ACTIONS(4207), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3893), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3677), 20, + ACTIONS(3891), 20, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -157381,62 +157920,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53662] = 23, + [53845] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3893), 2, anon_sym_EQ, - ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(3891), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157447,62 +157978,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53751] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3725), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4259), 1, anon_sym_AMP, - ACTIONS(4261), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4289), 1, - anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(1757), 1, - sym_match_block, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4291), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3723), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1838), 2, + anon_sym_as, + [53975] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(1405), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1403), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157513,62 +158069,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53840] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54028] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3893), 2, anon_sym_EQ, - ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1839), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(3891), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157579,62 +158135,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53929] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3923), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1840), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3921), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157645,62 +158178,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54018] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54160] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4361), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1841), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(3893), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157711,62 +158233,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54107] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3679), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1842), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3677), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157777,62 +158280,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54196] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54278] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3733), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3731), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157843,62 +158328,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54285] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54331] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3751), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1844), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT_DOT, + ACTIONS(3747), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157909,62 +158379,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54374] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54390] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3995), 1, + anon_sym_EQ, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(3993), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157975,62 +158450,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54463] = 23, + [54475] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(4363), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158041,62 +158516,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54552] = 23, + [54564] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4003), 1, + anon_sym_EQ, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4281), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4283), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4001), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158107,62 +158580,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54641] = 23, + [54649] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3771), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1848), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3769), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158173,62 +158621,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54730] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3707), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1849), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3705), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158239,62 +158669,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54819] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54755] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4365), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + anon_sym_GT_GT, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(3893), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3891), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158305,62 +158728,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54908] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54828] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4215), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4217), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4007), 2, anon_sym_EQ, - ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4227), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4005), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158371,62 +158794,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54997] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54909] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3767), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1852), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT_DOT, + ACTIONS(3765), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158437,62 +158840,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55086] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54968] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, + ACTIONS(289), 1, anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158503,62 +158913,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55175] = 23, + [55057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3823), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4367), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3821), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + anon_sym_as, + [55110] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(1487), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1489), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158569,61 +159002,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55264] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55163] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(4367), 1, + anon_sym_RPAREN, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4369), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1855), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158634,15 +159075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55351] = 5, + [55252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1856), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158658,7 +159099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 23, + ACTIONS(3953), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158682,37 +159123,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55404] = 5, + [55305] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1857), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3827), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, + ACTIONS(3977), 1, anon_sym_AMP, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3825), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4369), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158723,22 +159188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55457] = 5, + [55392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158754,7 +159212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(3907), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158778,15 +159236,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55510] = 5, + [55445] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1859), 2, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, + ACTIONS(4371), 1, + anon_sym_SEMI, + ACTIONS(4373), 1, + anon_sym_else, + ACTIONS(3971), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [55534] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158802,7 +159326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(1425), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158826,15 +159350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55563] = 5, + [55587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1860), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158850,7 +159374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3729), 23, + ACTIONS(3853), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158874,15 +159398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55616] = 5, + [55640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1861), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3899), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158898,7 +159422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 23, + ACTIONS(3897), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158922,60 +159446,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55669] = 21, + [55693] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4091), 1, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4375), 1, + anon_sym_SEMI, + ACTIONS(4377), 1, + anon_sym_else, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4371), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4099), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158986,56 +159512,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55754] = 19, + [55782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3803), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4229), 1, anon_sym_AMP, - ACTIONS(4231), 1, anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4003), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1863), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4001), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3801), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159046,126 +159553,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55835] = 22, + anon_sym_as, + [55835] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_STAR, + ACTIONS(4157), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + sym_metavariable, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, + sym_bracketed_type, + STATE(3645), 1, + sym__use_clause, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55921] = 22, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [55909] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4379), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159176,59 +159682,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56007] = 21, + [55995] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4309), 1, + ACTIONS(4323), 1, anon_sym_EQ, - ACTIONS(4375), 1, + ACTIONS(4381), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4371), 2, + ACTIONS(4307), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(4377), 2, + ACTIONS(4383), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4307), 10, + ACTIONS(4321), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159239,59 +159745,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56091] = 21, + [56079] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4309), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4375), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4385), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4299), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4377), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4307), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159302,60 +159809,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56175] = 22, + [56165] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(4235), 1, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4249), 1, - anon_sym_EQ_GT, - ACTIONS(4309), 1, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4375), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4379), 1, - anon_sym_AMP_AMP, - ACTIONS(4223), 2, + ACTIONS(4387), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4377), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4307), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159366,60 +159873,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56261] = 22, + [56251] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4381), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4389), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159430,118 +159937,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56347] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3166), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1870), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [56421] = 22, + [56337] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4323), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4381), 1, anon_sym_DOT_DOT, - ACTIONS(4383), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4357), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4383), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4321), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159552,60 +160000,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56507] = 22, + [56421] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4385), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4253), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159616,60 +160064,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56593] = 22, + [56507] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4387), 1, + ACTIONS(4391), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159680,60 +160128,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56679] = 22, + [56593] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4389), 1, + ACTIONS(4393), 1, anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159744,60 +160192,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56765] = 22, + [56679] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4391), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4395), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159808,60 +160256,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56851] = 22, + [56765] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_STAR, + ACTIONS(4157), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + sym_metavariable, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3371), 1, + sym__use_clause, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, + sym_bracketed_type, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [56839] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_STAR, + ACTIONS(4157), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + sym_metavariable, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3232), 1, + sym__use_clause, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, + sym_bracketed_type, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [56913] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4393), 1, + ACTIONS(4397), 1, anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159872,60 +160436,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56937] = 22, + [56999] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4395), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4399), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159936,118 +160500,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57023] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3347), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1878), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [57097] = 22, + [57085] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4397), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4401), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160058,60 +160564,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57183] = 22, + [57171] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4399), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4403), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160122,60 +160628,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57269] = 22, + [57257] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4401), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4405), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160186,60 +160692,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57355] = 22, + [57343] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4403), 1, + ACTIONS(4407), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160250,60 +160756,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57441] = 22, + [57429] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4405), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4409), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160314,60 +160820,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57527] = 22, + [57515] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4407), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4411), 1, + anon_sym_RBRACK, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160378,60 +160884,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57613] = 22, + [57601] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 1, + ACTIONS(4413), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160442,60 +160948,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57699] = 22, + [57687] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(4415), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160506,60 +161012,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57785] = 22, + [57773] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4411), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4417), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160570,60 +161076,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57871] = 22, + [57859] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4413), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4419), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160634,60 +161140,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57957] = 22, + [57945] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4415), 1, + ACTIONS(4421), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160698,60 +161204,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58043] = 22, + [58031] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4417), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4423), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160762,118 +161268,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58129] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3422), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1891), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [58203] = 22, + [58117] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4419), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4425), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160884,118 +161332,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58289] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3510), 1, - sym__use_clause, - STATE(3517), 1, - sym_bracketed_type, - STATE(1893), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [58363] = 22, + [58203] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4421), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4427), 1, + anon_sym_SEMI, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161006,60 +161396,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58449] = 22, + [58289] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4423), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4429), 1, + anon_sym_COMMA, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161070,60 +161460,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58535] = 22, + [58375] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4425), 1, + ACTIONS(4431), 1, anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161134,60 +161524,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58621] = 22, + [58461] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4237), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4239), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4245), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4265), 1, + anon_sym_CARET, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4275), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4289), 1, + anon_sym_EQ_GT, + ACTIONS(4323), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4381), 1, anon_sym_DOT_DOT, - ACTIONS(4427), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, + ACTIONS(4433), 1, + anon_sym_AMP_AMP, + ACTIONS(4243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4271), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4383), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4235), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4269), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4321), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161198,44 +161588,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58707] = 16, + [58547] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(4145), 1, sym_identifier, - ACTIONS(4175), 1, + ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(4179), 1, + ACTIONS(4151), 1, anon_sym_STAR, - ACTIONS(4185), 1, + ACTIONS(4157), 1, anon_sym_COLON_COLON, - ACTIONS(4189), 1, + ACTIONS(4161), 1, sym_metavariable, - STATE(2477), 1, + STATE(2486), 1, sym_scoped_identifier, - STATE(3423), 1, + STATE(3408), 1, sym_generic_type_with_turbofish, - STATE(3441), 1, + STATE(3426), 1, + sym_bracketed_type, + STATE(3501), 1, + sym__use_clause, + STATE(1900), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4159), 3, + sym_self, + sym_super, + sym_crate, + STATE(3045), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4153), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58621] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4145), 1, + sym_identifier, + ACTIONS(4147), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + anon_sym_STAR, + ACTIONS(4157), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + sym_metavariable, + STATE(2486), 1, + sym_scoped_identifier, + STATE(3374), 1, sym__use_clause, - STATE(3517), 1, + STATE(3408), 1, + sym_generic_type_with_turbofish, + STATE(3426), 1, sym_bracketed_type, - STATE(1898), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, + ACTIONS(4159), 3, sym_self, sym_super, sym_crate, - STATE(2910), 4, + STATE(3045), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4181), 20, + ACTIONS(4153), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161256,60 +161704,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58781] = 22, + [58695] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4429), 1, + ACTIONS(4435), 1, anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1899), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161320,60 +161768,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58867] = 22, + [58781] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(3753), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(3755), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(3895), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4431), 1, + ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(3971), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3989), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4099), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1900), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(3973), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161384,163 +161832,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58953] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [58867] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4433), 1, - sym_identifier, + ACTIONS(3749), 1, + anon_sym_LBRACK, + ACTIONS(3753), 1, + anon_sym_QMARK, + ACTIONS(3755), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_as, + ACTIONS(3975), 1, + anon_sym_CARET, + ACTIONS(3977), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3981), 1, + anon_sym_AMP_AMP, + ACTIONS(3983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4097), 1, + anon_sym_DOT_DOT, ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - STATE(2759), 1, - sym_scoped_type_identifier, - STATE(3110), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1901), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 3, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3971), 2, anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59028] = 17, - ACTIONS(29), 1, + anon_sym_DASH, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3989), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4445), 1, - sym_identifier, - STATE(2841), 1, - sym_scoped_type_identifier, - STATE(3126), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1902), 2, + ACTIONS(4099), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59103] = 17, + ACTIONS(3973), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3987), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4009), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58953] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3867), 1, anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, + ACTIONS(4439), 1, + sym_identifier, ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, sym_metavariable, - ACTIONS(4447), 1, - sym_identifier, - STATE(2937), 1, + STATE(2972), 1, sym_scoped_type_identifier, - STATE(3107), 1, + STATE(3271), 1, sym_generic_type, - STATE(3399), 1, + STATE(3415), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3525), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3551), 1, sym_bracketed_type, - STATE(1903), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, + ACTIONS(4445), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4441), 3, + ACTIONS(4447), 3, sym_self, sym_super, sym_crate, - ACTIONS(4435), 17, + ACTIONS(4441), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161558,47 +161954,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59178] = 17, + [59028] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3867), 1, anon_sym_where, - ACTIONS(4437), 1, + ACTIONS(4443), 1, anon_sym_COLON_COLON, + ACTIONS(4449), 1, + sym_metavariable, + ACTIONS(4451), 1, + sym_identifier, + STATE(2940), 1, + sym_scoped_type_identifier, + STATE(3081), 1, + sym_generic_type, + STATE(3415), 1, + sym_scoped_identifier, + STATE(3525), 1, + sym_generic_type_with_turbofish, + STATE(3551), 1, + sym_bracketed_type, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3865), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4445), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4447), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4441), 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, + [59103] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3867), 1, + anon_sym_where, ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, sym_metavariable, + ACTIONS(4453), 1, + sym_identifier, + STATE(3062), 1, + sym_scoped_type_identifier, + STATE(3344), 1, + sym_generic_type, + STATE(3415), 1, + sym_scoped_identifier, + STATE(3525), 1, + sym_generic_type_with_turbofish, + STATE(3551), 1, + sym_bracketed_type, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3865), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4445), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4447), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4441), 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, + [59178] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3867), 1, + anon_sym_where, + ACTIONS(4443), 1, + anon_sym_COLON_COLON, ACTIONS(4449), 1, + sym_metavariable, + ACTIONS(4455), 1, sym_identifier, - STATE(3052), 1, + STATE(2829), 1, sym_scoped_type_identifier, - STATE(3328), 1, + STATE(3131), 1, sym_generic_type, - STATE(3399), 1, + STATE(3415), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3525), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3551), 1, sym_bracketed_type, - STATE(1904), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, + ACTIONS(4445), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4441), 3, + ACTIONS(4447), 3, sym_self, sym_super, sym_crate, - ACTIONS(4435), 17, + ACTIONS(4441), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161623,40 +162135,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3867), 1, anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, sym_metavariable, - ACTIONS(4451), 1, + ACTIONS(4457), 1, sym_identifier, - STATE(3050), 1, + STATE(3046), 1, sym_scoped_type_identifier, - STATE(3321), 1, + STATE(3331), 1, sym_generic_type, - STATE(3399), 1, + STATE(3415), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3525), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3551), 1, sym_bracketed_type, - STATE(1905), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, + ACTIONS(4445), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4441), 3, + ACTIONS(4447), 3, sym_self, sym_super, sym_crate, - ACTIONS(4435), 17, + ACTIONS(4441), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161681,40 +162193,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3867), 1, anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, sym_metavariable, - ACTIONS(4453), 1, + ACTIONS(4459), 1, sym_identifier, - STATE(2764), 1, + STATE(2916), 1, sym_scoped_type_identifier, - STATE(3263), 1, + STATE(3149), 1, sym_generic_type, - STATE(3399), 1, + STATE(3415), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3525), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3551), 1, sym_bracketed_type, - STATE(1906), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, + ACTIONS(4445), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4441), 3, + ACTIONS(4447), 3, sym_self, sym_super, sym_crate, - ACTIONS(4435), 17, + ACTIONS(4441), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161739,40 +162251,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3867), 1, anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, sym_metavariable, - ACTIONS(4455), 1, + ACTIONS(4461), 1, sym_identifier, - STATE(3042), 1, + STATE(3055), 1, sym_scoped_type_identifier, - STATE(3316), 1, + STATE(3336), 1, sym_generic_type, - STATE(3399), 1, + STATE(3415), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3525), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3551), 1, sym_bracketed_type, - STATE(1907), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, + ACTIONS(4445), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4441), 3, + ACTIONS(4447), 3, sym_self, sym_super, sym_crate, - ACTIONS(4435), 17, + ACTIONS(4441), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161797,40 +162309,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, + ACTIONS(3867), 1, anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, ACTIONS(4443), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, sym_metavariable, - ACTIONS(4457), 1, + ACTIONS(4463), 1, sym_identifier, - STATE(3048), 1, + STATE(3057), 1, sym_scoped_type_identifier, - STATE(3319), 1, + STATE(3339), 1, sym_generic_type, - STATE(3399), 1, + STATE(3415), 1, sym_scoped_identifier, - STATE(3505), 1, + STATE(3525), 1, sym_generic_type_with_turbofish, - STATE(3532), 1, + STATE(3551), 1, sym_bracketed_type, - STATE(1908), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, + ACTIONS(4445), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4441), 3, + ACTIONS(4447), 3, sym_self, sym_super, sym_crate, - ACTIONS(4435), 17, + ACTIONS(4441), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161853,14 +162365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1909), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4461), 3, + ACTIONS(4467), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4459), 29, + ACTIONS(4465), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161895,14 +162407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1910), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4465), 3, + ACTIONS(4471), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4463), 29, + ACTIONS(4469), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161937,14 +162449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, + ACTIONS(4475), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4467), 29, + ACTIONS(4473), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161981,28 +162493,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3393), 1, + STATE(3387), 1, sym_attribute, - STATE(1912), 2, + STATE(3395), 1, + sym_generic_type_with_turbofish, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162030,28 +162542,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(3541), 1, + STATE(3487), 1, sym_attribute, - STATE(1913), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162079,28 +162591,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(3425), 1, + STATE(3561), 1, sym_attribute, - STATE(1914), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162128,28 +162640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3360), 1, + STATE(3357), 1, sym_attribute, - STATE(3379), 1, + STATE(3370), 1, + sym_bracketed_type, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(1915), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162177,28 +162689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(3449), 1, + STATE(3531), 1, sym_attribute, - STATE(1916), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162226,28 +162738,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, STATE(3370), 1, - sym_attribute, - STATE(3379), 1, + sym_bracketed_type, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(1917), 2, + STATE(3479), 1, + sym_attribute, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162275,28 +162787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(3448), 1, + STATE(3621), 1, sym_attribute, - STATE(1918), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162324,28 +162836,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(2243), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, ACTIONS(4477), 1, + sym_identifier, + ACTIONS(4483), 1, sym_metavariable, - STATE(2268), 1, + STATE(2265), 1, sym_scoped_identifier, - STATE(3353), 1, + STATE(3370), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3395), 1, sym_generic_type_with_turbofish, - STATE(3453), 1, + STATE(3423), 1, sym_attribute, - STATE(1919), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4481), 3, sym_self, sym_super, sym_crate, - ACTIONS(4473), 20, + ACTIONS(4479), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162373,26 +162885,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4479), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4489), 1, anon_sym_COLON_COLON, - ACTIONS(4487), 1, + ACTIONS(4493), 1, sym_metavariable, - STATE(3099), 1, + STATE(3159), 1, sym_scoped_identifier, - STATE(3423), 1, + STATE(3408), 1, sym_generic_type_with_turbofish, - STATE(3517), 1, + STATE(3426), 1, sym_bracketed_type, - STATE(1920), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4485), 3, + ACTIONS(4491), 3, sym_self, sym_super, sym_crate, - ACTIONS(4481), 20, + ACTIONS(4487), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162420,26 +162932,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4483), 1, - anon_sym_COLON_COLON, ACTIONS(4489), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(4495), 1, + sym_identifier, + ACTIONS(4501), 1, sym_metavariable, - STATE(3202), 1, + STATE(3184), 1, sym_scoped_identifier, - STATE(3423), 1, + STATE(3408), 1, sym_generic_type_with_turbofish, - STATE(3517), 1, + STATE(3426), 1, sym_bracketed_type, - STATE(1921), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4493), 3, + ACTIONS(4499), 3, sym_self, sym_super, sym_crate, - ACTIONS(4491), 20, + ACTIONS(4497), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162465,24 +162977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, + ACTIONS(3293), 1, anon_sym_COLON, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(1922), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 14, + ACTIONS(3289), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162502,12 +163014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, + ACTIONS(1013), 1, anon_sym_DOT_DOT, - STATE(1923), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 20, + ACTIONS(1015), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162533,12 +163045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, + ACTIONS(997), 1, anon_sym_DOT_DOT, - STATE(1924), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(1029), 20, + ACTIONS(999), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162564,15 +163076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, + ACTIONS(3376), 1, anon_sym_COLON, - ACTIONS(3374), 2, + ACTIONS(3380), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1925), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 17, + ACTIONS(3374), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162595,22 +163107,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, + ACTIONS(3325), 1, anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4505), 1, + ACTIONS(4511), 1, anon_sym_COLON_COLON, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(1926), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 14, + ACTIONS(3323), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162625,28 +163137,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60510] = 10, + [60510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + ACTIONS(3364), 1, anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, + ACTIONS(3368), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(1927), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 14, + ACTIONS(3362), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -162658,22 +163164,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [60555] = 6, + anon_sym_LT2, + [60547] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3331), 1, + ACTIONS(3333), 1, anon_sym_COLON, - ACTIONS(3335), 2, + ACTIONS(3337), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1928), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 17, + ACTIONS(3331), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162691,27 +163199,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [60592] = 10, + [60584] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, + ACTIONS(3321), 1, anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4505), 1, + ACTIONS(4511), 1, anon_sym_COLON_COLON, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(1929), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 14, + ACTIONS(3319), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162726,92 +163234,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60637] = 6, + [60629] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3343), 1, - anon_sym_COLON, - ACTIONS(3347), 2, + ACTIONS(4505), 1, anon_sym_BANG, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + anon_sym_LBRACE, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4521), 1, + anon_sym_AT, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(4527), 1, anon_sym_COLON_COLON, - STATE(1930), 2, + STATE(1956), 1, + sym_type_arguments, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 17, + ACTIONS(4513), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60674] = 14, + anon_sym_in, + [60682] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(3356), 1, anon_sym_COLON, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4521), 1, + ACTIONS(3360), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 9, + ACTIONS(3354), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60727] = 6, + anon_sym_LT2, + [60719] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3351), 1, + ACTIONS(3315), 1, anon_sym_COLON, - ACTIONS(3355), 2, - anon_sym_BANG, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4511), 1, anon_sym_COLON_COLON, - STATE(1932), 2, + STATE(1956), 1, + sym_type_arguments, + STATE(1978), 1, + sym_parameters, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 17, + ACTIONS(3313), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -162823,27 +163337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, [60764] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - STATE(1955), 1, + STATE(1958), 1, sym_type_arguments, - STATE(1975), 1, + STATE(1963), 1, sym_parameters, - STATE(1933), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 15, + ACTIONS(3339), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162864,17 +163376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 2, + ACTIONS(3335), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1934), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 3, + ACTIONS(3331), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3374), 14, + ACTIONS(3337), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162894,18 +163406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - STATE(1955), 1, + STATE(1958), 1, sym_type_arguments, - STATE(1975), 1, + STATE(1963), 1, sym_parameters, - STATE(1935), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 15, + ACTIONS(3370), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162921,54 +163433,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60880] = 8, + [60880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(1936), 2, + ACTIONS(3479), 1, + anon_sym_COLON, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, + ACTIONS(3477), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [60920] = 6, + anon_sym_in, + [60914] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 2, + ACTIONS(3358), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1937), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 3, + ACTIONS(3354), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3347), 14, + ACTIONS(3360), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162983,54 +163492,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60956] = 8, + [60950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(1938), 2, + ACTIONS(3583), 1, + anon_sym_COLON, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 15, + ACTIONS(3581), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [60996] = 6, + anon_sym_in, + [60984] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 2, + ACTIONS(3378), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1939), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 3, + ACTIONS(3374), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3355), 14, + ACTIONS(3380), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163045,54 +163551,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61032] = 6, + [61020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 2, + ACTIONS(3471), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1940), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3335), 14, + ACTIONS(3469), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [61068] = 5, + [61054] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 2, + ACTIONS(3366), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1941), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 16, + ACTIONS(3362), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3368), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_BANG, anon_sym_PIPE, @@ -163103,46 +163610,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61101] = 5, + [61090] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 2, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, + STATE(1946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1942), 2, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61130] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3613), 1, + anon_sym_COLON, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3347), 16, + ACTIONS(3611), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [61134] = 5, + [61164] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61204] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 2, + ACTIONS(3358), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1943), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(3360), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163159,18 +163731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61167] = 5, + [61237] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 2, + ACTIONS(3366), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1944), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 16, + ACTIONS(3368), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163187,76 +163759,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61200] = 5, + [61270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3605), 1, - anon_sym_COLON, - STATE(1945), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 17, + ACTIONS(3374), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [61233] = 5, + anon_sym_LT2, + [61301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3619), 1, + ACTIONS(3378), 2, anon_sym_COLON, - STATE(1946), 2, + anon_sym_DOT_DOT, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(3617), 17, + ACTIONS(3380), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61266] = 5, + anon_sym_in, + [61334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3639), 1, + ACTIONS(3335), 2, anon_sym_COLON, - STATE(1947), 2, + anon_sym_DOT_DOT, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 17, + ACTIONS(3337), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [61367] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4533), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4529), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61413] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_COLON, + STATE(1955), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3653), 16, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -163271,46 +163903,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [61299] = 4, + [61445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1948), 2, + ACTIONS(3667), 1, + anon_sym_COLON, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 18, + ACTIONS(3665), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [61330] = 5, + [61477] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4543), 1, + anon_sym_const, + ACTIONS(4545), 1, + anon_sym_enum, + ACTIONS(4547), 1, + anon_sym_fn, + ACTIONS(4549), 1, + anon_sym_mod, + ACTIONS(4551), 1, + anon_sym_static, + ACTIONS(4553), 1, + anon_sym_struct, + ACTIONS(4555), 1, + anon_sym_trait, + ACTIONS(4557), 1, + anon_sym_type, + ACTIONS(4559), 1, + anon_sym_union, + ACTIONS(4561), 1, + anon_sym_unsafe, + ACTIONS(4563), 1, + anon_sym_use, + ACTIONS(4565), 1, + anon_sym_extern, + STATE(2198), 1, + sym_extern_modifier, + STATE(2250), 1, + aux_sym_function_modifiers_repeat1, + STATE(3647), 1, + sym_function_modifiers, + ACTIONS(4541), 2, + anon_sym_async, + anon_sym_default, + STATE(1957), 2, + sym_line_comment, + sym_block_comment, + [61537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3631), 1, + ACTIONS(3671), 1, anon_sym_COLON, - STATE(1949), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 17, + ACTIONS(3669), 16, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -163326,71 +163998,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [61363] = 19, + [61569] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4525), 1, + ACTIONS(4567), 1, anon_sym_const, - ACTIONS(4527), 1, + ACTIONS(4569), 1, anon_sym_enum, - ACTIONS(4529), 1, + ACTIONS(4571), 1, anon_sym_fn, - ACTIONS(4531), 1, + ACTIONS(4573), 1, anon_sym_mod, - ACTIONS(4533), 1, + ACTIONS(4575), 1, anon_sym_static, - ACTIONS(4535), 1, + ACTIONS(4577), 1, anon_sym_struct, - ACTIONS(4537), 1, + ACTIONS(4579), 1, anon_sym_trait, - ACTIONS(4539), 1, + ACTIONS(4581), 1, anon_sym_type, - ACTIONS(4541), 1, + ACTIONS(4583), 1, anon_sym_union, - ACTIONS(4543), 1, + ACTIONS(4585), 1, anon_sym_unsafe, - ACTIONS(4545), 1, + ACTIONS(4587), 1, anon_sym_use, - ACTIONS(4547), 1, + ACTIONS(4589), 1, anon_sym_extern, - STATE(2181), 1, + STATE(2166), 1, sym_extern_modifier, - STATE(2239), 1, + STATE(2250), 1, aux_sym_function_modifiers_repeat1, - STATE(3564), 1, + STATE(3499), 1, sym_function_modifiers, - ACTIONS(4523), 2, + ACTIONS(4541), 2, anon_sym_async, anon_sym_default, - STATE(1950), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - [61423] = 11, + [61629] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4551), 1, + ACTIONS(4531), 1, anon_sym_COLON, - ACTIONS(4553), 1, + ACTIONS(4533), 1, anon_sym_BANG, - ACTIONS(4555), 1, + ACTIONS(4535), 1, anon_sym_DOT_DOT, - ACTIONS(4559), 1, + ACTIONS(4591), 1, anon_sym_COLON_COLON, - STATE(1952), 1, + STATE(1955), 1, sym_type_arguments, - ACTIONS(4557), 2, + ACTIONS(4537), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 9, + ACTIONS(4529), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163400,44 +164072,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [61467] = 5, + [61673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3543), 1, - anon_sym_COLON, - STATE(1952), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3541), 16, + ACTIONS(3503), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [61499] = 5, + [61702] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, + ACTIONS(3372), 1, anon_sym_COLON, - STATE(1953), 2, + ACTIONS(4593), 1, + anon_sym_COLON_COLON, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 16, + ACTIONS(3370), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163448,132 +164120,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [61531] = 19, + [61735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4561), 1, - anon_sym_const, - ACTIONS(4563), 1, - anon_sym_enum, - ACTIONS(4565), 1, - anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_mod, - ACTIONS(4569), 1, - anon_sym_static, - ACTIONS(4571), 1, - anon_sym_struct, - ACTIONS(4573), 1, - anon_sym_trait, - ACTIONS(4575), 1, - anon_sym_type, - ACTIONS(4577), 1, - anon_sym_union, - ACTIONS(4579), 1, - anon_sym_unsafe, - ACTIONS(4581), 1, - anon_sym_use, - ACTIONS(4583), 1, - anon_sym_extern, - STATE(2170), 1, - sym_extern_modifier, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(3629), 1, - sym_function_modifiers, - ACTIONS(4523), 2, - anon_sym_async, - anon_sym_default, - STATE(1954), 2, + ACTIONS(4595), 1, + anon_sym_DASH_GT, + STATE(1963), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3509), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61766] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1964), 2, sym_line_comment, sym_block_comment, - [61591] = 5, + ACTIONS(1433), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [61795] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3559), 1, - anon_sym_COLON, - STATE(1955), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 16, + ACTIONS(1475), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [61623] = 12, + anon_sym_in, + [61824] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4555), 1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4517), 1, + anon_sym_LBRACE, + ACTIONS(4521), 1, + anon_sym_AT, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(4585), 1, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_RBRACK, + ACTIONS(4602), 1, anon_sym_COLON_COLON, - STATE(1952), 1, + STATE(1956), 1, sym_type_arguments, - ACTIONS(4557), 2, + STATE(1978), 1, + sym_parameters, + ACTIONS(3289), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4513), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1956), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [61669] = 6, + [61877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COLON, - ACTIONS(4587), 1, - anon_sym_COLON_COLON, - STATE(1957), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 14, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -163583,15 +164261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61702] = 4, + anon_sym_in, + [61906] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1958), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3589), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163608,17 +164287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61731] = 5, + [61935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4589), 1, - anon_sym_DASH_GT, - STATE(1959), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(1051), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163634,17 +164311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61762] = 5, + anon_sym_in, + [61964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, - anon_sym_DASH_GT, - STATE(1960), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(3473), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163656,27 +164332,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61793] = 5, + [61993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_DASH_GT, - STATE(1961), 2, + ACTIONS(3341), 1, + anon_sym_COLON, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3597), 15, + ACTIONS(3339), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -163686,19 +164364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61824] = 6, + [62026] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, + ACTIONS(3345), 1, anon_sym_COLON, - ACTIONS(4595), 1, + ACTIONS(4604), 1, anon_sym_COLON_COLON, - STATE(1962), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 14, + ACTIONS(3343), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163713,46 +164391,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61857] = 10, + [62059] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, ACTIONS(4509), 1, - anon_sym_LPAREN, + anon_sym_LT2, ACTIONS(4513), 1, - anon_sym_COLON, + anon_sym_PIPE, ACTIONS(4517), 1, + anon_sym_LBRACE, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4521), 1, + anon_sym_AT, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(4597), 1, + ACTIONS(4606), 1, + anon_sym_LPAREN, + ACTIONS(4608), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + STATE(1956), 1, + sym_type_arguments, + STATE(1978), 1, + sym_parameters, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1963), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 9, - anon_sym_SEMI, + ACTIONS(3289), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [61898] = 4, + [62112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + ACTIONS(4610), 1, + anon_sym_DASH_GT, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 16, + ACTIONS(3515), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163768,18 +164454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61927] = 5, + [62143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4599), 1, + ACTIONS(4612), 1, anon_sym_DASH_GT, - STATE(1965), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, + ACTIONS(3593), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163795,24 +164480,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61958] = 6, + [62174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3359), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(1966), 2, + ACTIONS(4614), 1, + anon_sym_DASH_GT, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 14, + ACTIONS(3521), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -163822,90 +164506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61991] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4603), 1, - anon_sym_RBRACK, - ACTIONS(4606), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - ACTIONS(3295), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4507), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1967), 2, - sym_line_comment, - sym_block_comment, - [62044] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_PLUS, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4507), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4608), 1, - anon_sym_LPAREN, - ACTIONS(4610), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4603), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1968), 2, - sym_line_comment, - sym_block_comment, - [62099] = 4, + [62205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + ACTIONS(4616), 1, + anon_sym_DASH_GT, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 16, + ACTIONS(3527), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163921,25 +164532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62128] = 6, + [62236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COLON, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - STATE(1970), 2, + ACTIONS(4618), 1, + anon_sym_DASH_GT, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 14, + ACTIONS(3497), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -163949,21 +164558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62161] = 4, + [62267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + ACTIONS(3329), 1, + anon_sym_COLON, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, + ACTIONS(3327), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -163973,18 +164585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62190] = 5, + [62300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, + ACTIONS(4620), 1, anon_sym_LPAREN, - STATE(1972), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(4035), 15, + ACTIONS(4033), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -164000,85 +164611,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62221] = 4, + [62331] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(4622), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 16, + ACTIONS(4513), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62250] = 16, + anon_sym_in, + [62372] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4507), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(3372), 1, anon_sym_COLON, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4618), 1, + ACTIONS(4624), 1, anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1974), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [62303] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4620), 1, - anon_sym_DASH_GT, - STATE(1975), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(3370), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -164088,21 +164669,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62334] = 4, + [62405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + ACTIONS(3372), 1, + anon_sym_COLON, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 16, + ACTIONS(3370), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -164112,16 +164696,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62363] = 4, + [62438] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + ACTIONS(3289), 1, + anon_sym_PLUS, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4513), 1, + anon_sym_PIPE, + ACTIONS(4517), 1, + anon_sym_LBRACE, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4521), 1, + anon_sym_AT, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(4626), 1, + anon_sym_LPAREN, + ACTIONS(4628), 1, + anon_sym_COLON_COLON, + STATE(1956), 1, + sym_type_arguments, + STATE(1978), 1, + sym_parameters, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4599), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1984), 2, + sym_line_comment, + sym_block_comment, + [62493] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4533), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4630), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1985), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4529), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62536] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4632), 1, + anon_sym_DASH_GT, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3641), 16, + ACTIONS(3485), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164133,47 +164788,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62392] = 6, + [62567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3327), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(1978), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 14, + ACTIONS(3615), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62425] = 4, + [62596] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 16, + ACTIONS(3481), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164190,24 +164842,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62454] = 6, + [62625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3339), 1, - anon_sym_COLON, - ACTIONS(4595), 1, + ACTIONS(4634), 1, anon_sym_COLON_COLON, - STATE(1980), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 14, + ACTIONS(4038), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [62655] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1990), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3853), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -164217,17 +164891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62487] = 5, + [62683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, - anon_sym_DASH_GT, - STATE(1981), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3709), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164243,17 +164915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62518] = 5, + [62711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4624), 1, - anon_sym_DASH_GT, - STATE(1982), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 15, + ACTIONS(3857), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164269,47 +164939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62549] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1983), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4549), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62592] = 4, + [62739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3633), 16, + ACTIONS(3861), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164321,20 +164959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62621] = 4, + [62767] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 15, + ACTIONS(3869), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164350,15 +164987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62649] = 4, + [62795] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 15, + ACTIONS(3370), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164374,61 +165011,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62677] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1987), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4046), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [62705] = 5, + [62823] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4529), 1, + anon_sym_PIPE, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4533), 1, + anon_sym_BANG, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4636), 1, anon_sym_COLON_COLON, - STATE(1988), 2, + STATE(1955), 1, + sym_type_arguments, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 14, + ACTIONS(3467), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, - [62735] = 4, + [62867] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, ACTIONS(3689), 15, @@ -164447,47 +165067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62763] = 12, + [62895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4628), 1, + ACTIONS(3961), 1, anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1990), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(4038), 14, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - [62807] = 4, + [62925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, + ACTIONS(3677), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164503,12 +165116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62835] = 4, + [62953] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, ACTIONS(3701), 15, @@ -164527,15 +165140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62863] = 4, + [62981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3685), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164551,15 +165164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62891] = 4, + [63009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 15, + ACTIONS(3701), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164575,15 +165188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62919] = 4, + [63037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 15, + ACTIONS(3731), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164599,15 +165212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62947] = 4, + [63065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 15, + ACTIONS(3697), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164623,15 +165236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62975] = 4, + [63093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 15, + ACTIONS(3327), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164647,15 +165260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63003] = 4, + [63121] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3863), 15, + ACTIONS(3343), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164671,15 +165284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63031] = 4, + [63149] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1999), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3339), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164695,15 +165308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63059] = 4, + [63177] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2000), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4031), 15, + ACTIONS(4042), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -164719,39 +165332,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63087] = 4, + [63205] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3761), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63115] = 4, + ACTIONS(4049), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [63233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, + ACTIONS(3865), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164767,39 +165380,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63143] = 4, + [63261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2003), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63171] = 4, + ACTIONS(4057), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [63289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2004), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 15, + ACTIONS(3945), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164815,15 +165428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63199] = 4, + [63317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 15, + ACTIONS(3797), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164839,15 +165452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63227] = 4, + [63345] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2006), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(3933), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164863,15 +165476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63255] = 4, + [63373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2007), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3937), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164887,15 +165500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63283] = 4, + [63401] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(3849), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164911,15 +165524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63311] = 4, + [63429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, + ACTIONS(3693), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164935,15 +165548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63339] = 4, + [63457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2010), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(3681), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164959,15 +165572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63367] = 4, + [63485] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3941), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164983,15 +165596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63395] = 4, + [63513] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3877), 15, + ACTIONS(3705), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165007,121 +165620,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63423] = 5, + [63541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - STATE(2013), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4037), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [63453] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2014), 2, + ACTIONS(1005), 1, + anon_sym_DOT_DOT, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(1007), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [63481] = 4, + anon_sym_in, + [63570] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + ACTIONS(4640), 1, + anon_sym_pat, + STATE(165), 1, + sym_fragment_specifier, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [63509] = 4, + ACTIONS(4638), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [63601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + ACTIONS(991), 1, + anon_sym_DOT_DOT, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3725), 15, + ACTIONS(993), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [63537] = 8, + anon_sym_in, + [63630] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, + ACTIONS(4531), 1, anon_sym_COLON, - ACTIONS(4555), 1, + ACTIONS(4535), 1, anon_sym_DOT_DOT, - ACTIONS(4559), 1, + ACTIONS(4591), 1, anon_sym_COLON_COLON, - ACTIONS(4557), 2, + ACTIONS(4537), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 9, + ACTIONS(4529), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165131,76 +165720,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63572] = 16, + [63665] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4632), 1, + ACTIONS(4642), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4644), 1, anon_sym_EQ, - ACTIONS(4636), 1, + ACTIONS(4646), 1, anon_sym_GT, - ACTIONS(4638), 1, + ACTIONS(4648), 1, anon_sym_COMMA, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2809), 1, + STATE(2794), 1, sym_trait_bounds, - STATE(2811), 1, + STATE(2801), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3295), 2, + ACTIONS(3289), 2, anon_sym_PLUS, anon_sym_as, - STATE(2018), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - [63623] = 5, + [63716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, + ACTIONS(3335), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2019), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1025), 13, - anon_sym_SEMI, + ACTIONS(3331), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4650), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_COMMA, + ACTIONS(3337), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63652] = 5, + anon_sym_COLON_COLON, + [63748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, + ACTIONS(4655), 1, anon_sym_DOT_DOT, - STATE(2020), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 13, + ACTIONS(4653), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165208,126 +165798,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63681] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_pat, - STATE(151), 1, - sym_fragment_specifier, - STATE(2021), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4640), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [63712] = 7, + [63776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 2, - anon_sym_COLON, + ACTIONS(3335), 1, anon_sym_DOT_DOT, - STATE(2022), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3341), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4644), 3, + ACTIONS(4650), 2, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3347), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63744] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3353), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2023), 2, + anon_sym_RBRACK, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 3, + ACTIONS(3331), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4647), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3355), 5, + ACTIONS(3337), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [63776] = 7, + [63808] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 2, + ACTIONS(3366), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2024), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 3, + ACTIONS(3362), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4650), 3, + ACTIONS(4657), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3335), 5, + ACTIONS(3368), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63808] = 6, + [63840] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2025), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 10, + ACTIONS(4513), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165338,1088 +165877,944 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63838] = 7, + [63870] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 2, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4660), 1, + anon_sym_LPAREN, + ACTIONS(4662), 1, + anon_sym_LBRACE, + ACTIONS(4664), 1, + anon_sym_BANG, + ACTIONS(4666), 1, + anon_sym_AT, + ACTIONS(4668), 1, + anon_sym_DOT_DOT, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + STATE(1956), 1, + sym_type_arguments, + ACTIONS(4670), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4513), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [63914] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3358), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2026), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 3, + ACTIONS(3354), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4653), 3, + ACTIONS(4674), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3374), 5, + ACTIONS(3360), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63870] = 7, + [63946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4647), 1, + ACTIONS(4674), 1, anon_sym_LPAREN, - ACTIONS(3353), 2, + ACTIONS(3358), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2027), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 5, + ACTIONS(3354), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3355), 5, + ACTIONS(3360), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63902] = 7, + [63978] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(3333), 2, + ACTIONS(3378), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2028), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 5, - anon_sym_RPAREN, + ACTIONS(3374), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3335), 5, + ACTIONS(4677), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3380), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63934] = 7, + [64010] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, + ACTIONS(3366), 1, anon_sym_DOT_DOT, - ACTIONS(4653), 2, + ACTIONS(4657), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2029), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 4, + ACTIONS(3362), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3374), 6, + ACTIONS(3368), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63966] = 7, + [64042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, - anon_sym_LPAREN, - ACTIONS(3372), 2, - anon_sym_COLON, + ACTIONS(4682), 1, anon_sym_DOT_DOT, - STATE(2030), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 5, + ACTIONS(4680), 12, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3374), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63998] = 7, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64070] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 2, + ACTIONS(4677), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2031), 2, + ACTIONS(3378), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 4, - anon_sym_SEMI, + ACTIONS(3374), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3347), 6, + ACTIONS(3380), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64030] = 13, + [64102] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(4650), 1, anon_sym_LPAREN, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4662), 1, - anon_sym_AT, - ACTIONS(4664), 1, + ACTIONS(3335), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2032), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, + ACTIONS(3331), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3337), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_if, - [64074] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [64134] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, + ACTIONS(3358), 1, anon_sym_DOT_DOT, - ACTIONS(4650), 2, + ACTIONS(4674), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2033), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 4, + ACTIONS(3354), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3335), 6, + ACTIONS(3360), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64106] = 5, + [64166] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, + ACTIONS(3378), 1, anon_sym_DOT_DOT, - STATE(2034), 2, + ACTIONS(4677), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(4670), 12, + ACTIONS(3374), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3380), 6, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64134] = 7, + anon_sym_COLON_COLON, + [64198] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4657), 1, anon_sym_LPAREN, - ACTIONS(3345), 2, + ACTIONS(3366), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2035), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 5, + ACTIONS(3362), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3347), 5, + ACTIONS(3368), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64166] = 7, + [64230] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_DOT_DOT, - ACTIONS(4647), 2, + ACTIONS(4686), 1, + anon_sym_COLON, + ACTIONS(3881), 2, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3349), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3355), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64198] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4676), 1, - anon_sym_DOT_DOT, - STATE(2037), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 12, + ACTIONS(4684), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64226] = 14, + [64259] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4680), 1, + ACTIONS(4690), 1, anon_sym_GT, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2038), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64271] = 14, + [64304] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4686), 1, + ACTIONS(4696), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2039), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64316] = 14, + [64349] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4688), 1, + ACTIONS(4698), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2040), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64361] = 14, + [64394] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4690), 1, + ACTIONS(4700), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2041), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64406] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4537), 1, - anon_sym_trait, - ACTIONS(4692), 1, - anon_sym_impl, - STATE(379), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2042), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64443] = 14, + [64439] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, ACTIONS(4694), 1, + sym_metavariable, + ACTIONS(4702), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2043), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64488] = 14, + [64484] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4696), 1, + ACTIONS(4704), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2044), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64533] = 14, + [64529] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4698), 1, + ACTIONS(4706), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2045), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64578] = 14, + [64574] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4700), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2046), 2, + ACTIONS(4686), 1, + anon_sym_COLON, + ACTIONS(3915), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2050), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64623] = 14, + ACTIONS(4684), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64603] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4702), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2047), 2, + ACTIONS(4579), 1, + anon_sym_trait, + ACTIONS(4708), 1, + anon_sym_impl, + STATE(412), 1, + sym_block, + STATE(3600), 1, + sym_label, + STATE(2051), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64668] = 14, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64640] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4704), 1, + ACTIONS(4710), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2048), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64713] = 14, + [64685] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4706), 1, + ACTIONS(4712), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2049), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64758] = 14, + [64730] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4708), 1, + ACTIONS(4714), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2050), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64803] = 14, + [64775] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4710), 1, + ACTIONS(4716), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2667), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2051), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64848] = 14, + [64820] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4712), 1, + ACTIONS(4718), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2652), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2052), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64893] = 14, + [64865] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4684), 1, + ACTIONS(4694), 1, sym_metavariable, - ACTIONS(4714), 1, + ACTIONS(4720), 1, anon_sym_GT, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2059), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, + STATE(2702), 1, sym_lifetime, - STATE(3014), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2053), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [64938] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4716), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64976] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4718), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2055), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65014] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(4722), 1, - anon_sym_COLON, - STATE(2056), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4720), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65042] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4726), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65072] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4728), 1, - anon_sym_move, - STATE(381), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65106] = 13, + [64910] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4730), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4732), 1, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4694), 1, sym_metavariable, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, + ACTIONS(4722), 1, + anon_sym_GT, + STATE(1448), 1, sym_attribute_item, - STATE(2722), 1, - sym_lifetime, - STATE(2781), 1, - sym_constrained_type_parameter, - STATE(2059), 2, - sym_line_comment, - sym_block_comment, - STATE(3310), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65148] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(2060), 2, + STATE(2073), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2652), 1, + sym_lifetime, + STATE(2859), 1, + sym_constrained_type_parameter, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65176] = 13, + STATE(3287), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64955] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4738), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4740), 1, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4694), 1, sym_metavariable, - STATE(1405), 1, + ACTIONS(4724), 1, + anon_sym_GT, + STATE(1448), 1, sym_attribute_item, - STATE(2077), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2486), 1, + STATE(2652), 1, sym_lifetime, - STATE(2540), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2061), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - STATE(2953), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [65218] = 11, + [65000] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4742), 1, + ACTIONS(4726), 1, anon_sym_for, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2062), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, + ACTIONS(3289), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65256] = 12, + [65038] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4728), 1, + sym_identifier, + ACTIONS(4730), 1, + anon_sym_RBRACE, + ACTIONS(4732), 1, + anon_sym_DOT_DOT, + ACTIONS(4734), 1, + anon_sym_COMMA, + ACTIONS(4736), 1, + sym_integer_literal, + STATE(1448), 1, + sym_attribute_item, + STATE(2445), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2061), 2, + sym_line_comment, + sym_block_comment, + STATE(3067), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65078] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3293), 1, anon_sym_COLON, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4744), 1, + ACTIONS(4738), 1, anon_sym_EQ, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2358), 1, + STATE(2402), 1, sym_type_arguments, - STATE(2063), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 3, + ACTIONS(3289), 3, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - [65296] = 4, + [65118] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4740), 1, + sym_identifier, + ACTIONS(4742), 1, + sym_metavariable, + STATE(1448), 1, + sym_attribute_item, + STATE(2076), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2348), 1, + sym_lifetime, + STATE(2747), 1, + sym_constrained_type_parameter, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65320] = 4, + STATE(3005), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65160] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 11, + ACTIONS(1381), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166431,217 +166826,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65344] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_DOT_DOT, - ACTIONS(3368), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65372] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_DOT_DOT, - ACTIONS(3329), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3335), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65400] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_DOT_DOT, - ACTIONS(3341), 2, + [65184] = 9, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3347), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65428] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_DOT_DOT, - ACTIONS(3349), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2069), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_move, + STATE(383), 1, + sym_block, + STATE(3600), 1, + sym_label, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65456] = 13, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65218] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4746), 1, + ACTIONS(4688), 1, sym_identifier, - ACTIONS(4748), 1, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4694), 1, sym_metavariable, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2071), 1, + STATE(2073), 1, aux_sym_enum_variant_list_repeat1, - STATE(2422), 1, + STATE(2652), 1, sym_lifetime, - STATE(2600), 1, + STATE(2859), 1, sym_constrained_type_parameter, - STATE(2070), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - STATE(3040), 2, + STATE(3287), 2, sym_const_parameter, sym_optional_type_parameter, - [65498] = 13, + [65260] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4750), 1, + ACTIONS(4746), 1, sym_identifier, - ACTIONS(4752), 1, - sym_metavariable, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2425), 1, - sym_lifetime, - STATE(2536), 1, - sym_constrained_type_parameter, - STATE(2071), 2, - sym_line_comment, - sym_block_comment, - STATE(2796), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65540] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4754), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2072), 2, + STATE(384), 1, + sym_block, + STATE(3600), 1, + sym_label, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4748), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65570] = 13, + [65294] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2073), 2, + ACTIONS(4752), 1, + anon_sym_COLON, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + STATE(2068), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65612] = 6, + ACTIONS(4750), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65322] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4736), 1, + ACTIONS(4758), 1, anon_sym_COLON, - ACTIONS(4756), 1, + ACTIONS(4760), 1, anon_sym_COLON_COLON, - STATE(2074), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(4756), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166651,48 +166949,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65640] = 13, + [65350] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4738), 1, - sym_identifier, - ACTIONS(4740), 1, - sym_metavariable, - STATE(1405), 1, - sym_attribute_item, - STATE(2077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2382), 1, - sym_lifetime, - STATE(2540), 1, - sym_constrained_type_parameter, - STATE(2075), 2, + ACTIONS(4634), 1, + anon_sym_COLON_COLON, + ACTIONS(4758), 1, + anon_sym_COLON, + STATE(2070), 2, sym_line_comment, sym_block_comment, - STATE(2953), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65682] = 6, + ACTIONS(4756), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65378] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4736), 1, - anon_sym_COLON, ACTIONS(4758), 1, + anon_sym_COLON, + ACTIONS(4762), 1, anon_sym_COLON_COLON, - STATE(2076), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(4756), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166702,44 +166993,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65710] = 13, + [65406] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, + ACTIONS(4692), 1, anon_sym_const, - ACTIONS(4760), 1, + ACTIONS(4740), 1, sym_identifier, - ACTIONS(4762), 1, + ACTIONS(4742), 1, + sym_metavariable, + STATE(1448), 1, + sym_attribute_item, + STATE(2076), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2438), 1, + sym_lifetime, + STATE(2747), 1, + sym_constrained_type_parameter, + STATE(2072), 2, + sym_line_comment, + sym_block_comment, + STATE(3005), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65448] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4764), 1, + sym_identifier, + ACTIONS(4766), 1, sym_metavariable, - STATE(1061), 1, + STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2428), 1, + STATE(2681), 1, sym_lifetime, - STATE(2539), 1, + STATE(3010), 1, sym_constrained_type_parameter, - STATE(2077), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - STATE(2837), 2, + STATE(3078), 2, sym_const_parameter, sym_optional_type_parameter, - [65752] = 4, + [65490] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4728), 1, + sym_identifier, + ACTIONS(4732), 1, + anon_sym_DOT_DOT, + ACTIONS(4736), 1, + sym_integer_literal, + ACTIONS(4768), 1, + anon_sym_RBRACE, + ACTIONS(4770), 1, + anon_sym_COMMA, + STATE(1448), 1, + sym_attribute_item, + STATE(2445), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2074), 2, + sym_line_comment, + sym_block_comment, + STATE(2795), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65530] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1269), 11, + ACTIONS(1385), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166751,116 +167099,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65776] = 6, + [65554] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - STATE(2079), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4772), 1, + sym_identifier, + ACTIONS(4774), 1, + sym_metavariable, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, + STATE(2480), 1, + sym_lifetime, + STATE(2569), 1, + sym_constrained_type_parameter, + STATE(2076), 2, + sym_line_comment, + sym_block_comment, + STATE(2814), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65596] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 9, + ACTIONS(1355), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65804] = 6, + [65620] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON, - ACTIONS(4768), 1, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - STATE(2080), 2, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4776), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, + STATE(1978), 1, + sym_parameters, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 9, + ACTIONS(3289), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65832] = 9, - ACTIONS(19), 1, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65658] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4770), 1, - sym_identifier, - STATE(397), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2081), 2, + ACTIONS(1317), 1, + aux_sym_string_literal_token1, + ACTIONS(4780), 1, + sym_crate, + STATE(2238), 1, + sym_string_literal, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, + ACTIONS(4778), 8, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65866] = 12, + [65688] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4776), 1, - anon_sym_RBRACE, - ACTIONS(4778), 1, + ACTIONS(3335), 1, anon_sym_DOT_DOT, - ACTIONS(4780), 1, - anon_sym_COMMA, - ACTIONS(4782), 1, - sym_integer_literal, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2082), 2, + ACTIONS(3331), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - STATE(2758), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65906] = 6, + ACTIONS(3337), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [65716] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON, - ACTIONS(4758), 1, + ACTIONS(4754), 1, anon_sym_COLON_COLON, - STATE(2083), 2, + ACTIONS(4784), 1, + anon_sym_COLON, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 9, + ACTIONS(4782), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166870,244 +167242,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65934] = 11, + [65744] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4585), 1, + ACTIONS(4760), 1, anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2084), 2, + ACTIONS(4788), 1, + anon_sym_COLON, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, + ACTIONS(4786), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [65972] = 12, + anon_sym_else, + anon_sym_in, + [65772] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4784), 1, - anon_sym_RBRACE, - ACTIONS(4786), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2085), 2, + ACTIONS(4634), 1, + anon_sym_COLON_COLON, + ACTIONS(4788), 1, + anon_sym_COLON, + STATE(2083), 2, sym_line_comment, sym_block_comment, - STATE(2905), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66012] = 11, + ACTIONS(4786), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65800] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4788), 1, + ACTIONS(4790), 1, anon_sym_for, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2086), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, + ACTIONS(3289), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66050] = 4, + [65838] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + ACTIONS(4762), 1, + anon_sym_COLON_COLON, + ACTIONS(4788), 1, + anon_sym_COLON, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(1261), 11, + ACTIONS(4786), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66074] = 7, + [65866] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4790), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2088), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4792), 1, + sym_identifier, + ACTIONS(4794), 1, + sym_metavariable, + STATE(1448), 1, + sym_attribute_item, + STATE(2087), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2518), 1, + sym_lifetime, + STATE(2663), 1, + sym_constrained_type_parameter, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66104] = 7, + STATE(3044), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65908] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4792), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2089), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4692), 1, + anon_sym_const, + ACTIONS(4796), 1, + sym_identifier, + ACTIONS(4798), 1, + sym_metavariable, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, + STATE(2523), 1, + sym_lifetime, + STATE(2745), 1, + sym_constrained_type_parameter, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66134] = 11, + STATE(2840), 2, + sym_const_parameter, + sym_optional_type_parameter, + [65950] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4794), 1, + ACTIONS(4800), 1, anon_sym_for, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2090), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, + ACTIONS(3289), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66172] = 11, + [65988] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4796), 1, + ACTIONS(4802), 1, anon_sym_for, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2091), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, + ACTIONS(3289), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66210] = 11, + [66026] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4533), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4798), 1, - anon_sym_for, - STATE(1953), 1, + STATE(1955), 1, sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2092), 2, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66248] = 4, + ACTIONS(4529), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [66064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 11, + ACTIONS(1363), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167119,117 +167494,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66272] = 11, + [66088] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1317), 1, + aux_sym_string_literal_token1, + ACTIONS(4804), 1, + sym_crate, + STATE(2238), 1, + sym_string_literal, + STATE(2092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4778), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66118] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4501), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4800), 1, + ACTIONS(4806), 1, anon_sym_for, - STATE(1953), 1, + STATE(1956), 1, sym_type_arguments, - STATE(1982), 1, + STATE(1978), 1, sym_parameters, - STATE(2094), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, + ACTIONS(3289), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66310] = 6, + [66156] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4804), 1, - anon_sym_COLON, - STATE(2095), 2, + ACTIONS(1317), 1, + aux_sym_string_literal_token1, + ACTIONS(4808), 1, + sym_crate, + STATE(2238), 1, + sym_string_literal, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 9, + ACTIONS(4778), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66338] = 4, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66186] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4507), 1, + anon_sym_COLON_COLON, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4810), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, + STATE(1978), 1, + sym_parameters, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, + ACTIONS(3289), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66361] = 8, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66224] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, anon_sym_BANG, - ACTIONS(4587), 1, + ACTIONS(4507), 1, anon_sym_COLON_COLON, - STATE(1952), 1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4812), 1, + anon_sym_for, + STATE(1956), 1, sym_type_arguments, + STATE(1978), 1, + sym_parameters, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66262] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3366), 1, + anon_sym_DOT_DOT, + ACTIONS(3362), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66392] = 4, + ACTIONS(3368), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66290] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3358), 1, + anon_sym_DOT_DOT, + ACTIONS(3354), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3360), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66415] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66318] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167237,7 +167673,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 10, + ACTIONS(1367), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167245,67 +167681,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66438] = 4, + [66342] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3378), 1, + anon_sym_DOT_DOT, + ACTIONS(3374), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4812), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3380), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66461] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66370] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1317), 1, + aux_sym_string_literal_token1, + ACTIONS(4814), 1, + sym_crate, + STATE(2238), 1, + sym_string_literal, STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 10, + ACTIONS(4778), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66484] = 4, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66400] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4816), 1, + anon_sym_LBRACE, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 10, + ACTIONS(3370), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66507] = 4, + [66433] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167324,7 +167773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66530] = 4, + [66456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167343,7 +167792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66553] = 4, + [66479] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167362,7 +167811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66576] = 4, + [66502] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167381,7 +167830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66599] = 4, + [66525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167389,26 +167838,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66622] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2108), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4828), 10, + ACTIONS(4756), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167419,56 +167849,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66645] = 11, + [66548] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4826), 1, sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4830), 1, + ACTIONS(4828), 1, anon_sym_RBRACE, - STATE(1405), 1, + ACTIONS(4830), 1, + anon_sym_COMMA, + ACTIONS(4832), 1, + sym_crate, + STATE(1448), 1, sym_attribute_item, - STATE(2466), 1, + STATE(2251), 1, aux_sym_enum_variant_list_repeat1, - STATE(2109), 2, + STATE(2819), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, + STATE(2108), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66682] = 8, + [66589] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, + ACTIONS(4019), 1, anon_sym_LT2, - ACTIONS(3525), 1, + ACTIONS(4143), 1, anon_sym_COLON_COLON, - ACTIONS(4832), 1, + ACTIONS(4834), 1, anon_sym_BANG, - STATE(1087), 1, + STATE(1632), 1, sym_type_arguments, - STATE(2110), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(3467), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66713] = 4, + [66620] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4838), 1, + anon_sym_RBRACE, + ACTIONS(4840), 1, + anon_sym_COMMA, + STATE(1448), 1, + sym_attribute_item, + STATE(2252), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2851), 1, + sym_field_declaration, + STATE(3609), 1, + sym_visibility_modifier, + STATE(2110), 2, + sym_line_comment, + sym_block_comment, + [66661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167476,7 +167936,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 10, + ACTIONS(4842), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167487,30 +167947,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66736] = 8, + [66684] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4844), 1, anon_sym_BANG, - STATE(1615), 1, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4850), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, sym_type_arguments, + ACTIONS(4848), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66767] = 4, + ACTIONS(4529), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167518,7 +167980,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4836), 10, + ACTIONS(4852), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167529,7 +167991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66790] = 4, + [66742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167537,7 +167999,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4838), 10, + ACTIONS(4854), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167548,7 +168010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66813] = 4, + [66765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167556,7 +168018,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4840), 10, + ACTIONS(4856), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167567,7 +168029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66836] = 4, + [66788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167575,7 +168037,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4842), 10, + ACTIONS(4858), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167586,65 +168048,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66859] = 11, + [66811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4844), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, STATE(2117), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66896] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4846), 1, - anon_sym_LBRACE, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 5, + ACTIONS(4860), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66929] = 4, + anon_sym_else, + anon_sym_in, + [66834] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2119), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 10, + ACTIONS(4862), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167655,15 +168086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66952] = 4, + [66857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2120), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 10, + ACTIONS(4864), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167674,15 +168105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66975] = 4, + [66880] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 10, + ACTIONS(4866), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167693,7 +168124,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66998] = 4, + [66903] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4868), 1, + anon_sym_RBRACE, + ACTIONS(4870), 1, + anon_sym_COMMA, + STATE(1448), 1, + sym_attribute_item, + STATE(2241), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2908), 1, + sym_field_declaration, + STATE(3609), 1, + sym_visibility_modifier, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + [66944] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167701,7 +168160,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, + ACTIONS(4872), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167712,33 +168171,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67021] = 11, + [66967] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(4728), 1, sym_identifier, - ACTIONS(4778), 1, + ACTIONS(4732), 1, anon_sym_DOT_DOT, - ACTIONS(4782), 1, + ACTIONS(4736), 1, sym_integer_literal, - ACTIONS(4854), 1, + ACTIONS(4874), 1, anon_sym_RBRACE, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2466), 1, + STATE(2445), 1, aux_sym_enum_variant_list_repeat1, STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, + STATE(3256), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67058] = 4, + [67004] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167746,7 +168205,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 10, + ACTIONS(4876), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167757,32 +168216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67081] = 10, + [67027] = 4, ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4858), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, + ACTIONS(4878), 10, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [67116] = 4, + anon_sym_else, + anon_sym_in, + [67050] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167790,7 +168243,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 10, + ACTIONS(4880), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167801,30 +168254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67139] = 8, + [67073] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(2111), 1, - sym_block, - STATE(3611), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4533), 1, + anon_sym_BANG, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(3467), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67170] = 4, + [67104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167832,7 +168285,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4862), 10, + ACTIONS(4786), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167843,7 +168296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67193] = 4, + [67127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167851,7 +168304,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 10, + ACTIONS(4882), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167862,35 +168315,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67216] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [67150] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(4728), 1, sym_identifier, - ACTIONS(4866), 1, + ACTIONS(4732), 1, + anon_sym_DOT_DOT, + ACTIONS(4736), 1, + sym_integer_literal, + ACTIONS(4884), 1, anon_sym_RBRACE, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(4870), 1, - sym_crate, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2244), 1, + STATE(2445), 1, aux_sym_enum_variant_list_repeat1, - STATE(2787), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, STATE(2130), 2, sym_line_comment, sym_block_comment, - [67257] = 4, + STATE(3256), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167898,7 +168349,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4872), 10, + ACTIONS(4886), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167909,60 +168360,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67280] = 10, + [67210] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, + ACTIONS(4888), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [67315] = 13, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_else, + anon_sym_in, + [67233] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, + ACTIONS(4728), 1, sym_identifier, - ACTIONS(4876), 1, + ACTIONS(4732), 1, + anon_sym_DOT_DOT, + ACTIONS(4736), 1, + sym_integer_literal, + ACTIONS(4890), 1, anon_sym_RBRACE, - ACTIONS(4878), 1, - anon_sym_COMMA, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2246), 1, + STATE(2445), 1, aux_sym_enum_variant_list_repeat1, - STATE(2802), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, STATE(2133), 2, sym_line_comment, sym_block_comment, - [67356] = 4, + STATE(3256), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167970,7 +168413,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4880), 10, + ACTIONS(1407), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167981,7 +168424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67379] = 4, + [67293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167989,7 +168432,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 10, + ACTIONS(4513), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168000,15 +168443,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67402] = 4, + [67316] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(4892), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 10, + ACTIONS(4513), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [67351] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4894), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168019,15 +168487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67425] = 4, + [67374] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2137), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(4884), 10, + ACTIONS(4896), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168038,66 +168506,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67448] = 11, + [67397] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4886), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2138), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67485] = 10, + ACTIONS(4898), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67420] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4888), 1, + ACTIONS(4533), 1, anon_sym_BANG, - ACTIONS(4890), 1, + ACTIONS(4535), 1, anon_sym_DOT_DOT, - ACTIONS(4894), 1, + ACTIONS(4630), 1, anon_sym_COLON_COLON, - STATE(1952), 1, + STATE(1955), 1, sym_type_arguments, - ACTIONS(4892), 2, + ACTIONS(4537), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2139), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_EQ_GT, + ACTIONS(4529), 3, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_if, - [67520] = 4, + anon_sym_COMMA, + [67455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 10, + ACTIONS(4900), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168108,35 +168569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67543] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4898), 1, - anon_sym_RBRACE, - ACTIONS(4900), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2213), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2969), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2141), 2, - sym_line_comment, - sym_block_comment, - [67584] = 4, + [67478] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -168155,7 +168588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67607] = 4, + [67501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -168174,7 +168607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67630] = 4, + [67524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -168193,15 +168626,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67653] = 4, + [67547] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4908), 1, + anon_sym_RBRACE, + ACTIONS(4910), 1, + anon_sym_COMMA, + STATE(1448), 1, + sym_attribute_item, + STATE(2228), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2932), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4908), 10, + [67588] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4912), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168212,35 +168673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67676] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4910), 1, - anon_sym_RBRACE, - ACTIONS(4912), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2200), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2949), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - [67717] = 4, + [67611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -168259,328 +168692,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67740] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [67634] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(3607), 1, + anon_sym_COLON_COLON, ACTIONS(4916), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, + anon_sym_BANG, + STATE(1369), 1, + sym_type_arguments, STATE(2148), 2, sym_line_comment, sym_block_comment, - [67778] = 6, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4920), 1, - anon_sym_PLUS, - STATE(2154), 1, - aux_sym_trait_bounds_repeat1, STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 7, + ACTIONS(4918), 10, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67804] = 12, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_else, + anon_sym_in, + [67688] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4922), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, STATE(2150), 2, sym_line_comment, sym_block_comment, - [67842] = 9, + ACTIONS(4920), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67711] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4664), 1, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4728), 1, + sym_identifier, + ACTIONS(4732), 1, anon_sym_DOT_DOT, - ACTIONS(4924), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4736), 1, + sym_integer_literal, + ACTIONS(4922), 1, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2445), 1, + aux_sym_enum_variant_list_repeat1, STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [67874] = 9, + STATE(3256), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67748] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4926), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(2134), 1, + sym_block, + STATE(3629), 1, + sym_label, STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67906] = 9, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(4928), 1, - anon_sym_RBRACK, - ACTIONS(3321), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4549), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2153), 2, sym_line_comment, sym_block_comment, - [67938] = 5, + ACTIONS(4924), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67802] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, - anon_sym_PLUS, - STATE(2154), 3, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4926), 1, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2225), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, + STATE(2154), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4931), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67962] = 9, + [67840] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4928), 1, + anon_sym_SEMI, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(4934), 1, + anon_sym_LT, ACTIONS(4936), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, + anon_sym_where, + STATE(1231), 1, + sym_field_declaration_list, + STATE(2266), 1, + sym_type_parameters, + STATE(2865), 1, + sym_ordered_field_declaration_list, + STATE(3194), 1, + sym_where_clause, STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67994] = 10, + [67878] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, STATE(2156), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68028] = 12, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67906] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_SEMI, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - STATE(758), 1, - sym_field_declaration_list, - STATE(2272), 1, - sym_type_parameters, - STATE(2891), 1, - sym_ordered_field_declaration_list, - STATE(3320), 1, - sym_where_clause, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2225), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, STATE(2157), 2, sym_line_comment, sym_block_comment, - [68066] = 5, + [67944] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_DOT_DOT, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4942), 1, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2242), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3152), 1, + sym_field_declaration, + STATE(3609), 1, + sym_visibility_modifier, STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68090] = 5, + [67982] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_DOT_DOT, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4944), 1, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2225), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68114] = 7, + [68020] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_SEMI, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(680), 1, - sym_declaration_list, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4946), 1, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2225), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68142] = 5, + [68058] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_DOT_DOT, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4948), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3347), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68166] = 5, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, + ACTIONS(3366), 1, anon_sym_DOT_DOT, STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 8, + ACTIONS(3368), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -168589,6086 +169040,6078 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [68190] = 10, + [68114] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_PLUS, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4555), 1, + ACTIONS(4660), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_BANG, + ACTIONS(4668), 1, anon_sym_DOT_DOT, - ACTIONS(4585), 1, + ACTIONS(4950), 1, anon_sym_COLON_COLON, - ACTIONS(4557), 2, + ACTIONS(4670), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2163), 2, sym_line_comment, sym_block_comment, - [68224] = 7, + ACTIONS(4513), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [68146] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4836), 1, + sym_identifier, ACTIONS(4952), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2242), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3152), 1, + sym_field_declaration, + STATE(3609), 1, + sym_visibility_modifier, STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68252] = 7, + [68184] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, ACTIONS(4954), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3370), 4, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68216] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(4956), 1, + anon_sym_SEMI, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1085), 1, + STATE(738), 1, sym_declaration_list, - STATE(2165), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(3467), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68280] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4920), 1, - anon_sym_PLUS, - STATE(2149), 1, - aux_sym_trait_bounds_repeat1, - STATE(2166), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4958), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68306] = 9, + [68244] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, ACTIONS(4960), 1, anon_sym_for, - STATE(1955), 1, + STATE(1958), 1, sym_type_arguments, - STATE(1975), 1, + STATE(1963), 1, sym_parameters, STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3370), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68338] = 9, + [68276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4962), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, + ACTIONS(3378), 1, + anon_sym_DOT_DOT, STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68370] = 6, + ACTIONS(3380), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [68300] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_PLUS, - STATE(2149), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4728), 1, + sym_identifier, + ACTIONS(4732), 1, + anon_sym_DOT_DOT, + ACTIONS(4736), 1, + sym_integer_literal, + STATE(1448), 1, + sym_attribute_item, + STATE(2445), 1, + aux_sym_enum_variant_list_repeat1, STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(4958), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68396] = 7, + STATE(3256), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68334] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(4966), 1, - anon_sym_SEMI, - STATE(1112), 1, - sym_declaration_list, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4962), 1, + anon_sym_RBRACE, + STATE(1448), 1, + sym_attribute_item, + STATE(2225), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68424] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_PLUS, - STATE(2149), 1, - aux_sym_trait_bounds_repeat1, - STATE(2171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4958), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68450] = 12, + [68372] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(4826), 1, sym_identifier, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - ACTIONS(4970), 1, + ACTIONS(4964), 1, anon_sym_RBRACE, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2198), 1, + STATE(2225), 1, aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, + STATE(3300), 1, sym_enum_variant, - STATE(3612), 1, + STATE(3483), 1, sym_visibility_modifier, + STATE(2171), 2, + sym_line_comment, + sym_block_comment, + [68410] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4966), 1, + anon_sym_SEMI, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_field_declaration_list, + STATE(2259), 1, + sym_type_parameters, + STATE(2923), 1, + sym_ordered_field_declaration_list, + STATE(3155), 1, + sym_where_clause, STATE(2172), 2, sym_line_comment, sym_block_comment, - [68488] = 7, + [68448] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, + ACTIONS(4019), 1, anon_sym_LT2, - ACTIONS(4972), 1, + ACTIONS(4970), 1, anon_sym_COLON_COLON, - STATE(1087), 1, + STATE(1632), 1, sym_type_arguments, STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(3467), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68516] = 12, + [68476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4974), 1, - anon_sym_SEMI, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1151), 1, - sym_field_declaration_list, - STATE(2260), 1, - sym_type_parameters, - STATE(2810), 1, - sym_ordered_field_declaration_list, - STATE(3277), 1, - sym_where_clause, + ACTIONS(3335), 1, + anon_sym_DOT_DOT, STATE(2174), 2, sym_line_comment, sym_block_comment, - [68554] = 9, + ACTIONS(3337), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [68500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(3358), 1, + anon_sym_DOT_DOT, + STATE(2175), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3360), 8, anon_sym_LPAREN, - ACTIONS(4503), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [68524] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3299), 1, anon_sym_LT2, - ACTIONS(4978), 1, - anon_sym_for, - STATE(1955), 1, + ACTIONS(4972), 1, + anon_sym_COLON_COLON, + STATE(1369), 1, sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2175), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68586] = 12, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68552] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - ACTIONS(4980), 1, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(4974), 1, anon_sym_RBRACE, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2198), 1, + STATE(2242), 1, aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, + STATE(3152), 1, + sym_field_declaration, + STATE(3609), 1, sym_visibility_modifier, - STATE(2176), 2, - sym_line_comment, - sym_block_comment, - [68624] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4628), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [68656] = 12, + [68590] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - ACTIONS(4874), 1, + ACTIONS(4836), 1, sym_identifier, - ACTIONS(4982), 1, + ACTIONS(4976), 1, anon_sym_RBRACE, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2214), 1, + STATE(2242), 1, aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, + STATE(3152), 1, sym_field_declaration, - STATE(3407), 1, + STATE(3609), 1, sym_visibility_modifier, STATE(2178), 2, sym_line_comment, sym_block_comment, - [68694] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [68628] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4984), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(4978), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2179), 2, sym_line_comment, sym_block_comment, - [68732] = 12, + ACTIONS(4513), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [68660] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - ACTIONS(4874), 1, + ACTIONS(4836), 1, sym_identifier, - ACTIONS(4986), 1, + ACTIONS(4980), 1, anon_sym_RBRACE, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2214), 1, + STATE(2242), 1, aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, + STATE(3152), 1, sym_field_declaration, - STATE(3407), 1, + STATE(3609), 1, sym_visibility_modifier, STATE(2180), 2, sym_line_comment, sym_block_comment, - [68770] = 7, + [68698] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(4988), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, + ACTIONS(4984), 1, + anon_sym_PLUS, + STATE(2192), 1, + aux_sym_trait_bounds_repeat1, STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68798] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(4982), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68724] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4990), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4968), 1, + anon_sym_LBRACE, + ACTIONS(4986), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_field_declaration_list, + STATE(2309), 1, + sym_type_parameters, + STATE(3025), 1, + sym_ordered_field_declaration_list, + STATE(3316), 1, + sym_where_clause, STATE(2182), 2, sym_line_comment, sym_block_comment, - [68836] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [68762] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, + ACTIONS(4529), 1, + anon_sym_PIPE, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4636), 1, + anon_sym_COLON_COLON, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2183), 2, sym_line_comment, sym_block_comment, - [68874] = 7, + ACTIONS(3370), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [68794] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4994), 1, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4630), 1, anon_sym_COLON_COLON, - STATE(1615), 1, - sym_type_arguments, + ACTIONS(4988), 1, + anon_sym_RBRACK, + ACTIONS(3370), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4529), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68902] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [68826] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4996), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, + ACTIONS(4991), 1, + anon_sym_PLUS, + STATE(2192), 1, + aux_sym_trait_bounds_repeat1, STATE(2185), 2, sym_line_comment, sym_block_comment, - [68940] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4998), 1, - anon_sym_LPAREN, - ACTIONS(5003), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, + ACTIONS(4982), 7, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3404), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - ACTIONS(5001), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2186), 3, - sym_line_comment, - sym_block_comment, - aux_sym_macro_definition_repeat1, - [68972] = 12, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68852] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5009), 1, - anon_sym_SEMI, - STATE(644), 1, - sym_field_declaration_list, - STATE(2259), 1, - sym_type_parameters, - STATE(2888), 1, - sym_ordered_field_declaration_list, - STATE(3314), 1, - sym_where_clause, - STATE(2187), 2, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4993), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, + STATE(2186), 2, sym_line_comment, sym_block_comment, - [69010] = 11, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68884] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4628), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2188), 2, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4995), 1, + anon_sym_SEMI, + STATE(605), 1, + sym_declaration_list, + STATE(2187), 2, sym_line_comment, sym_block_comment, - [69046] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68912] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2189), 2, + ACTIONS(4997), 1, + anon_sym_PLUS, + STATE(2192), 1, + aux_sym_trait_bounds_repeat1, + STATE(2188), 2, sym_line_comment, sym_block_comment, - [69084] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(4982), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68938] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(5013), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2190), 2, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4999), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, + STATE(2189), 2, sym_line_comment, sym_block_comment, - [69122] = 9, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68970] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4517), 1, + anon_sym_LT2, + ACTIONS(4529), 1, + anon_sym_PIPE, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4533), 1, + anon_sym_BANG, + ACTIONS(4535), 1, anon_sym_DOT_DOT, - ACTIONS(5015), 1, + ACTIONS(4636), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + STATE(1955), 1, + sym_type_arguments, + ACTIONS(4537), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2191), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [69154] = 9, + [69006] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5017), 1, + ACTIONS(5001), 1, anon_sym_for, - STATE(1955), 1, + STATE(1958), 1, sym_type_arguments, - STATE(1975), 1, + STATE(1963), 1, sym_parameters, - STATE(2192), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3370), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69186] = 9, + [69038] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5019), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2193), 2, + ACTIONS(4984), 1, + anon_sym_PLUS, + STATE(2201), 1, + aux_sym_trait_bounds_repeat1, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(5003), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [69218] = 9, + [69064] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5021), 1, + ACTIONS(5005), 1, anon_sym_for, - STATE(1955), 1, + STATE(1958), 1, sym_type_arguments, - STATE(1975), 1, + STATE(1963), 1, sym_parameters, - STATE(2194), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3370), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69250] = 12, + [69096] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4944), 1, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(4934), 1, anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4976), 1, - anon_sym_LBRACE, - ACTIONS(5023), 1, + ACTIONS(5007), 1, anon_sym_SEMI, - STATE(1105), 1, + STATE(1248), 1, sym_field_declaration_list, - STATE(2273), 1, + STATE(2314), 1, sym_type_parameters, - STATE(3049), 1, + STATE(3054), 1, sym_ordered_field_declaration_list, - STATE(3324), 1, + STATE(3356), 1, sym_where_clause, - STATE(2195), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - [69288] = 11, + [69134] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5025), 1, - anon_sym_SEMI, - ACTIONS(5027), 1, + ACTIONS(5009), 1, + anon_sym_LPAREN, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, anon_sym_LBRACE, - ACTIONS(5029), 1, - anon_sym_DASH_GT, - STATE(687), 1, - sym_block, - STATE(2442), 1, - sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2196), 2, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(3492), 1, + sym_macro_rule, + ACTIONS(5012), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2195), 3, sym_line_comment, sym_block_comment, - [69323] = 11, + aux_sym_macro_definition_repeat1, + [69166] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5031), 1, - anon_sym_SEMI, - ACTIONS(5033), 1, - anon_sym_DASH_GT, - STATE(524), 1, - sym_block, - STATE(2487), 1, - sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2197), 2, + ACTIONS(3370), 1, + anon_sym_PLUS, + ACTIONS(4529), 1, + anon_sym_PIPE, + ACTIONS(4531), 1, + anon_sym_COLON, + ACTIONS(4535), 1, + anon_sym_DOT_DOT, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4537), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4988), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2196), 2, sym_line_comment, sym_block_comment, - [69358] = 11, + [69200] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, + ACTIONS(4836), 1, + sym_identifier, + ACTIONS(5020), 1, + anon_sym_RBRACE, + STATE(1448), 1, sym_attribute_item, - STATE(3230), 1, - sym_enum_variant, - STATE(3612), 1, + STATE(2242), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3152), 1, + sym_field_declaration, + STATE(3609), 1, sym_visibility_modifier, + STATE(2197), 2, + sym_line_comment, + sym_block_comment, + [69238] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5022), 1, + anon_sym_SEMI, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1133), 1, + sym_declaration_list, STATE(2198), 2, sym_line_comment, sym_block_comment, - [69393] = 4, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5026), 1, + anon_sym_SEMI, + STATE(1323), 1, + sym_declaration_list, STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3467), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69414] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [69294] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3027), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5028), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, + STATE(1963), 1, + sym_parameters, STATE(2200), 2, sym_line_comment, sym_block_comment, - [69449] = 11, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5037), 1, - anon_sym_SEMI, - ACTIONS(5039), 1, + ACTIONS(5032), 1, anon_sym_PLUS, - STATE(574), 1, - sym_block, - STATE(2456), 1, - sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2201), 2, + STATE(2201), 3, sym_line_comment, sym_block_comment, - [69484] = 11, + aux_sym_trait_bounds_repeat1, + ACTIONS(5030), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69350] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5035), 1, + anon_sym_SEMI, + ACTIONS(5037), 1, anon_sym_LBRACE, ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_SEMI, - STATE(751), 1, + anon_sym_DASH_GT, + STATE(767), 1, sym_block, - STATE(2465), 1, + STATE(2511), 1, sym_where_clause, - STATE(3615), 1, + STATE(3633), 1, sym_label, STATE(2202), 2, sym_line_comment, sym_block_comment, - [69519] = 11, + [69385] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + STATE(1448), 1, + sym_attribute_item, + STATE(2225), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + [69420] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, + ACTIONS(5041), 1, + anon_sym_SEMI, ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1106), 1, - sym_declaration_list, - STATE(2352), 1, - sym_type_parameters, - STATE(2583), 1, - sym_trait_bounds, - STATE(3327), 1, + anon_sym_DASH_GT, + STATE(744), 1, + sym_block, + STATE(2516), 1, sym_where_clause, - STATE(2203), 2, + STATE(3633), 1, + sym_label, + STATE(2204), 2, sym_line_comment, sym_block_comment, - [69554] = 11, + [69455] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, + ACTIONS(4958), 1, + anon_sym_LBRACE, ACTIONS(5045), 1, - anon_sym_LT, + anon_sym_COLON, ACTIONS(5047), 1, - anon_sym_SEMI, - ACTIONS(5049), 1, - anon_sym_EQ, - STATE(2353), 1, + anon_sym_LT, + STATE(717), 1, + sym_declaration_list, + STATE(2384), 1, sym_type_parameters, - STATE(2966), 1, + STATE(2701), 1, sym_trait_bounds, - STATE(3640), 1, + STATE(3283), 1, sym_where_clause, - STATE(2204), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - [69589] = 11, + [69490] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - STATE(1405), 1, + ACTIONS(4836), 1, + sym_identifier, + STATE(1448), 1, sym_attribute_item, - STATE(2198), 1, + STATE(2242), 1, aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, + STATE(3152), 1, + sym_field_declaration, + STATE(3609), 1, sym_visibility_modifier, - STATE(2205), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - [69624] = 10, + [69525] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5049), 1, + anon_sym_SEMI, ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5053), 1, - anon_sym_RBRACE, - ACTIONS(5055), 1, - anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - STATE(2206), 2, + anon_sym_DASH_GT, + STATE(759), 1, + sym_block, + STATE(2527), 1, + sym_where_clause, + STATE(3633), 1, + sym_label, + STATE(2207), 2, sym_line_comment, sym_block_comment, - STATE(2901), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69657] = 11, + [69560] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, + ACTIONS(5053), 1, anon_sym_SEMI, - ACTIONS(5063), 1, - anon_sym_DASH_GT, - STATE(597), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(573), 1, sym_block, - STATE(2413), 1, + STATE(2426), 1, sym_where_clause, - STATE(3615), 1, + STATE(3633), 1, sym_label, - STATE(2207), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - [69692] = 11, + [69595] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, anon_sym_LT, - STATE(636), 1, + STATE(1267), 1, sym_declaration_list, - STATE(2374), 1, + STATE(2414), 1, sym_type_parameters, - STATE(2646), 1, + STATE(2671), 1, sym_trait_bounds, - STATE(3339), 1, + STATE(3098), 1, sym_where_clause, - STATE(2208), 2, - sym_line_comment, - sym_block_comment, - [69727] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5065), 1, - anon_sym_RBRACE, - ACTIONS(5067), 1, - anon_sym_COMMA, STATE(2209), 2, sym_line_comment, sym_block_comment, - STATE(2776), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69760] = 10, + [69630] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, + anon_sym_LT, ACTIONS(5057), 1, - anon_sym_ref, + anon_sym_SEMI, ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5069), 1, - anon_sym_RBRACE, - ACTIONS(5071), 1, - anon_sym_COMMA, + anon_sym_EQ, + STATE(2368), 1, + sym_type_parameters, + STATE(3060), 1, + sym_trait_bounds, + STATE(3452), 1, + sym_where_clause, STATE(2210), 2, sym_line_comment, sym_block_comment, - STATE(2777), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69793] = 11, + [69665] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5073), 1, - anon_sym_SEMI, - ACTIONS(5075), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5077), 1, - anon_sym_DASH_GT, - STATE(1124), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_SEMI, + STATE(584), 1, sym_block, - STATE(2424), 1, + STATE(2442), 1, sym_where_clause, - STATE(3618), 1, + STATE(3633), 1, sym_label, STATE(2211), 2, sym_line_comment, sym_block_comment, - [69828] = 11, + [69700] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1144), 1, - sym_declaration_list, - STATE(2386), 1, - sym_type_parameters, - STATE(2554), 1, - sym_trait_bounds, - STATE(3242), 1, - sym_where_clause, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5065), 1, + anon_sym_RBRACE, + ACTIONS(5067), 1, + anon_sym_COMMA, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, STATE(2212), 2, sym_line_comment, sym_block_comment, - [69863] = 11, - ACTIONS(69), 1, - anon_sym_pub, + STATE(2793), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69733] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, sym_identifier, - ACTIONS(4870), 1, - sym_crate, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3031), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, + ACTIONS(5073), 1, + anon_sym_RBRACE, + ACTIONS(5075), 1, + anon_sym_COMMA, STATE(2213), 2, sym_line_comment, sym_block_comment, - [69898] = 11, - ACTIONS(69), 1, - anon_sym_pub, + STATE(2796), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69766] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3115), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, + anon_sym_LT, + STATE(721), 1, + sym_declaration_list, + STATE(2361), 1, + sym_type_parameters, + STATE(2631), 1, + sym_trait_bounds, + STATE(3173), 1, + sym_where_clause, STATE(2214), 2, sym_line_comment, sym_block_comment, - [69933] = 11, + [69801] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, + anon_sym_LT, + ACTIONS(5077), 1, anon_sym_SEMI, - ACTIONS(5081), 1, - anon_sym_DASH_GT, - STATE(1165), 1, - sym_block, - STATE(2434), 1, + ACTIONS(5079), 1, + anon_sym_EQ, + STATE(2350), 1, + sym_type_parameters, + STATE(2979), 1, + sym_trait_bounds, + STATE(3407), 1, sym_where_clause, - STATE(3618), 1, - sym_label, STATE(2215), 2, sym_line_comment, sym_block_comment, - [69968] = 11, + [69836] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5083), 1, + ACTIONS(5081), 1, anon_sym_SEMI, + ACTIONS(5083), 1, + anon_sym_LBRACE, ACTIONS(5085), 1, anon_sym_DASH_GT, - STATE(1197), 1, + STATE(1192), 1, sym_block, - STATE(2438), 1, + STATE(2519), 1, sym_where_clause, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2216), 2, sym_line_comment, sym_block_comment, - [70003] = 11, + [69871] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, anon_sym_LT, - STATE(1206), 1, + STATE(1222), 1, sym_declaration_list, - STATE(2311), 1, + STATE(2345), 1, sym_type_parameters, - STATE(2711), 1, + STATE(2661), 1, sym_trait_bounds, - STATE(3217), 1, + STATE(3178), 1, sym_where_clause, STATE(2217), 2, sym_line_comment, sym_block_comment, - [70038] = 11, + [69906] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4844), 1, + anon_sym_BANG, + STATE(2218), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69931] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, ACTIONS(5087), 1, anon_sym_SEMI, - STATE(1216), 1, + ACTIONS(5089), 1, + anon_sym_DASH_GT, + STATE(1254), 1, sym_block, - STATE(2443), 1, + STATE(2429), 1, sym_where_clause, - STATE(3618), 1, + STATE(3636), 1, sym_label, - STATE(2218), 2, - sym_line_comment, - sym_block_comment, - [70073] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70094] = 4, + [69966] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4555), 1, + anon_sym_trait, + ACTIONS(5091), 1, + anon_sym_impl, STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70115] = 11, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69991] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, + ACTIONS(5093), 1, anon_sym_SEMI, - ACTIONS(5091), 1, + ACTIONS(5095), 1, anon_sym_DASH_GT, - STATE(1245), 1, + STATE(1287), 1, sym_block, - STATE(2448), 1, + STATE(2436), 1, sym_where_clause, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2221), 2, sym_line_comment, sym_block_comment, - [70150] = 11, + [70026] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5093), 1, - anon_sym_SEMI, - ACTIONS(5095), 1, - anon_sym_DASH_GT, - STATE(1259), 1, - sym_block, - STATE(2449), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, + anon_sym_LT, + STATE(1299), 1, + sym_declaration_list, + STATE(2377), 1, + sym_type_parameters, + STATE(2707), 1, + sym_trait_bounds, + STATE(3285), 1, sym_where_clause, - STATE(3618), 1, - sym_label, STATE(2222), 2, sym_line_comment, sym_block_comment, - [70185] = 11, + [70061] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(5100), 1, + anon_sym_fn, + ACTIONS(5102), 1, + anon_sym_extern, + STATE(2365), 1, + sym_extern_modifier, + STATE(2223), 3, + sym_line_comment, + sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(5097), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [70088] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5097), 1, + ACTIONS(5105), 1, anon_sym_SEMI, - ACTIONS(5099), 1, - anon_sym_DASH_GT, - STATE(729), 1, + STATE(1320), 1, sym_block, - STATE(2423), 1, + STATE(2443), 1, sym_where_clause, - STATE(3615), 1, + STATE(3636), 1, sym_label, - STATE(2223), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [70220] = 4, + [70123] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2224), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, + STATE(3111), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70241] = 11, + [70158] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5101), 1, - anon_sym_SEMI, - STATE(1267), 1, - sym_block, - STATE(2451), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5047), 1, + anon_sym_LT, + STATE(666), 1, + sym_declaration_list, + STATE(2317), 1, + sym_type_parameters, + STATE(2560), 1, + sym_trait_bounds, + STATE(3077), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2225), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - [70276] = 11, + [70193] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5103), 1, + ACTIONS(5107), 1, anon_sym_SEMI, - STATE(1300), 1, + ACTIONS(5109), 1, + anon_sym_DASH_GT, + STATE(1375), 1, sym_block, - STATE(2454), 1, + STATE(2450), 1, sym_where_clause, - STATE(3618), 1, + STATE(3636), 1, sym_label, - STATE(2226), 2, - sym_line_comment, - sym_block_comment, - [70311] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70332] = 4, + [70228] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, + STATE(2781), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70353] = 11, + [70263] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5105), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5111), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(594), 1, sym_block, - STATE(2457), 1, + STATE(2468), 1, sym_where_clause, - STATE(3618), 1, + STATE(3633), 1, sym_label, STATE(2229), 2, sym_line_comment, sym_block_comment, - [70388] = 11, + [70298] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5107), 1, + ACTIONS(5113), 1, anon_sym_SEMI, - STATE(1348), 1, + STATE(1074), 1, sym_block, - STATE(2458), 1, + STATE(2453), 1, sym_where_clause, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2230), 2, sym_line_comment, sym_block_comment, - [70423] = 11, + [70333] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5115), 1, anon_sym_SEMI, - STATE(1358), 1, + STATE(498), 1, sym_block, - STATE(2459), 1, + STATE(2435), 1, sym_where_clause, - STATE(3618), 1, + STATE(3633), 1, sym_label, STATE(2231), 2, sym_line_comment, sym_block_comment, - [70458] = 11, + [70368] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(739), 1, - sym_declaration_list, - STATE(2314), 1, - sym_type_parameters, - STATE(2666), 1, - sym_trait_bounds, - STATE(3176), 1, + ACTIONS(5117), 1, + anon_sym_SEMI, + STATE(1108), 1, + sym_block, + STATE(2457), 1, sym_where_clause, + STATE(3636), 1, + sym_label, STATE(2232), 2, sym_line_comment, sym_block_comment, - [70493] = 6, + [70403] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - STATE(2199), 1, - sym_string_literal, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5121), 1, + anon_sym_DASH_GT, + STATE(1117), 1, + sym_block, + STATE(2458), 1, + sym_where_clause, + STATE(3636), 1, + sym_label, STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70518] = 11, + [70438] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5111), 1, + ACTIONS(5123), 1, anon_sym_SEMI, - ACTIONS(5113), 1, - anon_sym_DASH_GT, - STATE(677), 1, + STATE(1147), 1, sym_block, - STATE(2507), 1, + STATE(2459), 1, sym_where_clause, - STATE(3615), 1, + STATE(3636), 1, sym_label, STATE(2234), 2, sym_line_comment, sym_block_comment, - [70553] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2235), 2, - sym_line_comment, - sym_block_comment, - [70588] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4888), 1, - anon_sym_BANG, - STATE(2236), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70613] = 11, + [70473] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5115), 1, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5125), 1, anon_sym_SEMI, - STATE(515), 1, + STATE(1157), 1, sym_block, - STATE(2484), 1, + STATE(2460), 1, sym_where_clause, - STATE(3615), 1, + STATE(3636), 1, sym_label, - STATE(2237), 2, - sym_line_comment, - sym_block_comment, - [70648] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4573), 1, - anon_sym_trait, - ACTIONS(5117), 1, - anon_sym_impl, - STATE(2238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70673] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_fn, - ACTIONS(5121), 1, - anon_sym_extern, - STATE(2245), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2239), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(4523), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70702] = 11, + [70508] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5123), 1, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, anon_sym_SEMI, - STATE(553), 1, + STATE(1167), 1, sym_block, - STATE(2441), 1, + STATE(2462), 1, sym_where_clause, - STATE(3615), 1, + STATE(3636), 1, sym_label, - STATE(2240), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - [70737] = 11, + [70543] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(595), 1, - sym_declaration_list, - STATE(2376), 1, - sym_type_parameters, - STATE(2521), 1, - sym_trait_bounds, - STATE(3071), 1, + ACTIONS(5129), 1, + anon_sym_SEMI, + ACTIONS(5131), 1, + anon_sym_DASH_GT, + STATE(618), 1, + sym_block, + STATE(2483), 1, sym_where_clause, - STATE(2241), 2, + STATE(3633), 1, + sym_label, + STATE(2237), 2, sym_line_comment, sym_block_comment, - [70772] = 10, + [70578] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_PIPE, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5125), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2242), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - [70805] = 11, + ACTIONS(5133), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70599] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5127), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - STATE(564), 1, + STATE(695), 1, sym_block, - STATE(2418), 1, + STATE(2451), 1, sym_where_clause, - STATE(3615), 1, + STATE(3633), 1, sym_label, - STATE(2243), 2, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + [70634] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_SEMI, + ACTIONS(5139), 1, + anon_sym_DASH_GT, + STATE(607), 1, + sym_block, + STATE(2465), 1, + sym_where_clause, + STATE(3633), 1, + sym_label, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [70840] = 11, + [70669] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - STATE(1061), 1, + ACTIONS(4836), 1, + sym_identifier, + STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2839), 1, - sym_enum_variant, - STATE(3612), 1, + STATE(2864), 1, + sym_field_declaration, + STATE(3609), 1, sym_visibility_modifier, - STATE(2244), 2, - sym_line_comment, - sym_block_comment, - [70875] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5132), 1, - anon_sym_fn, - ACTIONS(5134), 1, - anon_sym_extern, - STATE(2387), 1, - sym_extern_modifier, - STATE(2245), 3, + STATE(2241), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5129), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70902] = 11, + [70704] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4870), 1, + ACTIONS(4832), 1, sym_crate, - ACTIONS(4874), 1, + ACTIONS(4836), 1, sym_identifier, - STATE(1061), 1, + STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, + STATE(1448), 1, sym_attribute_item, - STATE(2849), 1, + STATE(3190), 1, sym_field_declaration, - STATE(3407), 1, + STATE(3609), 1, sym_visibility_modifier, - STATE(2246), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - [70937] = 10, + [70739] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(4513), 1, + anon_sym_PIPE, + ACTIONS(4515), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(5139), 1, - anon_sym_COMMA, - STATE(2247), 2, + ACTIONS(5141), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2243), 2, sym_line_comment, sym_block_comment, - STATE(2857), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70970] = 11, + [70772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5141), 1, - anon_sym_SEMI, - ACTIONS(5143), 1, - anon_sym_DASH_GT, - STATE(652), 1, - sym_block, - STATE(2416), 1, - sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2248), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - [71005] = 11, + ACTIONS(5030), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - ACTIONS(5145), 1, - anon_sym_SEMI, - ACTIONS(5147), 1, - anon_sym_EQ, - STATE(2388), 1, - sym_type_parameters, - STATE(2911), 1, - sym_trait_bounds, - STATE(3521), 1, - sym_where_clause, - STATE(2249), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - [71040] = 11, + ACTIONS(5030), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5149), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_block, - STATE(2494), 1, - sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2250), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - [71075] = 11, + ACTIONS(5030), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70835] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5030), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4946), 1, anon_sym_where, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5151), 1, - anon_sym_SEMI, - ACTIONS(5153), 1, - anon_sym_DASH_GT, - STATE(1309), 1, - sym_block, - STATE(2455), 1, - sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2251), 2, + [70856] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [71110] = 9, + ACTIONS(5030), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70877] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, sym_identifier, - ACTIONS(5057), 1, + ACTIONS(5069), 1, anon_sym_ref, - ACTIONS(5059), 1, + ACTIONS(5071), 1, sym_mutable_specifier, - ACTIONS(5155), 1, + ACTIONS(5143), 1, anon_sym_RBRACE, - STATE(2252), 2, + ACTIONS(5145), 1, + anon_sym_COMMA, + STATE(2249), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, + STATE(3061), 2, sym_field_pattern, sym_remaining_field_pattern, - [71140] = 10, + [70910] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5163), 1, - anon_sym_RBRACE, - STATE(2298), 1, - aux_sym_macro_definition_repeat1, - STATE(3322), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2253), 2, + ACTIONS(5147), 1, + anon_sym_fn, + ACTIONS(5149), 1, + anon_sym_extern, + STATE(2223), 1, + aux_sym_function_modifiers_repeat1, + STATE(2365), 1, + sym_extern_modifier, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [71172] = 10, + ACTIONS(4541), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [70939] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5165), 1, - anon_sym_RPAREN, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3144), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2254), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4826), 1, + sym_identifier, + ACTIONS(4832), 1, + sym_crate, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, + STATE(2912), 1, + sym_enum_variant, + STATE(3483), 1, + sym_visibility_modifier, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [71204] = 10, + [70974] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3154), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2255), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4832), 1, + sym_crate, + ACTIONS(4836), 1, + sym_identifier, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, + STATE(2937), 1, + sym_field_declaration, + STATE(3609), 1, + sym_visibility_modifier, + STATE(2252), 2, sym_line_comment, sym_block_comment, - [71236] = 5, + [71009] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5169), 1, - sym_identifier, - STATE(2256), 2, + ACTIONS(1317), 1, + aux_sym_string_literal_token1, + STATE(2238), 1, + sym_string_literal, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, + ACTIONS(4778), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71258] = 10, + [71034] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5171), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, + ACTIONS(5151), 1, anon_sym_RBRACE, - STATE(2301), 1, - aux_sym_macro_definition_repeat1, - STATE(3097), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2257), 2, + ACTIONS(5153), 1, + anon_sym_COMMA, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [71290] = 5, + STATE(2810), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71067] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5173), 1, - sym_identifier, - STATE(2258), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5155), 1, + anon_sym_SEMI, + STATE(535), 1, + sym_block, + STATE(2439), 1, + sym_where_clause, + STATE(3633), 1, + sym_label, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71312] = 10, + [71102] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5175), 1, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, anon_sym_SEMI, - STATE(735), 1, - sym_field_declaration_list, - STATE(2924), 1, - sym_ordered_field_declaration_list, - STATE(3118), 1, + ACTIONS(5159), 1, + anon_sym_DASH_GT, + STATE(544), 1, + sym_block, + STATE(2475), 1, sym_where_clause, - STATE(2259), 2, + STATE(3633), 1, + sym_label, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [71344] = 10, + [71137] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4946), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5177), 1, + ACTIONS(5161), 1, anon_sym_SEMI, - STATE(1203), 1, - sym_field_declaration_list, - STATE(2854), 1, - sym_ordered_field_declaration_list, - STATE(3197), 1, + ACTIONS(5163), 1, + anon_sym_DASH_GT, + STATE(1353), 1, + sym_block, + STATE(2448), 1, sym_where_clause, - STATE(2260), 2, + STATE(3636), 1, + sym_label, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [71376] = 10, + [71172] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(5179), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, + ACTIONS(5165), 1, + anon_sym_RBRACE, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + STATE(3160), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71202] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5183), 1, - anon_sym_RBRACK, - ACTIONS(5185), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4968), 1, anon_sym_LBRACE, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3581), 1, - sym_delim_token_tree, - STATE(2261), 2, + ACTIONS(5167), 1, + anon_sym_SEMI, + STATE(669), 1, + sym_field_declaration_list, + STATE(2915), 1, + sym_ordered_field_declaration_list, + STATE(3229), 1, + sym_where_clause, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [71408] = 9, + [71234] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, sym_identifier, - ACTIONS(5057), 1, + ACTIONS(5069), 1, anon_sym_ref, - ACTIONS(5059), 1, + ACTIONS(5071), 1, sym_mutable_specifier, - ACTIONS(5189), 1, + ACTIONS(5169), 1, anon_sym_RBRACE, - STATE(2262), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, + STATE(3160), 2, sym_field_pattern, sym_remaining_field_pattern, - [71438] = 9, + [71264] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, sym_identifier, - ACTIONS(5057), 1, + ACTIONS(5069), 1, anon_sym_ref, - ACTIONS(5059), 1, + ACTIONS(5071), 1, sym_mutable_specifier, - ACTIONS(5191), 1, + ACTIONS(5171), 1, anon_sym_RBRACE, - STATE(2263), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, + STATE(3160), 2, sym_field_pattern, sym_remaining_field_pattern, - [71468] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5165), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3146), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2264), 2, - sym_line_comment, - sym_block_comment, - [71500] = 5, + [71294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, + ACTIONS(5173), 1, sym_identifier, - STATE(2265), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, + ACTIONS(4748), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71522] = 9, + [71316] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5197), 1, - anon_sym_STAR, - STATE(2819), 1, - sym_use_list, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, - STATE(2266), 2, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5181), 1, + anon_sym_RBRACE, + STATE(2195), 1, + aux_sym_macro_definition_repeat1, + STATE(3226), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [71552] = 10, + [71348] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_RPAREN, - STATE(2186), 1, + ACTIONS(5183), 1, + anon_sym_RBRACE, + STATE(2195), 1, aux_sym_macro_definition_repeat1, - STATE(3150), 1, + STATE(3227), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2267), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - [71584] = 10, + [71380] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4756), 1, + ACTIONS(4762), 1, anon_sym_COLON_COLON, - ACTIONS(5179), 1, + ACTIONS(5185), 1, anon_sym_LPAREN, - ACTIONS(5181), 1, + ACTIONS(5187), 1, anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - ACTIONS(5199), 1, + ACTIONS(5189), 1, anon_sym_RBRACK, - ACTIONS(5201), 1, + ACTIONS(5191), 1, + anon_sym_LBRACE, + ACTIONS(5193), 1, anon_sym_EQ, - STATE(3503), 1, + STATE(3582), 1, sym_delim_token_tree, - STATE(2268), 2, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + [71412] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5195), 1, + anon_sym_SEMI, + STATE(1295), 1, + sym_field_declaration_list, + STATE(2945), 1, + sym_ordered_field_declaration_list, + STATE(3277), 1, + sym_where_clause, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [71616] = 9, + [71444] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, sym_identifier, - ACTIONS(5057), 1, + ACTIONS(5069), 1, anon_sym_ref, - ACTIONS(5059), 1, + ACTIONS(5071), 1, sym_mutable_specifier, - ACTIONS(5203), 1, + ACTIONS(5197), 1, anon_sym_RBRACE, - STATE(2269), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, + STATE(3160), 2, sym_field_pattern, sym_remaining_field_pattern, - [71646] = 8, + [71474] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, + ACTIONS(5199), 1, + anon_sym_RBRACE, + STATE(2268), 2, + sym_line_comment, + sym_block_comment, + STATE(3160), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71504] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4976), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - ACTIONS(5207), 1, + ACTIONS(5203), 1, anon_sym_EQ, - ACTIONS(5205), 2, + ACTIONS(5201), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2270), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - STATE(3029), 2, + STATE(3072), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [71674] = 10, + [71532] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5209), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, + ACTIONS(5205), 1, anon_sym_RBRACE, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3164), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2271), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [71706] = 10, + STATE(3160), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71562] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(5185), 1, anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5211), 1, - anon_sym_SEMI, - STATE(615), 1, - sym_field_declaration_list, - STATE(2971), 1, - sym_ordered_field_declaration_list, - STATE(3205), 1, - sym_where_clause, - STATE(2272), 2, + ACTIONS(5207), 1, + anon_sym_RBRACK, + ACTIONS(5209), 1, + anon_sym_EQ, + STATE(3480), 1, + sym_delim_token_tree, + STATE(2271), 2, sym_line_comment, sym_block_comment, - [71738] = 10, + [71594] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, + ACTIONS(4930), 1, anon_sym_LPAREN, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, ACTIONS(5213), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_field_declaration_list, - STATE(2803), 1, - sym_ordered_field_declaration_list, - STATE(3225), 1, - sym_where_clause, - STATE(2273), 2, + anon_sym_EQ, + ACTIONS(5211), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [71770] = 10, + STATE(2962), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [71622] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - anon_sym_RPAREN, - STATE(2281), 1, - aux_sym_macro_definition_repeat1, - STATE(3243), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2274), 2, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5217), 1, + anon_sym_STAR, + STATE(2995), 1, + sym_use_list, + STATE(3641), 1, + sym_type_arguments, + ACTIONS(5215), 2, + sym_identifier, + sym_super, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [71802] = 10, + [71652] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - anon_sym_RBRACK, - STATE(2282), 1, - aux_sym_macro_definition_repeat1, - STATE(3244), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2275), 2, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5217), 1, + anon_sym_STAR, + STATE(2995), 1, + sym_use_list, + STATE(3457), 1, + sym_type_arguments, + ACTIONS(5215), 2, + sym_identifier, + sym_super, + STATE(2274), 2, sym_line_comment, sym_block_comment, - [71834] = 10, + [71682] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5219), 1, anon_sym_RPAREN, - STATE(2283), 1, + STATE(2302), 1, aux_sym_macro_definition_repeat1, - STATE(3245), 1, + STATE(3230), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2276), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [71866] = 10, + [71714] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5219), 1, anon_sym_RBRACK, - STATE(2284), 1, + STATE(2304), 1, aux_sym_macro_definition_repeat1, - STATE(3247), 1, + STATE(3233), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2277), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [71898] = 10, + [71746] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5221), 1, anon_sym_RBRACE, - STATE(2186), 1, + STATE(2306), 1, aux_sym_macro_definition_repeat1, - STATE(3147), 1, + STATE(3244), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2278), 2, - sym_line_comment, - sym_block_comment, - [71930] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5197), 1, - anon_sym_STAR, - STATE(2819), 1, - sym_use_list, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, - STATE(2279), 2, - sym_line_comment, - sym_block_comment, - [71960] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5223), 1, - anon_sym_COLON, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5221), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2280), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - [71988] = 10, + [71778] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5227), 1, + ACTIONS(5223), 1, anon_sym_RPAREN, - STATE(2186), 1, + STATE(2308), 1, aux_sym_macro_definition_repeat1, - STATE(3264), 1, + STATE(3247), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2281), 2, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [72020] = 10, + [71810] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5227), 1, + ACTIONS(5223), 1, anon_sym_RBRACK, - STATE(2186), 1, + STATE(2310), 1, aux_sym_macro_definition_repeat1, - STATE(3265), 1, + STATE(3259), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2282), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - [72052] = 10, + [71842] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - anon_sym_RPAREN, - STATE(2186), 1, + ACTIONS(5225), 1, + anon_sym_RBRACE, + STATE(2311), 1, aux_sym_macro_definition_repeat1, - STATE(3266), 1, + STATE(3267), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2283), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [72084] = 10, + [71874] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5229), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3267), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2284), 2, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4850), 1, + anon_sym_COLON_COLON, + ACTIONS(4848), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [72116] = 8, + ACTIONS(4529), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [71900] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5223), 1, + ACTIONS(5229), 1, anon_sym_COLON, ACTIONS(5231), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5221), 2, + ACTIONS(5227), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2285), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [72144] = 7, + [71928] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, + ACTIONS(5233), 1, + anon_sym_RBRACE, + STATE(2283), 2, + sym_line_comment, + sym_block_comment, + STATE(3160), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71958] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4523), 1, anon_sym_DOT_DOT, ACTIONS(5231), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2286), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, + ACTIONS(3370), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [72170] = 7, - ACTIONS(103), 1, + [71984] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4890), 1, - anon_sym_DOT_DOT, - ACTIONS(4894), 1, - anon_sym_COLON_COLON, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2287), 2, + ACTIONS(5235), 1, + aux_sym_line_comment_token1, + ACTIONS(5237), 1, + aux_sym_line_comment_token3, + ACTIONS(5239), 1, + anon_sym_BANG2, + ACTIONS(5241), 1, + anon_sym_SLASH2, + STATE(3358), 1, + sym__outer_line_doc_comment_marker, + STATE(3414), 1, + sym__line_doc_comment_marker, + STATE(3493), 1, + sym__inner_line_doc_comment_marker, + STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72196] = 5, + [72016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5233), 1, - anon_sym_trait, - STATE(2288), 2, + ACTIONS(5243), 1, + sym_identifier, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(4748), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72218] = 8, + [72038] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5237), 1, - anon_sym_COLON, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5235), 2, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5245), 1, + anon_sym_RBRACK, + STATE(2294), 1, + aux_sym_macro_definition_repeat1, + STATE(3263), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(2287), 2, + sym_line_comment, + sym_block_comment, + [72070] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2289), 2, + STATE(2295), 1, + aux_sym_macro_definition_repeat1, + STATE(3264), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [72246] = 9, + [72102] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5241), 1, - anon_sym_RBRACE, - STATE(2290), 2, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5247), 1, + anon_sym_RBRACK, + STATE(2296), 1, + aux_sym_macro_definition_repeat1, + STATE(3265), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(2289), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72276] = 9, + [72134] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5243), 1, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5249), 1, anon_sym_RBRACE, - STATE(2291), 2, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3120), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(2290), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72306] = 10, + [72166] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(2254), 1, + ACTIONS(5251), 1, + anon_sym_RBRACE, + STATE(2264), 1, aux_sym_macro_definition_repeat1, - STATE(3145), 1, + STATE(3121), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, + STATE(2291), 2, + sym_line_comment, + sym_block_comment, + [72198] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + ACTIONS(5185), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_RBRACK, + ACTIONS(5191), 1, + anon_sym_LBRACE, + ACTIONS(5193), 1, + anon_sym_EQ, + STATE(3582), 1, + sym_delim_token_tree, STATE(2292), 2, sym_line_comment, sym_block_comment, - [72338] = 10, + [72230] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_RBRACK, - STATE(2264), 1, + ACTIONS(5253), 1, + anon_sym_RPAREN, + STATE(2195), 1, aux_sym_macro_definition_repeat1, - STATE(3100), 1, + STATE(3278), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, STATE(2293), 2, sym_line_comment, sym_block_comment, - [72370] = 10, + [72262] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5247), 1, - anon_sym_RBRACE, - STATE(2278), 1, + ACTIONS(5253), 1, + anon_sym_RBRACK, + STATE(2195), 1, aux_sym_macro_definition_repeat1, - STATE(3061), 1, + STATE(3279), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, STATE(2294), 2, sym_line_comment, sym_block_comment, - [72402] = 10, + [72294] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5249), 1, + ACTIONS(5255), 1, anon_sym_RPAREN, - STATE(2267), 1, + STATE(2195), 1, aux_sym_macro_definition_repeat1, - STATE(3300), 1, + STATE(3280), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, STATE(2295), 2, sym_line_comment, sym_block_comment, - [72434] = 10, + [72326] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5249), 1, + ACTIONS(5255), 1, anon_sym_RBRACK, - STATE(2255), 1, + STATE(2195), 1, aux_sym_macro_definition_repeat1, - STATE(3219), 1, + STATE(3281), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, STATE(2296), 2, sym_line_comment, sym_block_comment, - [72466] = 10, + [72358] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5251), 1, - anon_sym_RBRACE, - STATE(2271), 1, - aux_sym_macro_definition_repeat1, - STATE(3223), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5229), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5227), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2297), 2, sym_line_comment, sym_block_comment, - [72498] = 10, + [72386] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5253), 1, - anon_sym_RBRACE, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3062), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5257), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2298), 2, sym_line_comment, sym_block_comment, - [72530] = 8, + ACTIONS(3370), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [72412] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, + ACTIONS(4634), 1, + anon_sym_COLON_COLON, + ACTIONS(5185), 1, anon_sym_LPAREN, - ACTIONS(4976), 1, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_RBRACK, + ACTIONS(5191), 1, anon_sym_LBRACE, - ACTIONS(5257), 1, + ACTIONS(5193), 1, anon_sym_EQ, - ACTIONS(5255), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(3582), 1, + sym_delim_token_tree, STATE(2299), 2, sym_line_comment, sym_block_comment, - STATE(3023), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72558] = 7, + [72444] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5259), 1, + ACTIONS(5261), 1, + anon_sym_COLON, + ACTIONS(5263), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(5259), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [72584] = 10, + [72472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5265), 1, + sym_identifier, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4748), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72494] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5261), 1, - anon_sym_RBRACE, - STATE(2186), 1, + ACTIONS(5267), 1, + anon_sym_RPAREN, + STATE(2195), 1, aux_sym_macro_definition_repeat1, - STATE(3063), 1, + STATE(3126), 1, sym_macro_rule, - STATE(3487), 1, + STATE(3372), 1, sym_token_tree_pattern, - STATE(2301), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [72616] = 9, + [72526] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, + ACTIONS(5063), 1, sym_identifier, - ACTIONS(5057), 1, + ACTIONS(5069), 1, anon_sym_ref, - ACTIONS(5059), 1, + ACTIONS(5071), 1, sym_mutable_specifier, - ACTIONS(5263), 1, + ACTIONS(5269), 1, anon_sym_RBRACE, - STATE(2302), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, + STATE(3160), 2, sym_field_pattern, sym_remaining_field_pattern, - [72646] = 10, - ACTIONS(3), 1, + [72556] = 10, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5265), 1, - aux_sym_line_comment_token1, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, ACTIONS(5267), 1, - aux_sym_line_comment_token3, - ACTIONS(5269), 1, - anon_sym_BANG2, - ACTIONS(5271), 1, - anon_sym_SLASH2, - STATE(3395), 1, - sym__outer_line_doc_comment_marker, - STATE(3562), 1, - sym__line_doc_comment_marker, - STATE(3638), 1, - sym__inner_line_doc_comment_marker, - STATE(2303), 2, + anon_sym_RBRACK, + STATE(2195), 1, + aux_sym_macro_definition_repeat1, + STATE(3153), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [72678] = 5, + [72588] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5273), 1, - anon_sym_trait, - STATE(2304), 2, + ACTIONS(5271), 1, + sym_identifier, + STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(4748), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72700] = 10, + [72610] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4758), 1, - anon_sym_COLON_COLON, - ACTIONS(5179), 1, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5181), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(5201), 1, - anon_sym_EQ, - STATE(3503), 1, - sym_delim_token_tree, - STATE(2305), 2, - sym_line_comment, - sym_block_comment, - [72732] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(5201), 1, - anon_sym_EQ, - STATE(3503), 1, - sym_delim_token_tree, + ACTIONS(5273), 1, + anon_sym_RBRACE, + STATE(2195), 1, + aux_sym_macro_definition_repeat1, + STATE(3202), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, STATE(2306), 2, sym_line_comment, sym_block_comment, - [72764] = 7, + [72642] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5225), 1, + ACTIONS(5275), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_RPAREN, + ACTIONS(3370), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [72790] = 5, + [72668] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5275), 1, - sym_identifier, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5277), 1, + anon_sym_RPAREN, + STATE(2195), 1, + aux_sym_macro_definition_repeat1, + STATE(3288), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72812] = 9, + [72700] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5277), 1, - anon_sym_RBRACE, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4968), 1, + anon_sym_LBRACE, + ACTIONS(5279), 1, + anon_sym_SEMI, + STATE(663), 1, + sym_field_declaration_list, + STATE(3047), 1, + sym_ordered_field_declaration_list, + STATE(3338), 1, + sym_where_clause, STATE(2309), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72842] = 9, + [72732] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5279), 1, - anon_sym_SEMI, - STATE(1218), 1, - sym_declaration_list, - STATE(2874), 1, - sym_where_clause, + ACTIONS(5277), 1, + anon_sym_RBRACK, + STATE(2195), 1, + aux_sym_macro_definition_repeat1, + STATE(3302), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, STATE(2310), 2, sym_line_comment, sym_block_comment, - [72871] = 9, + [72764] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1257), 1, - sym_declaration_list, - STATE(2523), 1, - sym_trait_bounds, - STATE(3290), 1, - sym_where_clause, + ACTIONS(5281), 1, + anon_sym_RBRACE, + STATE(2195), 1, + aux_sym_macro_definition_repeat1, + STATE(3341), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, STATE(2311), 2, sym_line_comment, sym_block_comment, - [72900] = 9, + [72796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5281), 1, - anon_sym_SEMI, - STATE(635), 1, - sym_declaration_list, - STATE(2780), 1, - sym_where_clause, + ACTIONS(5283), 1, + anon_sym_trait, STATE(2312), 2, sym_line_comment, sym_block_comment, - [72929] = 9, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, - anon_sym_SEMI, - STATE(504), 1, - sym_declaration_list, - STATE(2940), 1, - sym_where_clause, + ACTIONS(5285), 1, + anon_sym_trait, STATE(2313), 2, sym_line_comment, sym_block_comment, - [72958] = 9, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72840] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4930), 1, + anon_sym_LPAREN, + ACTIONS(4932), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(682), 1, - sym_declaration_list, - STATE(2727), 1, - sym_trait_bounds, - STATE(3294), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5287), 1, + anon_sym_SEMI, + STATE(1206), 1, + sym_field_declaration_list, + STATE(2853), 1, + sym_ordered_field_declaration_list, + STATE(3166), 1, sym_where_clause, STATE(2314), 2, sym_line_comment, sym_block_comment, - [72987] = 6, + [72872] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4960), 1, - anon_sym_for, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LBRACE, + ACTIONS(5245), 1, + anon_sym_RPAREN, + STATE(2293), 1, + aux_sym_macro_definition_repeat1, + STATE(3262), 1, + sym_macro_rule, + STATE(3372), 1, + sym_token_tree_pattern, STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [73010] = 9, + [72904] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym_enum_variant_list, - STATE(2736), 1, - sym_type_parameters, - STATE(3309), 1, - sym_where_clause, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_GT, + ACTIONS(5291), 1, + anon_sym_COMMA, + STATE(2866), 1, + sym_trait_bounds, + STATE(2867), 1, + aux_sym_type_arguments_repeat1, STATE(2316), 2, sym_line_comment, sym_block_comment, - [73039] = 9, + [72933] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5287), 1, - anon_sym_SEMI, - STATE(1100), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(757), 1, sym_declaration_list, - STATE(3045), 1, + STATE(2751), 1, + sym_trait_bounds, + STATE(3296), 1, sym_where_clause, STATE(2317), 2, sym_line_comment, sym_block_comment, - [73068] = 9, + [72962] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5289), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_declaration_list, - STATE(2948), 1, - sym_where_clause, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5063), 1, + sym_identifier, + ACTIONS(5069), 1, + anon_sym_ref, + ACTIONS(5071), 1, + sym_mutable_specifier, STATE(2318), 2, sym_line_comment, sym_block_comment, - [73097] = 9, + STATE(3160), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72989] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4968), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5291), 1, - anon_sym_SEMI, - STATE(1275), 1, - sym_declaration_list, - STATE(2889), 1, + STATE(496), 1, + sym_field_declaration_list, + STATE(2742), 1, + sym_type_parameters, + STATE(3321), 1, sym_where_clause, STATE(2319), 2, sym_line_comment, sym_block_comment, - [73126] = 9, + [73018] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, ACTIONS(5293), 1, anon_sym_SEMI, - STATE(1277), 1, + STATE(1139), 1, sym_declaration_list, - STATE(2890), 1, + STATE(3036), 1, sym_where_clause, STATE(2320), 2, sym_line_comment, sym_block_comment, - [73155] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_DOT_DOT, - STATE(2321), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4670), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73176] = 9, + [73047] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, ACTIONS(5295), 1, anon_sym_SEMI, - STATE(1289), 1, + STATE(1141), 1, sym_declaration_list, - STATE(2892), 1, + STATE(3037), 1, sym_where_clause, + STATE(2321), 2, + sym_line_comment, + sym_block_comment, + [73076] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5297), 1, + anon_sym_GT, + ACTIONS(5299), 1, + anon_sym_COMMA, + STATE(2794), 1, + sym_trait_bounds, + STATE(2833), 1, + aux_sym_type_parameters_repeat1, STATE(2322), 2, sym_line_comment, sym_block_comment, - [73205] = 9, + [73105] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5297), 1, + ACTIONS(5301), 1, anon_sym_SEMI, - STATE(1291), 1, + STATE(565), 1, sym_declaration_list, - STATE(2893), 1, + STATE(2883), 1, sym_where_clause, STATE(2323), 2, sym_line_comment, sym_block_comment, - [73234] = 9, + [73134] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5299), 1, + ACTIONS(5303), 1, anon_sym_SEMI, - STATE(1293), 1, + STATE(567), 1, sym_declaration_list, - STATE(2894), 1, + STATE(2889), 1, sym_where_clause, STATE(2324), 2, sym_line_comment, sym_block_comment, - [73263] = 9, + [73163] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(3589), 2, anon_sym_PLUS, - ACTIONS(5301), 1, - anon_sym_SEMI, - STATE(1295), 1, - sym_declaration_list, - STATE(2895), 1, - sym_where_clause, + anon_sym_DASH_GT, + ACTIONS(4924), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5305), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2325), 2, sym_line_comment, sym_block_comment, - [73292] = 9, + [73186] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5303), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, - STATE(2955), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5308), 1, + anon_sym_if, + STATE(3589), 1, + sym_label, + STATE(1412), 2, + sym_if_expression, + sym_block, STATE(2326), 2, sym_line_comment, sym_block_comment, - [73321] = 9, + [73213] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5305), 1, + ACTIONS(5310), 1, anon_sym_SEMI, - STATE(510), 1, + STATE(506), 1, sym_declaration_list, - STATE(2957), 1, + STATE(2776), 1, sym_where_clause, STATE(2327), 2, sym_line_comment, sym_block_comment, - [73350] = 9, + [73242] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, + ACTIONS(4934), 1, anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(5312), 1, anon_sym_LBRACE, - STATE(1108), 1, - sym_field_declaration_list, - STATE(2682), 1, + STATE(1225), 1, + sym_enum_variant_list, + STATE(2607), 1, sym_type_parameters, - STATE(3317), 1, + STATE(3188), 1, sym_where_clause, STATE(2328), 2, sym_line_comment, sym_block_comment, - [73379] = 6, + [73271] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5307), 1, - anon_sym_RBRACK, - ACTIONS(4862), 2, - anon_sym_PIPE, + ACTIONS(4644), 1, + anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5314), 1, + anon_sym_GT, + ACTIONS(5316), 1, anon_sym_COMMA, + STATE(2794), 1, + sym_trait_bounds, + STATE(2924), 1, + aux_sym_type_parameters_repeat1, STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73402] = 6, + [73300] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5318), 1, + anon_sym_if, + STATE(3600), 1, + sym_label, + STATE(398), 2, + sym_if_expression, + sym_block, STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73425] = 9, + [73327] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5310), 1, + ACTIONS(5320), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(1258), 1, sym_declaration_list, - STATE(2898), 1, + STATE(2927), 1, sym_where_clause, STATE(2331), 2, sym_line_comment, sym_block_comment, - [73454] = 9, + [73356] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5312), 1, + ACTIONS(5322), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(1262), 1, sym_declaration_list, - STATE(2899), 1, + STATE(2930), 1, sym_where_clause, STATE(2332), 2, sym_line_comment, sym_block_comment, - [73483] = 6, + [73385] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5314), 1, - anon_sym_RBRACK, - ACTIONS(4896), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5324), 1, + anon_sym_SEMI, + STATE(1280), 1, + sym_declaration_list, + STATE(2939), 1, + sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73506] = 8, + [73414] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3321), 2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, anon_sym_PLUS, - anon_sym_as, + ACTIONS(5326), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_declaration_list, + STATE(2778), 1, + sym_where_clause, STATE(2334), 2, sym_line_comment, sym_block_comment, - [73533] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [73443] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5321), 1, - anon_sym_if, - STATE(3355), 1, - sym_label, - STATE(404), 2, - sym_if_expression, - sym_block, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, + ACTIONS(5330), 1, + anon_sym_GT, + ACTIONS(5332), 1, + anon_sym_COMMA, + STATE(2815), 1, + sym_trait_bounds, + STATE(2816), 1, + aux_sym_type_arguments_repeat1, STATE(2335), 2, sym_line_comment, sym_block_comment, - [73560] = 6, + [73472] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3607), 2, + ACTIONS(3099), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4896), 2, + ACTIONS(5045), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5314), 2, - anon_sym_RPAREN, + ACTIONS(5330), 1, + anon_sym_GT, + ACTIONS(5332), 1, anon_sym_COMMA, + STATE(2815), 1, + sym_trait_bounds, + STATE(2816), 1, + aux_sym_type_arguments_repeat1, STATE(2336), 2, sym_line_comment, sym_block_comment, - [73583] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [73501] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, - sym_identifier, - ACTIONS(5325), 1, - anon_sym_ref, - ACTIONS(5327), 1, - sym_mutable_specifier, - ACTIONS(5329), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5334), 1, + anon_sym_if, + STATE(3637), 1, + sym_label, + STATE(469), 2, + sym_if_expression, + sym_block, STATE(2337), 2, sym_line_comment, sym_block_comment, - [73612] = 9, + [73528] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(5043), 1, + ACTIONS(4644), 1, + anon_sym_EQ, + ACTIONS(5045), 1, anon_sym_COLON, - ACTIONS(5317), 1, + ACTIONS(5336), 1, anon_sym_GT, - ACTIONS(5319), 1, + ACTIONS(5338), 1, anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, + STATE(2794), 1, sym_trait_bounds, + STATE(2914), 1, + aux_sym_type_parameters_repeat1, STATE(2338), 2, sym_line_comment, sym_block_comment, - [73641] = 9, + [73557] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5331), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5333), 1, - anon_sym_GT, - ACTIONS(5335), 1, - anon_sym_COMMA, - STATE(2973), 1, - sym_trait_bounds, - STATE(2983), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5340), 1, + anon_sym_SEMI, + STATE(624), 1, + sym_declaration_list, + STATE(2938), 1, + sym_where_clause, STATE(2339), 2, sym_line_comment, sym_block_comment, - [73670] = 9, + [73586] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5331), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5337), 1, - anon_sym_GT, - ACTIONS(5339), 1, - anon_sym_COMMA, - STATE(2925), 1, - sym_trait_bounds, - STATE(2926), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5342), 1, + anon_sym_SEMI, + STATE(628), 1, + sym_declaration_list, + STATE(3013), 1, + sym_where_clause, STATE(2340), 2, sym_line_comment, sym_block_comment, - [73699] = 9, + [73615] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(5043), 1, + ACTIONS(5045), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(5289), 1, anon_sym_GT, - ACTIONS(5339), 1, + ACTIONS(5291), 1, anon_sym_COMMA, - STATE(2925), 1, + ACTIONS(5328), 1, + anon_sym_PLUS, + STATE(2866), 1, sym_trait_bounds, - STATE(2926), 1, + STATE(2867), 1, aux_sym_type_arguments_repeat1, STATE(2341), 2, sym_line_comment, sym_block_comment, - [73728] = 8, + [73644] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5341), 1, - anon_sym_if, - STATE(3619), 1, - sym_label, - STATE(459), 2, - sym_if_expression, - sym_block, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5344), 1, + anon_sym_SEMI, + STATE(612), 1, + sym_declaration_list, + STATE(2836), 1, + sym_where_clause, STATE(2342), 2, sym_line_comment, sym_block_comment, - [73755] = 9, + [73673] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_GT, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2809), 1, - sym_trait_bounds, - STATE(2811), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5346), 1, + anon_sym_if, + STATE(3638), 1, + sym_label, + STATE(1723), 2, + sym_if_expression, + sym_block, STATE(2343), 2, sym_line_comment, sym_block_comment, - [73784] = 9, + [73700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5343), 1, - anon_sym_GT, - ACTIONS(5345), 1, - anon_sym_COMMA, - STATE(2809), 1, - sym_trait_bounds, - STATE(2865), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4655), 1, + anon_sym_DOT_DOT, STATE(2344), 2, sym_line_comment, sym_block_comment, - [73813] = 9, + ACTIONS(4653), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73721] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5347), 1, - anon_sym_SEMI, - STATE(685), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(1285), 1, sym_declaration_list, - STATE(2908), 1, + STATE(2674), 1, + sym_trait_bounds, + STATE(3272), 1, sym_where_clause, STATE(2345), 2, sym_line_comment, sym_block_comment, - [73842] = 9, + [73750] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5328), 1, anon_sym_PLUS, - ACTIONS(5349), 1, - anon_sym_SEMI, - STATE(1126), 1, - sym_declaration_list, - STATE(2799), 1, - sym_where_clause, + ACTIONS(5348), 1, + anon_sym_GT, + ACTIONS(5350), 1, + anon_sym_COMMA, + STATE(3014), 1, + sym_trait_bounds, + STATE(3023), 1, + aux_sym_type_arguments_repeat1, STATE(2346), 2, sym_line_comment, sym_block_comment, - [73871] = 4, + [73779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_DOT_DOT, + ACTIONS(4670), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2347), 2, sym_line_comment, sym_block_comment, - ACTIONS(5001), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [73890] = 9, + ACTIONS(4513), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73802] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - STATE(608), 1, - sym_field_declaration_list, - STATE(2579), 1, - sym_type_parameters, - STATE(3105), 1, - sym_where_clause, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5352), 1, + anon_sym_GT, + ACTIONS(5354), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_type_parameters_repeat1, + STATE(2811), 1, + sym_trait_bounds, + STATE(2839), 1, + aux_sym_for_lifetimes_repeat1, STATE(2348), 2, sym_line_comment, sym_block_comment, - [73919] = 8, + [73831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5351), 1, - anon_sym_if, - STATE(3620), 1, - sym_label, - STATE(1780), 2, - sym_if_expression, - sym_block, + ACTIONS(4876), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2349), 2, sym_line_comment, sym_block_comment, - [73946] = 9, + ACTIONS(3503), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [73852] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5353), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5356), 1, anon_sym_SEMI, - STATE(545), 1, - sym_declaration_list, - STATE(3054), 1, + ACTIONS(5358), 1, + anon_sym_EQ, + STATE(2950), 1, + sym_trait_bounds, + STATE(3425), 1, sym_where_clause, STATE(2350), 2, sym_line_comment, sym_block_comment, - [73975] = 9, + [73881] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5355), 1, - anon_sym_SEMI, - STATE(547), 1, - sym_declaration_list, - STATE(2921), 1, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_where, + STATE(1232), 1, + sym_field_declaration_list, + STATE(2668), 1, + sym_type_parameters, + STATE(3195), 1, sym_where_clause, STATE(2351), 2, sym_line_comment, sym_block_comment, - [74004] = 9, + [73910] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5360), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1136), 1, - sym_declaration_list, - STATE(2547), 1, - sym_trait_bounds, - STATE(3229), 1, + STATE(693), 1, + sym_enum_variant_list, + STATE(2564), 1, + sym_type_parameters, + STATE(3162), 1, sym_where_clause, STATE(2352), 2, sym_line_comment, sym_block_comment, - [74033] = 9, + [73939] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5357), 1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5362), 1, anon_sym_SEMI, - ACTIONS(5359), 1, - anon_sym_EQ, - STATE(2805), 1, - sym_trait_bounds, - STATE(3408), 1, + STATE(697), 1, + sym_declaration_list, + STATE(2997), 1, sym_where_clause, STATE(2353), 2, sym_line_comment, sym_block_comment, - [74062] = 9, + [73968] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5361), 1, + ACTIONS(5364), 1, anon_sym_SEMI, - STATE(1143), 1, + STATE(701), 1, sym_declaration_list, - STATE(2806), 1, + STATE(2998), 1, sym_where_clause, STATE(2354), 2, sym_line_comment, sym_block_comment, - [74091] = 9, + [73997] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, + ACTIONS(4934), 1, anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5363), 1, + ACTIONS(5312), 1, anon_sym_LBRACE, - STATE(640), 1, + STATE(1182), 1, sym_enum_variant_list, - STATE(2733), 1, + STATE(2660), 1, sym_type_parameters, - STATE(3231), 1, + STATE(3085), 1, sym_where_clause, STATE(2355), 2, sym_line_comment, sym_block_comment, - [74120] = 9, + [74026] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5365), 1, + ACTIONS(5366), 1, anon_sym_SEMI, - STATE(581), 1, + STATE(1200), 1, sym_declaration_list, - STATE(2766), 1, + STATE(3048), 1, sym_where_clause, STATE(2356), 2, sym_line_comment, sym_block_comment, - [74149] = 9, + [74055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - STATE(645), 1, - sym_field_declaration_list, - STATE(2551), 1, - sym_type_parameters, - STATE(3077), 1, - sym_where_clause, + ACTIONS(4924), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2357), 2, sym_line_comment, sym_block_comment, - [74178] = 6, + ACTIONS(3589), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74076] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(5367), 1, - anon_sym_EQ, + ACTIONS(5368), 1, + sym_identifier, + ACTIONS(5370), 1, + anon_sym_ref, + ACTIONS(5372), 1, + sym_mutable_specifier, + ACTIONS(5374), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 4, + [74105] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(991), 1, + anon_sym_DOT_DOT, + STATE(2359), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(993), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74126] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74201] = 9, + ACTIONS(5376), 1, + anon_sym_SEMI, + STATE(1221), 1, + sym_declaration_list, + STATE(2858), 1, + sym_where_clause, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + [74155] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5285), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1147), 1, - sym_enum_variant_list, - STATE(2563), 1, - sym_type_parameters, - STATE(3257), 1, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(678), 1, + sym_declaration_list, + STATE(2657), 1, + sym_trait_bounds, + STATE(3242), 1, sym_where_clause, - STATE(2359), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [74230] = 9, + [74184] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, + ACTIONS(3099), 1, anon_sym_PLUS, - ACTIONS(5043), 1, + ACTIONS(5045), 1, anon_sym_COLON, - ACTIONS(5333), 1, + ACTIONS(5348), 1, anon_sym_GT, - ACTIONS(5335), 1, + ACTIONS(5350), 1, anon_sym_COMMA, - STATE(2973), 1, + STATE(3014), 1, sym_trait_bounds, - STATE(2983), 1, + STATE(3023), 1, aux_sym_type_arguments_repeat1, - STATE(2360), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [74259] = 9, + [74213] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - STATE(1152), 1, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_where, + STATE(1310), 1, sym_field_declaration_list, - STATE(2573), 1, + STATE(2677), 1, sym_type_parameters, - STATE(3292), 1, + STATE(3100), 1, sym_where_clause, - STATE(2361), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [74288] = 5, + [74242] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 2, + ACTIONS(5045), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2362), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3607), 4, - anon_sym_RPAREN, + ACTIONS(5328), 1, anon_sym_PLUS, + ACTIONS(5378), 1, + anon_sym_GT, + ACTIONS(5380), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [74309] = 9, + STATE(2892), 1, + sym_trait_bounds, + STATE(2893), 1, + aux_sym_type_arguments_repeat1, + STATE(2364), 2, + sym_line_comment, + sym_block_comment, + [74271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5369), 1, - anon_sym_SEMI, - STATE(603), 1, - sym_declaration_list, - STATE(2846), 1, - sym_where_clause, - STATE(2363), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [74338] = 5, + ACTIONS(3467), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, + ACTIONS(997), 1, anon_sym_DOT_DOT, - STATE(2364), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 5, + ACTIONS(999), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [74359] = 9, + [74311] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5371), 1, + ACTIONS(5382), 1, anon_sym_SEMI, - STATE(721), 1, + STATE(1324), 1, sym_declaration_list, - STATE(2798), 1, + STATE(2975), 1, sym_where_clause, - STATE(2365), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [74388] = 6, + [74340] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4978), 1, - anon_sym_for, - STATE(2366), 2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5384), 1, + anon_sym_SEMI, + ACTIONS(5386), 1, + anon_sym_EQ, + STATE(2856), 1, + sym_trait_bounds, + STATE(3474), 1, + sym_where_clause, + STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74411] = 6, + [74369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4862), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5307), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2367), 2, + ACTIONS(4682), 1, + anon_sym_DOT_DOT, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [74434] = 9, + ACTIONS(4680), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74390] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5373), 1, + ACTIONS(5388), 1, anon_sym_SEMI, - STATE(488), 1, + STATE(1326), 1, sym_declaration_list, - STATE(2822), 1, + STATE(2976), 1, sym_where_clause, - STATE(2368), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [74463] = 9, + [74419] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - ACTIONS(5375), 1, - anon_sym_GT, - ACTIONS(5377), 1, - anon_sym_COMMA, - STATE(2823), 1, - sym_trait_bounds, - STATE(2824), 1, - aux_sym_type_arguments_repeat1, - STATE(2369), 2, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(726), 1, + sym_field_declaration_list, + STATE(2693), 1, + sym_type_parameters, + STATE(3289), 1, + sym_where_clause, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [74492] = 9, + [74448] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5375), 1, - anon_sym_GT, - ACTIONS(5377), 1, - anon_sym_COMMA, - STATE(2823), 1, - sym_trait_bounds, - STATE(2824), 1, - aux_sym_type_arguments_repeat1, - STATE(2370), 2, + ACTIONS(5390), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_declaration_list, + STATE(2982), 1, + sym_where_clause, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [74521] = 9, + [74477] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5379), 1, + ACTIONS(5392), 1, anon_sym_SEMI, - STATE(490), 1, + STATE(1332), 1, sym_declaration_list, - STATE(2833), 1, + STATE(2983), 1, sym_where_clause, - STATE(2371), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [74550] = 5, + [74506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4862), 2, - anon_sym_COLON, + ACTIONS(1005), 1, + anon_sym_DOT_DOT, + STATE(2374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1007), 5, + anon_sym_EQ_GT, anon_sym_PIPE, - STATE(2372), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74527] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1013), 1, + anon_sym_DOT_DOT, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [74571] = 9, + ACTIONS(1015), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74548] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5381), 1, + ACTIONS(5394), 1, anon_sym_SEMI, - STATE(585), 1, + STATE(524), 1, sym_declaration_list, - STATE(2858), 1, + STATE(2871), 1, sym_where_clause, - STATE(2373), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [74600] = 9, + [74577] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, + ACTIONS(5045), 1, anon_sym_COLON, - STATE(726), 1, + STATE(1370), 1, sym_declaration_list, - STATE(2745), 1, + STATE(2633), 1, sym_trait_bounds, - STATE(3106), 1, + STATE(3328), 1, sym_where_clause, - STATE(2374), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - [74629] = 9, + [74606] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5383), 1, - anon_sym_GT, - ACTIONS(5385), 1, - anon_sym_COMMA, - STATE(2793), 1, - aux_sym_type_parameters_repeat1, - STATE(2809), 1, - sym_trait_bounds, - STATE(2375), 2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5396), 1, + anon_sym_SEMI, + STATE(526), 1, + sym_declaration_list, + STATE(2873), 1, + sym_where_clause, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [74658] = 9, + [74635] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(627), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5398), 1, + anon_sym_SEMI, + STATE(647), 1, sym_declaration_list, - STATE(2743), 1, - sym_trait_bounds, - STATE(3281), 1, + STATE(2931), 1, sym_where_clause, - STATE(2376), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74687] = 7, + [74664] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, + ACTIONS(4604), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5235), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2377), 2, + ACTIONS(4954), 1, + anon_sym_for, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [74712] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3370), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5387), 1, - anon_sym_if, - STATE(3569), 1, - sym_label, - STATE(1425), 2, - sym_if_expression, - sym_block, - STATE(2378), 2, - sym_line_comment, - sym_block_comment, - [74739] = 9, + anon_sym_PLUS, + anon_sym_where, + [74687] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5389), 1, - anon_sym_GT, - ACTIONS(5391), 1, - anon_sym_COMMA, - STATE(2809), 1, - sym_trait_bounds, - STATE(2842), 1, - aux_sym_type_parameters_repeat1, - STATE(2379), 2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5400), 1, + anon_sym_SEMI, + STATE(528), 1, + sym_declaration_list, + STATE(2886), 1, + sym_where_clause, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [74768] = 9, + [74716] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5393), 1, + ACTIONS(5402), 1, anon_sym_SEMI, - STATE(1169), 1, + STATE(714), 1, sym_declaration_list, - STATE(2844), 1, + STATE(2980), 1, sym_where_clause, - STATE(2380), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [74797] = 7, + [74745] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5231), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5235), 2, + ACTIONS(5259), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2381), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [74822] = 9, + [74770] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5045), 1, anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_GT, - ACTIONS(5397), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, + STATE(652), 1, + sym_declaration_list, + STATE(2667), 1, sym_trait_bounds, - STATE(3018), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2382), 2, + STATE(3185), 1, + sym_where_clause, + STATE(2384), 2, sym_line_comment, sym_block_comment, - [74851] = 9, + [74799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5399), 1, - anon_sym_SEMI, - STATE(1173), 1, - sym_declaration_list, - STATE(2845), 1, - sym_where_clause, - STATE(2383), 2, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_for, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [74880] = 7, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74822] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5231), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5401), 2, + ACTIONS(5404), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2384), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + [74847] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5403), 1, + ACTIONS(5406), 1, anon_sym_SEMI, - STATE(1190), 1, + STATE(530), 1, sym_declaration_list, - STATE(2850), 1, + STATE(2910), 1, sym_where_clause, - STATE(2385), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - [74934] = 9, + [74876] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1195), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5408), 1, + anon_sym_SEMI, + STATE(700), 1, sym_declaration_list, - STATE(2692), 1, - sym_trait_bounds, - STATE(3175), 1, + STATE(2791), 1, sym_where_clause, - STATE(2386), 2, - sym_line_comment, - sym_block_comment, - [74963] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2387), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74982] = 9, + [74905] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5405), 1, - anon_sym_SEMI, - ACTIONS(5407), 1, + ACTIONS(4644), 1, anon_sym_EQ, - STATE(3036), 1, + ACTIONS(4646), 1, + anon_sym_GT, + ACTIONS(4648), 1, + anon_sym_COMMA, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(2794), 1, sym_trait_bounds, - STATE(3542), 1, - sym_where_clause, - STATE(2388), 2, - sym_line_comment, - sym_block_comment, - [75011] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_DOT_DOT, + STATE(2801), 1, + aux_sym_type_parameters_repeat1, STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75032] = 9, + [74934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_enum_variant_list, - STATE(2621), 1, - sym_type_parameters, - STATE(3255), 1, - sym_where_clause, STATE(2390), 2, sym_line_comment, sym_block_comment, - [75061] = 5, + ACTIONS(5012), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [74953] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_DOT_DOT, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5378), 1, + anon_sym_GT, + ACTIONS(5380), 1, + anon_sym_COMMA, + STATE(2892), 1, + sym_trait_bounds, + STATE(2893), 1, + aux_sym_type_arguments_repeat1, STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75082] = 5, + [74982] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, - anon_sym_DOT_DOT, + ACTIONS(3503), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4876), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5410), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1025), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75103] = 5, + [75005] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_DOT_DOT, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5413), 1, + anon_sym_SEMI, + STATE(706), 1, + sym_declaration_list, + STATE(3038), 1, + sym_where_clause, STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1029), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75124] = 9, + [75034] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5409), 1, - anon_sym_SEMI, - STATE(698), 1, - sym_declaration_list, - STATE(2761), 1, - sym_where_clause, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(5028), 1, + anon_sym_for, STATE(2394), 2, sym_line_comment, sym_block_comment, - [75153] = 8, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75057] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, + ACTIONS(5231), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5404), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2395), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [75180] = 9, + [75082] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5360), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5411), 1, - anon_sym_SEMI, - STATE(588), 1, - sym_declaration_list, - STATE(2867), 1, + STATE(761), 1, + sym_enum_variant_list, + STATE(2722), 1, + sym_type_parameters, + STATE(3306), 1, sym_where_clause, STATE(2396), 2, sym_line_comment, sym_block_comment, - [75209] = 6, + [75111] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5017), 1, - anon_sym_for, + ACTIONS(5410), 1, + anon_sym_RBRACK, + ACTIONS(4876), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3503), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [75232] = 6, + anon_sym_DASH_GT, + [75134] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4926), 1, - anon_sym_for, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5415), 1, + anon_sym_SEMI, + STATE(1082), 1, + sym_declaration_list, + STATE(3017), 1, + sym_where_clause, STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75255] = 9, + [75163] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5413), 1, + ACTIONS(5417), 1, anon_sym_SEMI, - STATE(1220), 1, + STATE(1084), 1, sym_declaration_list, - STATE(2875), 1, + STATE(3018), 1, sym_where_clause, STATE(2399), 2, sym_line_comment, sym_block_comment, - [75284] = 6, + [75192] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5019), 1, - anon_sym_for, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5419), 1, + anon_sym_SEMI, + STATE(1196), 1, + sym_declaration_list, + STATE(2844), 1, + sym_where_clause, STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75307] = 9, + [75221] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5415), 1, - anon_sym_SEMI, - STATE(1224), 1, - sym_declaration_list, - STATE(2878), 1, - sym_where_clause, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5259), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2401), 2, sym_line_comment, sym_block_comment, - [75336] = 6, + [75246] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5021), 1, - anon_sym_for, + ACTIONS(3667), 1, + anon_sym_COLON, + ACTIONS(5421), 1, + anon_sym_EQ, STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3665), 4, anon_sym_PLUS, - anon_sym_where, - [75359] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5417), 1, - anon_sym_SEMI, - STATE(1226), 1, - sym_declaration_list, - STATE(2879), 1, - sym_where_clause, + ACTIONS(5305), 1, + anon_sym_RBRACK, + ACTIONS(4924), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2403), 2, sym_line_comment, sym_block_comment, - [75388] = 6, + ACTIONS(3589), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [75292] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, + ACTIONS(4593), 1, anon_sym_COLON_COLON, - ACTIONS(4962), 1, - anon_sym_for, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3370), 2, + anon_sym_PLUS, + anon_sym_as, STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75411] = 6, + [75319] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, ACTIONS(4936), 1, - anon_sym_for, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5427), 1, + anon_sym_SEMI, + STATE(1097), 1, + sym_declaration_list, + STATE(3021), 1, + sym_where_clause, STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75434] = 7, + [75348] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, + ACTIONS(4604), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5401), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4993), 1, + anon_sym_for, STATE(2406), 2, sym_line_comment, sym_block_comment, - [75459] = 9, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75371] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5419), 1, + ACTIONS(5429), 1, anon_sym_SEMI, - STATE(742), 1, + STATE(708), 1, sym_declaration_list, - STATE(2762), 1, + STATE(3041), 1, sym_where_clause, STATE(2407), 2, sym_line_comment, sym_block_comment, - [75488] = 9, + [75400] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(5421), 1, + ACTIONS(5431), 1, anon_sym_SEMI, - STATE(691), 1, + STATE(1099), 1, sym_declaration_list, - STATE(2970), 1, + STATE(3022), 1, sym_where_clause, STATE(2408), 2, sym_line_comment, sym_block_comment, - [75517] = 8, + [75429] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, + ACTIONS(4604), 1, anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1960), 1, - sym_parameters, + ACTIONS(4999), 1, + anon_sym_for, STATE(2409), 2, sym_line_comment, sym_block_comment, - [75543] = 5, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75452] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5433), 1, + anon_sym_SEMI, + STATE(1101), 1, + sym_declaration_list, + STATE(3026), 1, + sym_where_clause, STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75563] = 8, + [75481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4856), 1, - anon_sym_PIPE, - ACTIONS(5423), 1, - anon_sym_SEMI, - ACTIONS(5425), 1, - anon_sym_COLON, - ACTIONS(5427), 1, - anon_sym_EQ, - ACTIONS(5429), 1, - anon_sym_else, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_for, STATE(2411), 2, sym_line_comment, sym_block_comment, - [75589] = 8, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75504] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4856), 1, - anon_sym_PIPE, - ACTIONS(5431), 1, - anon_sym_SEMI, - ACTIONS(5433), 1, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(5045), 1, anon_sym_COLON, - ACTIONS(5435), 1, - anon_sym_EQ, - ACTIONS(5437), 1, - anon_sym_else, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_type_parameters_repeat1, + STATE(2811), 1, + sym_trait_bounds, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75615] = 8, + [75533] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5439), 1, - anon_sym_SEMI, - STATE(679), 1, - sym_block, - STATE(3615), 1, - sym_label, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(5005), 1, + anon_sym_for, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75641] = 7, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75556] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, - anon_sym_STAR, - STATE(2816), 1, - sym_use_list, - ACTIONS(5441), 2, - sym_identifier, - sym_super, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(1209), 1, + sym_declaration_list, + STATE(2761), 1, + sym_trait_bounds, + STATE(3168), 1, + sym_where_clause, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75665] = 8, + [75585] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - STATE(1670), 1, - sym_block, - STATE(3620), 1, - sym_label, + ACTIONS(5435), 1, + anon_sym_SEMI, + STATE(1103), 1, + sym_declaration_list, + STATE(3027), 1, + sym_where_clause, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75691] = 8, + [75614] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5445), 1, - anon_sym_SEMI, - STATE(513), 1, - sym_block, - STATE(3615), 1, - sym_label, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(4960), 1, + anon_sym_for, STATE(2416), 2, sym_line_comment, sym_block_comment, - [75717] = 8, + ACTIONS(3370), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4848), 1, - anon_sym_RPAREN, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5451), 1, - anon_sym_COMMA, - STATE(3034), 1, - aux_sym_closure_parameters_repeat1, STATE(2417), 2, sym_line_comment, sym_block_comment, - [75743] = 8, + ACTIONS(3611), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [75655] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, - anon_sym_SEMI, - STATE(576), 1, - sym_block, - STATE(3615), 1, - sym_label, + ACTIONS(5439), 1, + anon_sym_STAR, + STATE(2992), 1, + sym_use_list, + ACTIONS(5437), 2, + sym_identifier, + sym_super, STATE(2418), 2, sym_line_comment, sym_block_comment, - [75769] = 8, + [75679] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5441), 1, + anon_sym_RPAREN, + ACTIONS(5443), 1, anon_sym_COLON, - ACTIONS(5375), 1, - anon_sym_GT, - ACTIONS(5377), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5447), 1, anon_sym_COMMA, - STATE(2823), 1, - sym_trait_bounds, - STATE(2824), 1, - aux_sym_type_arguments_repeat1, + STATE(3063), 1, + aux_sym_slice_pattern_repeat1, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75795] = 7, + [75705] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, + ACTIONS(5449), 1, anon_sym_RPAREN, - ACTIONS(5457), 1, + ACTIONS(5452), 1, anon_sym_COMMA, - STATE(2835), 1, + STATE(3049), 1, aux_sym_parameters_repeat1, - ACTIONS(4507), 2, + ACTIONS(4513), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75819] = 8, + [75729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5459), 1, - anon_sym_move, - STATE(1419), 1, - sym_block, - STATE(3569), 1, - sym_label, STATE(2421), 2, sym_line_comment, sym_block_comment, - [75845] = 8, + ACTIONS(3263), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75747] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5461), 1, - anon_sym_GT, - ACTIONS(5463), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, - sym_trait_bounds, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4511), 1, + anon_sym_COLON_COLON, + STATE(1956), 1, + sym_type_arguments, + STATE(1976), 1, + sym_parameters, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75871] = 8, + [75773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(5465), 1, - anon_sym_SEMI, - STATE(655), 1, - sym_block, - STATE(3615), 1, - sym_label, + ACTIONS(5217), 1, + anon_sym_STAR, + STATE(2995), 1, + sym_use_list, + ACTIONS(5215), 2, + sym_identifier, + sym_super, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75897] = 8, + [75797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5467), 1, - anon_sym_SEMI, - STATE(1167), 1, - sym_block, - STATE(3618), 1, - sym_label, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75923] = 8, + ACTIONS(3581), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [75815] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5469), 1, + ACTIONS(5455), 1, + anon_sym_RPAREN, + ACTIONS(5457), 1, anon_sym_COMMA, - STATE(2832), 1, - sym_trait_bounds, - STATE(2843), 1, - aux_sym_type_parameters_repeat1, + STATE(3049), 1, + aux_sym_parameters_repeat1, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2425), 2, sym_line_comment, sym_block_comment, - [75949] = 7, + [75839] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2809), 1, - sym_trait_bounds, - ACTIONS(5471), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5459), 1, + anon_sym_SEMI, + STATE(592), 1, + sym_block, + STATE(3633), 1, + sym_label, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75973] = 8, + [75865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1691), 1, - sym_block, - STATE(3620), 1, - sym_label, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(5461), 1, + anon_sym_COMMA, + STATE(2967), 1, + aux_sym_parameters_repeat1, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75999] = 8, + [75889] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5043), 1, + ACTIONS(3370), 1, + anon_sym_PLUS, + ACTIONS(4513), 2, anon_sym_COLON, - ACTIONS(5473), 1, + anon_sym_PIPE, + ACTIONS(5463), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2832), 1, - sym_trait_bounds, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, STATE(2428), 2, sym_line_comment, sym_block_comment, - [76025] = 7, + [75911] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_STAR, - STATE(2819), 1, - sym_use_list, - ACTIONS(5195), 2, - sym_identifier, - sym_super, + ACTIONS(5466), 1, + anon_sym_SEMI, + STATE(1316), 1, + sym_block, + STATE(3636), 1, + sym_label, STATE(2429), 2, sym_line_comment, sym_block_comment, - [76049] = 6, + [75937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3809), 1, - anon_sym_PLUS, - ACTIONS(4872), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5475), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2430), 2, sym_line_comment, sym_block_comment, - [76071] = 8, + ACTIONS(3539), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_RPAREN, - ACTIONS(5480), 1, - anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_slice_pattern_repeat1, STATE(2431), 2, sym_line_comment, sym_block_comment, - [76097] = 4, + ACTIONS(3543), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75973] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5468), 1, + anon_sym_move, + STATE(472), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3257), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76115] = 7, + [75999] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, - anon_sym_COMMA, - STATE(2869), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(1790), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2433), 2, sym_line_comment, sym_block_comment, - [76139] = 8, + [76025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + STATE(2434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3547), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76043] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5470), 1, anon_sym_SEMI, - STATE(1214), 1, + STATE(550), 1, sym_block, - STATE(3618), 1, + STATE(3633), 1, sym_label, - STATE(2434), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - [76165] = 6, + [76069] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5492), 1, - anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_as, - STATE(2435), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5472), 1, + anon_sym_SEMI, + STATE(1355), 1, + sym_block, + STATE(3636), 1, + sym_label, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(5490), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76187] = 8, + [76095] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5496), 1, + STATE(2437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3551), 5, anon_sym_SEMI, - ACTIONS(5498), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(5500), 1, anon_sym_EQ, - ACTIONS(5502), 1, - anon_sym_else, - STATE(2436), 2, - sym_line_comment, - sym_block_comment, - [76213] = 8, + anon_sym_where, + [76113] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1809), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2437), 2, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_type_parameters_repeat1, + STATE(2811), 1, + sym_trait_bounds, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [76239] = 8, + [76139] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5474), 1, anon_sym_SEMI, - STATE(1247), 1, + STATE(575), 1, sym_block, - STATE(3618), 1, + STATE(3633), 1, sym_label, - STATE(2438), 2, - sym_line_comment, - sym_block_comment, - [76265] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(5508), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2439), 2, sym_line_comment, sym_block_comment, - [76289] = 6, + [76165] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4511), 1, anon_sym_COLON_COLON, - ACTIONS(5514), 1, - anon_sym_as, + ACTIONS(4642), 1, + anon_sym_COLON, + STATE(1956), 1, + sym_type_arguments, + STATE(2688), 1, + sym_trait_bounds, STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76311] = 8, + [76191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5516), 1, - anon_sym_SEMI, - STATE(572), 1, - sym_block, - STATE(3615), 1, - sym_label, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2461), 1, + aux_sym_where_clause_repeat1, STATE(2441), 2, sym_line_comment, sym_block_comment, - [76337] = 8, + ACTIONS(5476), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [76213] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5518), 1, + ACTIONS(5480), 1, anon_sym_SEMI, - STATE(526), 1, + STATE(596), 1, sym_block, - STATE(3615), 1, + STATE(3633), 1, sym_label, STATE(2442), 2, sym_line_comment, sym_block_comment, - [76363] = 8, + [76239] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5520), 1, + ACTIONS(5482), 1, anon_sym_SEMI, - STATE(1269), 1, + STATE(1076), 1, sym_block, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2443), 2, sym_line_comment, sym_block_comment, - [76389] = 7, + [76265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, - anon_sym_RPAREN, - ACTIONS(5525), 1, + ACTIONS(5486), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2444), 2, + ACTIONS(5484), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2444), 3, sym_line_comment, sym_block_comment, - [76413] = 4, + aux_sym_where_clause_repeat1, + [76285] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(5489), 1, + sym_identifier, + ACTIONS(5491), 1, + sym_integer_literal, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1448), 1, + sym_attribute_item, STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(5528), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76431] = 6, + [76311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_PLUS, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5530), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2446), 2, sym_line_comment, sym_block_comment, - [76453] = 6, + ACTIONS(3469), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, - anon_sym_as, - ACTIONS(5533), 1, - anon_sym_COLON_COLON, STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, + ACTIONS(3555), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76475] = 8, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76347] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, + ACTIONS(5493), 1, anon_sym_SEMI, - STATE(1298), 1, + STATE(1106), 1, sym_block, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2448), 2, sym_line_comment, sym_block_comment, - [76501] = 8, + [76373] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5495), 1, anon_sym_SEMI, - STATE(1311), 1, - sym_block, - STATE(3618), 1, - sym_label, + ACTIONS(5497), 1, + anon_sym_COLON, + ACTIONS(5499), 1, + anon_sym_EQ, + ACTIONS(5501), 1, + anon_sym_else, STATE(2449), 2, sym_line_comment, sym_block_comment, - [76527] = 8, + [76399] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1433), 1, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5503), 1, + anon_sym_SEMI, + STATE(1119), 1, sym_block, - STATE(3569), 1, + STATE(3636), 1, sym_label, STATE(2450), 2, sym_line_comment, sym_block_comment, - [76553] = 8, + [76425] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5539), 1, + ACTIONS(5505), 1, anon_sym_SEMI, - STATE(1316), 1, + STATE(500), 1, sym_block, - STATE(3618), 1, + STATE(3633), 1, sym_label, STATE(2451), 2, sym_line_comment, sym_block_comment, - [76579] = 4, + [76451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3881), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76597] = 4, + ACTIONS(4684), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76471] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5507), 1, + anon_sym_SEMI, + STATE(1124), 1, + sym_block, + STATE(3636), 1, + sym_label, STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(5541), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76615] = 8, + [76497] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5543), 1, - anon_sym_SEMI, - STATE(1340), 1, - sym_block, - STATE(3618), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_EQ, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(2794), 1, + sym_trait_bounds, + ACTIONS(5509), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2454), 2, sym_line_comment, sym_block_comment, - [76641] = 8, + [76521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5545), 1, - anon_sym_SEMI, - STATE(1346), 1, - sym_block, - STATE(3618), 1, - sym_label, STATE(2455), 2, sym_line_comment, sym_block_comment, - [76667] = 8, + ACTIONS(3477), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76539] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5547), 1, - anon_sym_SEMI, - STATE(580), 1, - sym_block, - STATE(3615), 1, - sym_label, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2456), 2, sym_line_comment, sym_block_comment, - [76693] = 8, + [76563] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5549), 1, + ACTIONS(5513), 1, anon_sym_SEMI, - STATE(1356), 1, + STATE(1149), 1, sym_block, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2457), 2, sym_line_comment, sym_block_comment, - [76719] = 8, + [76589] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5551), 1, + ACTIONS(5515), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(1155), 1, sym_block, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2458), 2, sym_line_comment, sym_block_comment, - [76745] = 8, + [76615] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5083), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5517), 1, anon_sym_SEMI, - STATE(1364), 1, + STATE(1165), 1, sym_block, - STATE(3618), 1, + STATE(3636), 1, sym_label, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76771] = 4, + [76641] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(1169), 1, + sym_block, + STATE(3636), 1, + sym_label, STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76789] = 8, + [76667] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5555), 1, - anon_sym_move, - STATE(1746), 1, - sym_block, - STATE(3620), 1, - sym_label, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_where_clause_repeat1, STATE(2461), 2, sym_line_comment, sym_block_comment, - [76815] = 4, + ACTIONS(3454), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [76689] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_SEMI, + STATE(1173), 1, + sym_block, + STATE(3636), 1, + sym_label, STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76833] = 4, + [76715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -174676,91 +175119,100 @@ static const uint16_t ts_small_parse_table[] = { STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 5, + ACTIONS(5525), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [76851] = 4, + [76733] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5527), 1, + anon_sym_move, + STATE(1840), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(5557), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76869] = 8, + [76759] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5559), 1, + ACTIONS(5529), 1, anon_sym_SEMI, - STATE(529), 1, + STATE(620), 1, sym_block, - STATE(3615), 1, + STATE(3633), 1, sym_label, STATE(2465), 2, sym_line_comment, sym_block_comment, - [76895] = 8, + [76785] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(5561), 1, - sym_identifier, - ACTIONS(5563), 1, - sym_integer_literal, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, + ACTIONS(5531), 1, + anon_sym_STAR_SLASH, + ACTIONS(5533), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5535), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5537), 1, + sym__block_comment_content, + STATE(3108), 1, + sym__block_doc_comment_marker, STATE(2466), 2, sym_line_comment, sym_block_comment, - [76921] = 4, + [76811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3655), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76939] = 4, + ACTIONS(3370), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [76831] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5539), 1, + anon_sym_SEMI, + STATE(600), 1, + sym_block, + STATE(3633), 1, + sym_label, STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(5565), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76957] = 4, + [76857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -174768,466 +175220,484 @@ static const uint16_t ts_small_parse_table[] = { STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(5567), 5, + ACTIONS(3559), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76975] = 8, + [76875] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1610), 1, - sym_parameters, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(4822), 1, + anon_sym_PIPE, + ACTIONS(5541), 1, + anon_sym_SEMI, + ACTIONS(5543), 1, + anon_sym_COLON, + ACTIONS(5545), 1, + anon_sym_EQ, + ACTIONS(5547), 1, + anon_sym_else, STATE(2470), 2, sym_line_comment, sym_block_comment, - [77001] = 4, + [76901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3915), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(5569), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77019] = 8, + ACTIONS(4684), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76921] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_GT, - ACTIONS(5339), 1, - anon_sym_COMMA, - STATE(2925), 1, - sym_trait_bounds, - STATE(2926), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4511), 1, + anon_sym_COLON_COLON, + STATE(1599), 1, + sym_parameters, + STATE(1956), 1, + sym_type_arguments, STATE(2472), 2, sym_line_comment, sym_block_comment, - [77045] = 4, + [76947] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4866), 1, + anon_sym_RPAREN, + ACTIONS(5549), 1, + anon_sym_COLON, + ACTIONS(5551), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2772), 1, + aux_sym_closure_parameters_repeat1, STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(5571), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77063] = 4, + [76973] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5229), 1, + anon_sym_COLON, + ACTIONS(5263), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(5573), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77081] = 7, + [76997] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5555), 1, + anon_sym_SEMI, + STATE(582), 1, + sym_block, + STATE(3633), 1, + sym_label, STATE(2475), 2, sym_line_comment, sym_block_comment, - [77105] = 7, + [77023] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, + ACTIONS(5045), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5330), 1, + anon_sym_GT, + ACTIONS(5332), 1, + anon_sym_COMMA, + STATE(2815), 1, + sym_trait_bounds, + STATE(2816), 1, + aux_sym_type_arguments_repeat1, STATE(2476), 2, sym_line_comment, sym_block_comment, - [77129] = 6, + [77049] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, - anon_sym_as, - ACTIONS(5581), 1, - anon_sym_COLON_COLON, + ACTIONS(5557), 1, + anon_sym_RPAREN, + ACTIONS(5559), 1, + anon_sym_COMMA, + STATE(2820), 1, + aux_sym_parameters_repeat1, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77151] = 8, + [77073] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1450), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(5563), 1, + anon_sym_COLON_COLON, + ACTIONS(5565), 1, + anon_sym_as, STATE(2478), 2, sym_line_comment, sym_block_comment, - [77177] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2479), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5583), 5, + ACTIONS(5561), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [77195] = 4, + [77095] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2480), 2, + ACTIONS(5565), 1, + anon_sym_as, + ACTIONS(5567), 1, + anon_sym_COLON_COLON, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5585), 5, + ACTIONS(5561), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [77213] = 8, + [77117] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5587), 1, - anon_sym_STAR_SLASH, - ACTIONS(5589), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5591), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5593), 1, - sym__block_comment_content, - STATE(3334), 1, - sym__block_doc_comment_marker, - STATE(2481), 2, + ACTIONS(4704), 1, + anon_sym_GT, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5569), 1, + anon_sym_COMMA, + STATE(2811), 1, + sym_trait_bounds, + STATE(2922), 1, + aux_sym_type_parameters_repeat1, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [77239] = 4, + [77143] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2482), 2, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, + STATE(3351), 1, + sym_trait_bounds, + ACTIONS(5571), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77257] = 4, + [77167] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2483), 2, + ACTIONS(1465), 1, + anon_sym_RPAREN, + ACTIONS(5573), 1, + anon_sym_COMMA, + STATE(2828), 1, + aux_sym_parameters_repeat1, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(5595), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77275] = 8, + [77191] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5597), 1, + ACTIONS(5575), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(692), 1, sym_block, - STATE(3615), 1, + STATE(3633), 1, sym_label, - STATE(2484), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [77301] = 8, + [77217] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5599), 1, - anon_sym_move, - STATE(458), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2485), 2, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5289), 1, + anon_sym_GT, + ACTIONS(5291), 1, + anon_sym_COMMA, + STATE(2866), 1, + sym_trait_bounds, + STATE(2867), 1, + aux_sym_type_arguments_repeat1, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [77327] = 8, + [77243] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(5045), 1, anon_sym_COLON, - ACTIONS(5317), 1, + STATE(3351), 1, + sym_trait_bounds, + ACTIONS(5571), 2, anon_sym_GT, - ACTIONS(5319), 1, anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, - sym_trait_bounds, + STATE(2485), 2, + sym_line_comment, + sym_block_comment, + [77267] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5565), 1, + anon_sym_as, + ACTIONS(5577), 1, + anon_sym_COLON_COLON, STATE(2486), 2, sym_line_comment, sym_block_comment, - [77353] = 8, + ACTIONS(5561), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [77289] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5601), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_move, + STATE(1461), 1, sym_block, - STATE(3615), 1, + STATE(3589), 1, sym_label, STATE(2487), 2, sym_line_comment, sym_block_comment, - [77379] = 5, + [77315] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5605), 1, - anon_sym_COMMA, - ACTIONS(5603), 3, - anon_sym_SEMI, + ACTIONS(343), 1, anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(2488), 3, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(1416), 1, + sym_block, + STATE(3589), 1, + sym_label, + STATE(2488), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [77399] = 6, + [77341] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, - anon_sym_RBRACK, - ACTIONS(3321), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4507), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2489), 2, sym_line_comment, sym_block_comment, - [77421] = 8, + ACTIONS(5581), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77359] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4505), 1, + ACTIONS(4511), 1, anon_sym_COLON_COLON, - ACTIONS(4632), 1, - anon_sym_COLON, - STATE(1953), 1, + STATE(1184), 1, + sym_parameters, + STATE(1956), 1, sym_type_arguments, - STATE(2726), 1, - sym_trait_bounds, STATE(2490), 2, sym_line_comment, sym_block_comment, - [77447] = 5, + [77385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(5583), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [77467] = 6, + anon_sym_where, + [77403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 1, - anon_sym_COMMA, - STATE(2504), 1, - aux_sym_where_clause_repeat1, STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(5608), 3, + ACTIONS(5585), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [77489] = 8, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5612), 1, - anon_sym_SEMI, - ACTIONS(5614), 1, - anon_sym_COLON, - ACTIONS(5616), 1, - anon_sym_EQ, - ACTIONS(5618), 1, - anon_sym_else, STATE(2493), 2, sym_line_comment, sym_block_comment, - [77515] = 8, + ACTIONS(5587), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77439] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5620), 1, - anon_sym_SEMI, - STATE(753), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(1419), 1, sym_block, - STATE(3615), 1, + STATE(3589), 1, sym_label, STATE(2494), 2, sym_line_comment, sym_block_comment, - [77541] = 7, + [77465] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2897), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, + ACTIONS(4644), 1, + anon_sym_EQ, + ACTIONS(5045), 1, anon_sym_COLON, - anon_sym_PIPE, + STATE(2794), 1, + sym_trait_bounds, + ACTIONS(5589), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77565] = 4, + [77489] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5463), 1, + anon_sym_RBRACK, + ACTIONS(3370), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4513), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77583] = 4, + [77511] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2497), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3477), 5, + ACTIONS(4822), 1, + anon_sym_PIPE, + ACTIONS(5591), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5593), 1, anon_sym_COLON, + ACTIONS(5595), 1, anon_sym_EQ, - anon_sym_where, - [77601] = 4, + ACTIONS(5597), 1, + anon_sym_else, + STATE(2497), 2, + sym_line_comment, + sym_block_comment, + [77537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175235,114 +175705,105 @@ static const uint16_t ts_small_parse_table[] = { STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 5, + ACTIONS(3563), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [77619] = 7, + [77555] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5261), 1, anon_sym_COLON, - STATE(2809), 1, - sym_trait_bounds, - ACTIONS(5624), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5263), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77643] = 6, + [77579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5475), 1, - anon_sym_RBRACK, - ACTIONS(3809), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4872), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2500), 2, sym_line_comment, sym_block_comment, - [77665] = 7, + ACTIONS(5599), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77597] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5601), 1, + anon_sym_SEMI, + ACTIONS(5603), 1, anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3116), 1, - sym_trait_bounds, - ACTIONS(5626), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5605), 1, + anon_sym_EQ, + ACTIONS(5607), 1, + anon_sym_else, STATE(2501), 2, sym_line_comment, sym_block_comment, - [77689] = 7, + [77623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(5043), 1, + ACTIONS(4852), 2, anon_sym_COLON, - STATE(3116), 1, - sym_trait_bounds, - ACTIONS(5626), 2, - anon_sym_GT, - anon_sym_COMMA, + anon_sym_PIPE, STATE(2502), 2, sym_line_comment, sym_block_comment, - [77713] = 8, + ACTIONS(3933), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [77643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5333), 1, - anon_sym_GT, - ACTIONS(5335), 1, - anon_sym_COMMA, - STATE(2973), 1, - sym_trait_bounds, - STATE(2983), 1, - aux_sym_type_arguments_repeat1, STATE(2503), 2, sym_line_comment, sym_block_comment, - [77739] = 6, + ACTIONS(3579), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, - anon_sym_COMMA, - STATE(2488), 1, - aux_sym_where_clause_repeat1, STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3430), 3, + ACTIONS(3587), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_SQUOTE, - [77761] = 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175350,129 +175811,129 @@ static const uint16_t ts_small_parse_table[] = { STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(5630), 5, + ACTIONS(3567), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [77779] = 4, + [77697] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5609), 1, + anon_sym_RBRACK, + ACTIONS(3933), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4852), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(5632), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77797] = 8, + [77719] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5634), 1, - anon_sym_SEMI, - STATE(601), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(1720), 1, sym_block, - STATE(3615), 1, + STATE(3638), 1, sym_label, STATE(2507), 2, sym_line_comment, sym_block_comment, - [77823] = 4, + [77745] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5348), 1, + anon_sym_GT, + ACTIONS(5350), 1, + anon_sym_COMMA, + STATE(3014), 1, + sym_trait_bounds, + STATE(3023), 1, + aux_sym_type_arguments_repeat1, STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(5636), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77841] = 7, + [77771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5223), 1, - anon_sym_COLON, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2509), 2, sym_line_comment, sym_block_comment, - [77865] = 7, + ACTIONS(5612), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5237), 1, - anon_sym_COLON, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2510), 2, sym_line_comment, sym_block_comment, - [77889] = 8, + ACTIONS(5614), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77807] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1480), 1, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5616), 1, + anon_sym_SEMI, + STATE(746), 1, sym_block, - STATE(3569), 1, + STATE(3633), 1, sym_label, STATE(2511), 2, sym_line_comment, sym_block_comment, - [77915] = 8, + [77833] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1118), 1, - sym_parameters, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5378), 1, + anon_sym_GT, + ACTIONS(5380), 1, + anon_sym_COMMA, + STATE(2892), 1, + sym_trait_bounds, + STATE(2893), 1, + aux_sym_type_arguments_repeat1, STATE(2512), 2, sym_line_comment, sym_block_comment, - [77941] = 4, + [77859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175480,4286 +175941,4334 @@ static const uint16_t ts_small_parse_table[] = { STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 5, + ACTIONS(5618), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [77959] = 7, + [77877] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5638), 1, + ACTIONS(5620), 1, anon_sym_RPAREN, - ACTIONS(5640), 1, + ACTIONS(5622), 1, anon_sym_COMMA, - STATE(3004), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2905), 1, + aux_sym_parameters_repeat1, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77982] = 6, + [77901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5642), 2, - sym_identifier, - sym_super, + ACTIONS(3933), 1, + anon_sym_PLUS, + ACTIONS(4852), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5609), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2515), 2, sym_line_comment, sym_block_comment, - [78003] = 6, + [77923] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5642), 2, - sym_identifier, - sym_super, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5624), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_block, + STATE(3633), 1, + sym_label, STATE(2516), 2, sym_line_comment, sym_block_comment, - [78024] = 7, + [77949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5644), 1, - anon_sym_SEMI, - ACTIONS(5646), 1, - anon_sym_EQ, - ACTIONS(5648), 1, - anon_sym_else, STATE(2517), 2, sym_line_comment, sym_block_comment, - [78047] = 5, - ACTIONS(3), 1, + ACTIONS(5626), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77967] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5650), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5630), 1, + anon_sym_COMMA, + STATE(2811), 1, + sym_trait_bounds, + STATE(2838), 1, + aux_sym_type_parameters_repeat1, STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(5652), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78066] = 7, + [77993] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3524), 1, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5632), 1, + anon_sym_SEMI, + STATE(1256), 1, sym_block, - STATE(3569), 1, + STATE(3636), 1, sym_label, STATE(2519), 2, sym_line_comment, sym_block_comment, - [78089] = 6, + [78019] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5654), 2, - sym_identifier, - sym_super, STATE(2520), 2, sym_line_comment, sym_block_comment, - [78110] = 7, + ACTIONS(5634), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(626), 1, - sym_declaration_list, - STATE(3268), 1, - sym_where_clause, STATE(2521), 2, sym_line_comment, sym_block_comment, - [78133] = 7, + ACTIONS(5636), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5656), 1, - anon_sym_SEMI, - STATE(3451), 1, - sym_where_clause, STATE(2522), 2, sym_line_comment, sym_block_comment, - [78156] = 7, + ACTIONS(5638), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78073] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1306), 1, - sym_declaration_list, - STATE(3060), 1, - sym_where_clause, + ACTIONS(4712), 1, + anon_sym_GT, + ACTIONS(5045), 1, + anon_sym_COLON, + ACTIONS(5640), 1, + anon_sym_COMMA, + STATE(2811), 1, + sym_trait_bounds, + STATE(2925), 1, + aux_sym_type_parameters_repeat1, STATE(2523), 2, sym_line_comment, sym_block_comment, - [78179] = 6, + [78099] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2713), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(1414), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2524), 2, sym_line_comment, sym_block_comment, - [78200] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(378), 1, - sym_block, - STATE(3355), 1, - sym_label, STATE(2525), 2, sym_line_comment, sym_block_comment, - [78223] = 7, + ACTIONS(5642), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78143] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3502), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + STATE(1850), 1, sym_block, - STATE(3569), 1, + STATE(3638), 1, sym_label, STATE(2526), 2, sym_line_comment, sym_block_comment, - [78246] = 7, + [78169] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3440), 1, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_SEMI, + STATE(546), 1, sym_block, - STATE(3569), 1, + STATE(3633), 1, sym_label, STATE(2527), 2, sym_line_comment, sym_block_comment, - [78269] = 6, + [78195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, + ACTIONS(5648), 1, + anon_sym_COLON_COLON, + ACTIONS(5650), 1, + anon_sym_as, STATE(2528), 2, sym_line_comment, sym_block_comment, - [78290] = 6, + ACTIONS(5646), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78217] = 6, ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, + anon_sym_DQUOTE, + STATE(2730), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2529), 2, sym_line_comment, sym_block_comment, - [78311] = 5, + [78238] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5662), 1, - anon_sym_COLON, STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78330] = 7, + ACTIONS(4307), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [78255] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1420), 1, + STATE(466), 1, sym_block, - STATE(3569), 1, + STATE(3637), 1, sym_label, STATE(2531), 2, sym_line_comment, sym_block_comment, - [78353] = 5, + [78278] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5328), 1, anon_sym_PLUS, STATE(2532), 2, sym_line_comment, sym_block_comment, - ACTIONS(5664), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5656), 3, + anon_sym_COLON, + anon_sym_GT, anon_sym_COMMA, - [78372] = 4, + [78297] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5660), 1, + anon_sym_LBRACK, + ACTIONS(5662), 1, + anon_sym_LBRACE, + STATE(1964), 1, + sym_delim_token_tree, STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1035), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78389] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78320] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(396), 1, + STATE(481), 1, sym_block, - STATE(3355), 1, + STATE(3637), 1, sym_label, STATE(2534), 2, sym_line_comment, sym_block_comment, - [78412] = 7, + [78343] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3431), 1, + STATE(456), 1, sym_block, - STATE(3569), 1, + STATE(3637), 1, sym_label, STATE(2535), 2, sym_line_comment, sym_block_comment, - [78435] = 7, + [78366] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5469), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2843), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5664), 1, + anon_sym_COLON_COLON, STATE(2536), 2, sym_line_comment, sym_block_comment, - [78458] = 6, + ACTIONS(4782), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78385] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5666), 1, + sym_identifier, + STATE(1565), 1, + sym_type_arguments, STATE(2537), 2, sym_line_comment, sym_block_comment, - [78479] = 6, + [78408] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5654), 2, - sym_identifier, - sym_super, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(486), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2538), 2, sym_line_comment, sym_block_comment, - [78500] = 7, + [78431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5473), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5668), 1, + anon_sym_DQUOTE, + STATE(2730), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2539), 2, sym_line_comment, sym_block_comment, - [78523] = 7, + [78452] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5660), 1, + anon_sym_LBRACK, + ACTIONS(5662), 1, + anon_sym_LBRACE, + STATE(1965), 1, + sym_delim_token_tree, STATE(2540), 2, sym_line_comment, sym_block_comment, - [78546] = 7, + [78475] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5668), 1, - anon_sym_SEMI, + ACTIONS(4019), 1, + anon_sym_LT2, ACTIONS(5670), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(5672), 1, - anon_sym_else, + sym_super, + STATE(1592), 1, + sym_type_arguments, STATE(2541), 2, sym_line_comment, sym_block_comment, - [78569] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78498] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(382), 1, - sym_block, - STATE(3355), 1, - sym_label, + ACTIONS(4019), 1, + anon_sym_LT2, + ACTIONS(5670), 1, + sym_identifier, + ACTIONS(5672), 1, + sym_super, + STATE(1579), 1, + sym_type_arguments, STATE(2542), 2, sym_line_comment, sym_block_comment, - [78592] = 7, + [78521] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5676), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, + anon_sym_SEMI, + STATE(3534), 1, + sym_where_clause, STATE(2543), 2, sym_line_comment, sym_block_comment, - [78615] = 7, + [78544] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(463), 1, - sym_block, - STATE(3619), 1, - sym_label, + ACTIONS(5676), 1, + sym_identifier, + ACTIONS(5678), 1, + anon_sym_LT2, + ACTIONS(5680), 1, + sym_super, + STATE(2452), 1, + sym_type_arguments, STATE(2544), 2, sym_line_comment, sym_block_comment, - [78638] = 7, + [78567] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(466), 1, - sym_block, - STATE(3619), 1, - sym_label, + ACTIONS(5676), 1, + sym_identifier, + ACTIONS(5678), 1, + anon_sym_LT2, + ACTIONS(5680), 1, + sym_super, + STATE(2471), 1, + sym_type_arguments, STATE(2545), 2, sym_line_comment, sym_block_comment, - [78661] = 6, + [78590] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5678), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5682), 1, + anon_sym_RPAREN, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_tuple_type_repeat1, STATE(2546), 2, sym_line_comment, sym_block_comment, - [78682] = 7, - ACTIONS(103), 1, + [78613] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_declaration_list, - STATE(3157), 1, - sym_where_clause, + ACTIONS(5686), 1, + aux_sym_token_repetition_pattern_token1, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78705] = 7, + ACTIONS(5688), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78632] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - STATE(2918), 1, - sym_block, - STATE(3618), 1, - sym_label, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5461), 1, + anon_sym_COMMA, + STATE(2967), 1, + aux_sym_parameters_repeat1, STATE(2548), 2, sym_line_comment, sym_block_comment, - [78728] = 7, + [78655] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1749), 1, - sym_block, - STATE(3620), 1, - sym_label, STATE(2549), 2, sym_line_comment, sym_block_comment, - [78751] = 7, + ACTIONS(5690), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [78672] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5680), 1, - anon_sym_SEMI, - STATE(3442), 1, - sym_where_clause, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5692), 1, + sym_identifier, + STATE(3641), 1, + sym_type_arguments, STATE(2550), 2, sym_line_comment, sym_block_comment, - [78774] = 7, + [78695] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - STATE(738), 1, - sym_field_declaration_list, - STATE(3134), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5694), 1, + anon_sym_SEMI, + STATE(3482), 1, sym_where_clause, STATE(2551), 2, sym_line_comment, sym_block_comment, - [78797] = 7, + [78718] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1404), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(1614), 1, + sym_parameters, + STATE(1958), 1, + sym_type_arguments, STATE(2552), 2, sym_line_comment, sym_block_comment, - [78820] = 7, + [78741] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(1615), 1, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5692), 1, + sym_identifier, + STATE(3457), 1, sym_type_arguments, STATE(2553), 2, sym_line_comment, sym_block_comment, - [78843] = 7, + [78764] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1194), 1, - sym_declaration_list, - STATE(3169), 1, - sym_where_clause, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(1958), 1, + sym_type_arguments, + STATE(1977), 1, + sym_parameters, STATE(2554), 2, sym_line_comment, sym_block_comment, - [78866] = 7, + [78787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3445), 1, - sym_block, - STATE(3569), 1, - sym_label, STATE(2555), 2, sym_line_comment, sym_block_comment, - [78889] = 7, + ACTIONS(5484), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78804] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(469), 1, - sym_block, - STATE(3619), 1, - sym_label, + STATE(3071), 1, + sym_use_list, + ACTIONS(5696), 2, + sym_identifier, + sym_super, STATE(2556), 2, sym_line_comment, sym_block_comment, - [78912] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78825] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(383), 1, + STATE(479), 1, sym_block, - STATE(3355), 1, + STATE(3637), 1, sym_label, STATE(2557), 2, sym_line_comment, sym_block_comment, - [78935] = 7, + [78848] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, - anon_sym_LBRACK, - ACTIONS(5686), 1, - anon_sym_LBRACE, - STATE(1964), 1, - sym_delim_token_tree, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(3457), 1, + sym_type_arguments, + ACTIONS(5215), 2, + sym_identifier, + sym_super, STATE(2558), 2, sym_line_comment, sym_block_comment, - [78958] = 7, + [78869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(470), 1, - sym_block, - STATE(3619), 1, - sym_label, + ACTIONS(5055), 1, + anon_sym_PLUS, STATE(2559), 2, sym_line_comment, sym_block_comment, - [78981] = 7, + ACTIONS(5698), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [78888] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(452), 1, - sym_block, - STATE(3619), 1, - sym_label, + STATE(756), 1, + sym_declaration_list, + STATE(3294), 1, + sym_where_clause, STATE(2560), 2, sym_line_comment, sym_block_comment, - [79004] = 7, + [78911] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(3299), 1, anon_sym_LT2, - ACTIONS(5674), 1, + ACTIONS(3607), 1, anon_sym_COLON_COLON, - ACTIONS(5688), 1, - anon_sym_for, - STATE(1953), 1, + ACTIONS(4916), 1, + anon_sym_BANG, + STATE(1369), 1, sym_type_arguments, STATE(2561), 2, sym_line_comment, sym_block_comment, - [79027] = 7, + [78934] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(479), 1, - sym_block, - STATE(3619), 1, - sym_label, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5557), 1, + anon_sym_RPAREN, + ACTIONS(5559), 1, + anon_sym_COMMA, + STATE(2820), 1, + aux_sym_parameters_repeat1, STATE(2562), 2, sym_line_comment, sym_block_comment, - [79050] = 7, + [78957] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, - STATE(3188), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1469), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2563), 2, sym_line_comment, sym_block_comment, - [79073] = 6, + [78980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5690), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5360), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_enum_variant_list, + STATE(3340), 1, + sym_where_clause, STATE(2564), 2, sym_line_comment, sym_block_comment, - [79094] = 7, + [79003] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, - anon_sym_LBRACK, - ACTIONS(5686), 1, - anon_sym_LBRACE, - STATE(1969), 1, - sym_delim_token_tree, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5263), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2565), 2, sym_line_comment, sym_block_comment, - [79117] = 7, + [79024] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5694), 1, - sym_super, - STATE(1563), 1, - sym_type_arguments, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5700), 1, + anon_sym_RPAREN, + ACTIONS(5702), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_tuple_pattern_repeat1, STATE(2566), 2, sym_line_comment, sym_block_comment, - [79140] = 7, + [79047] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5694), 1, - sym_super, - STATE(1586), 1, - sym_type_arguments, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5704), 1, + anon_sym_RBRACK, + ACTIONS(5706), 1, + anon_sym_COMMA, + STATE(2788), 1, + aux_sym_slice_pattern_repeat1, STATE(2567), 2, sym_line_comment, sym_block_comment, - [79163] = 7, + [79070] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4742), 1, - anon_sym_for, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(477), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2568), 2, sym_line_comment, sym_block_comment, - [79186] = 7, + [79093] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(4704), 1, + anon_sym_GT, + ACTIONS(5569), 1, + anon_sym_COMMA, + ACTIONS(5708), 1, + anon_sym_EQ, + STATE(2922), 1, + aux_sym_type_parameters_repeat1, STATE(2569), 2, sym_line_comment, sym_block_comment, - [79209] = 7, + [79116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(5710), 1, + anon_sym_COLON, STATE(2570), 2, sym_line_comment, sym_block_comment, - [79232] = 7, + ACTIONS(4822), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79135] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5698), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2920), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1477), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2571), 2, sym_line_comment, sym_block_comment, - [79255] = 6, + [79158] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2832), 1, - sym_trait_bounds, - ACTIONS(5702), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1470), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2572), 2, sym_line_comment, sym_block_comment, - [79276] = 7, + [79181] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(5185), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, anon_sym_LBRACE, - STATE(1205), 1, - sym_field_declaration_list, - STATE(3213), 1, - sym_where_clause, + STATE(1441), 1, + sym_delim_token_tree, STATE(2573), 2, sym_line_comment, sym_block_comment, - [79299] = 7, + [79204] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1611), 1, - sym_parameters, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(1465), 1, + anon_sym_RPAREN, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5573), 1, + anon_sym_COMMA, + STATE(2828), 1, + aux_sym_parameters_repeat1, STATE(2574), 2, sym_line_comment, sym_block_comment, - [79322] = 7, + [79227] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2196), 1, - sym_parameters, - STATE(3273), 1, - sym_type_parameters, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + ACTIONS(5714), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, STATE(2575), 2, sym_line_comment, sym_block_comment, - [79345] = 7, + [79250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5704), 1, - anon_sym_SEMI, - STATE(3531), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3589), 1, + sym_label, + STATE(3622), 1, + sym_block, STATE(2576), 2, sym_line_comment, sym_block_comment, - [79368] = 7, + [79273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(460), 1, + STATE(1693), 1, sym_block, - STATE(3619), 1, + STATE(3638), 1, sym_label, STATE(2577), 2, sym_line_comment, sym_block_comment, - [79391] = 5, + [79296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1798), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(5706), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [79410] = 7, + [79319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_where, - STATE(632), 1, - sym_field_declaration_list, - STATE(3059), 1, - sym_where_clause, + ACTIONS(5716), 1, + anon_sym_DQUOTE, + STATE(2586), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2579), 2, sym_line_comment, sym_block_comment, - [79433] = 4, + [79340] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(474), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4299), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [79450] = 7, + [79363] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5710), 1, - anon_sym_LBRACK, - ACTIONS(5712), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1772), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2581), 2, sym_line_comment, sym_block_comment, - [79473] = 7, + [79386] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5718), 1, + anon_sym_LPAREN, + ACTIONS(5720), 1, + anon_sym_LBRACK, + ACTIONS(5722), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1455), 1, - sym_block, - STATE(3569), 1, - sym_label, + STATE(1027), 1, + sym_delim_token_tree, STATE(2582), 2, sym_line_comment, sym_block_comment, - [79496] = 7, + [79409] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(1135), 1, - sym_declaration_list, - STATE(3227), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1797), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2583), 2, sym_line_comment, sym_block_comment, - [79519] = 7, + [79432] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1572), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2584), 2, sym_line_comment, sym_block_comment, - [79542] = 7, + [79455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2223), 1, - sym_parameters, - STATE(3220), 1, - sym_type_parameters, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1811), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2585), 2, sym_line_comment, sym_block_comment, - [79565] = 7, + [79478] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5714), 1, - anon_sym_SEMI, - STATE(3576), 1, - sym_where_clause, + ACTIONS(5724), 1, + anon_sym_DQUOTE, + STATE(2730), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2586), 2, sym_line_comment, sym_block_comment, - [79588] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79499] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(400), 1, - sym_block, - STATE(3355), 1, - sym_label, + ACTIONS(5718), 1, + anon_sym_LPAREN, + ACTIONS(5720), 1, + anon_sym_LBRACK, + ACTIONS(5722), 1, + anon_sym_LBRACE, + STATE(1028), 1, + sym_delim_token_tree, STATE(2587), 2, sym_line_comment, sym_block_comment, - [79611] = 7, + [79522] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(473), 1, - sym_block, - STATE(3619), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5726), 1, + sym_identifier, + ACTIONS(5728), 1, + sym_super, + STATE(2042), 1, + sym_type_arguments, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79634] = 7, + [79545] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5716), 1, - anon_sym_RPAREN, - ACTIONS(5718), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5726), 1, + sym_identifier, + ACTIONS(5728), 1, + sym_super, + STATE(2050), 1, + sym_type_arguments, STATE(2589), 2, sym_line_comment, sym_block_comment, - [79657] = 7, + [79568] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3437), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5730), 1, + sym_identifier, + STATE(3641), 1, + sym_type_arguments, STATE(2590), 2, sym_line_comment, sym_block_comment, - [79680] = 7, + [79591] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5654), 1, + ACTIONS(5728), 1, sym_super, - ACTIONS(5720), 1, + ACTIONS(5730), 1, sym_identifier, - STATE(3158), 1, + STATE(3457), 1, sym_type_arguments, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79703] = 7, + [79614] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_parameters_repeat1, + ACTIONS(5732), 1, + anon_sym_DQUOTE, + STATE(2529), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79726] = 7, + [79635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5451), 1, - anon_sym_COMMA, - STATE(3034), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5734), 1, + anon_sym_DQUOTE, + STATE(2696), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79749] = 5, + [79656] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - anon_sym_COLON_COLON, + ACTIONS(5549), 1, + anon_sym_COLON, + ACTIONS(5551), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2772), 1, + aux_sym_closure_parameters_repeat1, STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79768] = 5, + [79679] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 1, - sym_identifier, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3386), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(5726), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [79787] = 7, + [79702] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1748), 1, + STATE(1707), 1, sym_block, - STATE(3620), 1, + STATE(3638), 1, sym_label, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79810] = 7, + [79725] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1750), 1, - sym_block, - STATE(3620), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5736), 1, + sym_identifier, + STATE(2042), 1, + sym_type_arguments, STATE(2597), 2, sym_line_comment, sym_block_comment, - [79833] = 6, + [79748] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, ACTIONS(5728), 1, - anon_sym_DQUOTE, - STATE(2606), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + sym_super, + ACTIONS(5736), 1, + sym_identifier, + STATE(2050), 1, + sym_type_arguments, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79854] = 7, + [79771] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(465), 1, + STATE(1406), 1, sym_block, - STATE(3619), 1, + STATE(3589), 1, sym_label, STATE(2599), 2, sym_line_comment, sym_block_comment, - [79877] = 7, + [79794] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_GT, - ACTIONS(5463), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5738), 1, + anon_sym_SEMI, + ACTIONS(5740), 1, anon_sym_EQ, - STATE(2795), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5742), 1, + anon_sym_else, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79900] = 7, + [79817] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1753), 1, - sym_block, - STATE(3620), 1, + STATE(3589), 1, sym_label, + STATE(3634), 1, + sym_block, STATE(2601), 2, sym_line_comment, sym_block_comment, - [79923] = 7, + [79840] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - anon_sym_LPAREN, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_delim_token_tree, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79946] = 7, + [79863] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1756), 1, - sym_block, - STATE(3620), 1, - sym_label, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5744), 1, + anon_sym_RPAREN, + ACTIONS(5746), 1, + anon_sym_COMMA, + STATE(2797), 1, + aux_sym_tuple_type_repeat1, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79969] = 7, + [79886] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1567), 1, + STATE(1187), 1, sym_block, - STATE(3620), 1, + STATE(3589), 1, sym_label, STATE(2604), 2, sym_line_comment, sym_block_comment, - [79992] = 7, + [79909] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1759), 1, + STATE(1728), 1, sym_block, - STATE(3620), 1, + STATE(3638), 1, sym_label, STATE(2605), 2, sym_line_comment, sym_block_comment, - [80015] = 6, + [79932] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(409), 1, + sym_block, + STATE(3600), 1, + sym_label, STATE(2606), 2, sym_line_comment, sym_block_comment, - [80036] = 7, + [79955] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - anon_sym_LPAREN, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5312), 1, anon_sym_LBRACE, - STATE(1026), 1, - sym_delim_token_tree, + STATE(1290), 1, + sym_enum_variant_list, + STATE(3275), 1, + sym_where_clause, STATE(2607), 2, sym_line_comment, sym_block_comment, - [80059] = 7, + [79978] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(405), 1, + sym_block, + STATE(3600), 1, + sym_label, STATE(2608), 2, sym_line_comment, sym_block_comment, - [80082] = 7, + [80001] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(5748), 1, + anon_sym_DQUOTE, + STATE(2614), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2609), 2, sym_line_comment, sym_block_comment, - [80105] = 7, + [80022] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5486), 1, - anon_sym_COMMA, - STATE(2869), 1, - aux_sym_parameters_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1747), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2610), 2, sym_line_comment, sym_block_comment, - [80128] = 7, - ACTIONS(103), 1, + [80045] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5738), 1, - anon_sym_LPAREN, - ACTIONS(5740), 1, - anon_sym_LBRACK, - ACTIONS(5742), 1, - anon_sym_LBRACE, - STATE(2636), 1, - sym_token_tree, + ACTIONS(5750), 1, + aux_sym_token_repetition_pattern_token1, STATE(2611), 2, sym_line_comment, sym_block_comment, - [80151] = 5, + ACTIONS(5752), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80064] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 2, + ACTIONS(5045), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5744), 2, - anon_sym_RPAREN, + STATE(3351), 1, + sym_trait_bounds, + ACTIONS(5571), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2612), 2, sym_line_comment, sym_block_comment, - [80170] = 7, + [80085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(5756), 1, + anon_sym_LBRACK, + ACTIONS(5758), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1776), 1, - sym_block, - STATE(3620), 1, - sym_label, + STATE(1757), 1, + sym_delim_token_tree, STATE(2613), 2, sym_line_comment, sym_block_comment, - [80193] = 5, + [80108] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, - anon_sym_COLON_COLON, + ACTIONS(5760), 1, + anon_sym_DQUOTE, + STATE(2730), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80212] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80129] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(385), 1, - sym_block, - STATE(3355), 1, - sym_label, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(5756), 1, + anon_sym_LBRACK, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_delim_token_tree, STATE(2615), 2, sym_line_comment, sym_block_comment, - [80235] = 7, + [80152] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - STATE(1119), 1, - sym_parameters, - STATE(1955), 1, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5762), 1, + sym_identifier, + STATE(2042), 1, sym_type_arguments, STATE(2616), 2, sym_line_comment, sym_block_comment, - [80258] = 7, + [80175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1782), 1, - sym_block, - STATE(3620), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5762), 1, + sym_identifier, + STATE(2050), 1, + sym_type_arguments, STATE(2617), 2, sym_line_comment, sym_block_comment, - [80281] = 7, + [80198] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5748), 1, - anon_sym_RPAREN, - ACTIONS(5750), 1, - anon_sym_COMMA, - STATE(2923), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5730), 1, + sym_identifier, + STATE(3641), 1, + sym_type_arguments, STATE(2618), 2, sym_line_comment, sym_block_comment, - [80304] = 6, + [80221] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_DQUOTE, - STATE(2623), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5730), 1, + sym_identifier, + STATE(3457), 1, + sym_type_arguments, STATE(2619), 2, - sym_line_comment, - sym_block_comment, - [80325] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1788), 1, - sym_block, - STATE(3620), 1, - sym_label, + sym_line_comment, + sym_block_comment, + [80244] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, + STATE(3641), 1, + sym_type_arguments, STATE(2620), 2, sym_line_comment, sym_block_comment, - [80348] = 7, + [80267] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(594), 1, - sym_enum_variant_list, - STATE(3131), 1, - sym_where_clause, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(2240), 1, + sym_parameters, + STATE(3180), 1, + sym_type_parameters, STATE(2621), 2, sym_line_comment, sym_block_comment, - [80371] = 7, + [80290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1792), 1, - sym_delim_token_tree, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1464), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2622), 2, sym_line_comment, sym_block_comment, - [80394] = 6, + [80313] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, + ACTIONS(5766), 1, anon_sym_DQUOTE, - STATE(2734), 1, + STATE(2624), 1, aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, + ACTIONS(5654), 2, sym_string_content, sym_escape_sequence, STATE(2623), 2, sym_line_comment, sym_block_comment, - [80415] = 7, + [80334] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, - anon_sym_LBRACE, - STATE(1795), 1, - sym_delim_token_tree, + ACTIONS(5768), 1, + anon_sym_DQUOTE, + STATE(2730), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2624), 2, sym_line_comment, sym_block_comment, - [80438] = 7, + [80355] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_RPAREN, + ACTIONS(5772), 1, + anon_sym_COMMA, + STATE(2955), 1, + aux_sym_tuple_pattern_repeat1, STATE(2625), 2, sym_line_comment, sym_block_comment, - [80461] = 7, + [80378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5654), 1, + ACTIONS(5728), 1, sym_super, - ACTIONS(5762), 1, + ACTIONS(5774), 1, sym_identifier, - STATE(3311), 1, + STATE(3641), 1, sym_type_arguments, STATE(2626), 2, sym_line_comment, sym_block_comment, - [80484] = 7, + [80401] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1422), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5774), 1, + sym_identifier, + STATE(3457), 1, + sym_type_arguments, STATE(2627), 2, sym_line_comment, sym_block_comment, - [80507] = 5, + [80424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(5776), 1, anon_sym_COLON_COLON, STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, + ACTIONS(4756), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [80526] = 7, + [80443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1427), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(5778), 1, + anon_sym_in, STATE(2629), 2, sym_line_comment, sym_block_comment, - [80549] = 6, + ACTIONS(5780), 3, + sym_self, + sym_super, + sym_crate, + [80462] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5766), 1, - anon_sym_DQUOTE, - STATE(2631), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5782), 1, + anon_sym_SEMI, + STATE(3657), 1, + sym_where_clause, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80570] = 6, + [80485] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_declaration_list, + STATE(3241), 1, + sym_where_clause, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80591] = 5, + [80508] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5784), 1, + anon_sym_RBRACK, + ACTIONS(5786), 1, + anon_sym_COMMA, + STATE(2960), 1, + aux_sym_slice_pattern_repeat1, STATE(2632), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80610] = 7, + [80531] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5772), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1114), 1, + sym_declaration_list, + STATE(3355), 1, + sym_where_clause, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80633] = 7, + [80554] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5772), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5788), 1, + anon_sym_RPAREN, + ACTIONS(5790), 1, + anon_sym_COMMA, + STATE(2845), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80656] = 6, + [80577] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - STATE(2702), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5455), 1, + anon_sym_RPAREN, + ACTIONS(5457), 1, + anon_sym_COMMA, + STATE(3049), 1, + aux_sym_parameters_repeat1, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80677] = 4, + [80600] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, + anon_sym_LBRACK, + ACTIONS(5796), 1, + anon_sym_LBRACE, + STATE(406), 1, + sym_delim_token_tree, STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(5776), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80694] = 7, + [80623] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5774), 1, + sym_identifier, + STATE(3641), 1, + sym_type_arguments, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80717] = 5, + [80646] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5774), 1, + sym_identifier, + STATE(3457), 1, + sym_type_arguments, STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(5778), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [80736] = 7, + [80669] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5642), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3158), 1, + STATE(1185), 1, + sym_parameters, + STATE(1958), 1, sym_type_arguments, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80759] = 7, + [80692] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5642), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(5798), 1, + anon_sym_LBRACE, + ACTIONS(5800), 1, + anon_sym_for, + ACTIONS(5802), 1, + anon_sym_loop, + ACTIONS(5804), 1, + anon_sym_while, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80782] = 5, + [80715] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5782), 1, - anon_sym_COMMA, - ACTIONS(5778), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2641), 3, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, + STATE(3457), 1, + sym_type_arguments, + STATE(2641), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [80801] = 7, + [80738] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5785), 1, - anon_sym_SEMI, - STATE(3389), 1, - sym_where_clause, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5806), 1, + sym_identifier, + STATE(1468), 1, + sym_type_arguments, STATE(2642), 2, sym_line_comment, sym_block_comment, - [80824] = 7, + [80761] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, STATE(2643), 2, sym_line_comment, sym_block_comment, - [80847] = 7, + ACTIONS(963), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(5445), 1, + anon_sym_PIPE, STATE(2644), 2, sym_line_comment, sym_block_comment, - [80870] = 7, - ACTIONS(103), 1, + ACTIONS(5808), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [80797] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(5810), 1, + aux_sym_token_repetition_pattern_token1, STATE(2645), 2, sym_line_comment, sym_block_comment, - [80893] = 7, + ACTIONS(5812), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80816] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(725), 1, - sym_declaration_list, - STATE(3276), 1, - sym_where_clause, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(1958), 1, + sym_type_arguments, + STATE(2666), 1, + sym_trait_bounds, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80916] = 7, + [80839] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5814), 1, + anon_sym_RPAREN, + ACTIONS(5816), 1, + anon_sym_COMMA, + STATE(2857), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80939] = 7, + [80862] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(2202), 1, + sym_parameters, + STATE(3301), 1, + sym_type_parameters, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80962] = 7, + [80885] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(2134), 1, + sym_block, + STATE(3629), 1, + sym_label, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80985] = 7, + [80908] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2650), 2, sym_line_comment, sym_block_comment, - [81008] = 7, + [80929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5818), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2651), 2, sym_line_comment, sym_block_comment, - [81031] = 7, + [80948] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(2811), 1, + sym_trait_bounds, + ACTIONS(5820), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2652), 2, sym_line_comment, sym_block_comment, - [81054] = 4, + [80969] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5822), 1, + anon_sym_SEMI, + ACTIONS(5824), 1, + anon_sym_EQ, + ACTIONS(5826), 1, + anon_sym_else, STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3257), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81071] = 7, + [80992] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(2111), 1, - sym_block, - STATE(3611), 1, - sym_label, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(2216), 1, + sym_parameters, + STATE(3249), 1, + sym_type_parameters, STATE(2654), 2, sym_line_comment, sym_block_comment, - [81094] = 7, + [81015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(1373), 1, - sym_type_arguments, + ACTIONS(5776), 1, + anon_sym_COLON_COLON, STATE(2655), 2, sym_line_comment, sym_block_comment, - [81117] = 7, + ACTIONS(4786), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(464), 1, - sym_block, - STATE(3619), 1, - sym_label, + ACTIONS(5828), 1, + anon_sym_in, STATE(2656), 2, sym_line_comment, sym_block_comment, - [81140] = 6, + ACTIONS(5830), 3, + sym_self, + sym_super, + sym_crate, + [81053] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(640), 1, + sym_declaration_list, + STATE(3129), 1, + sym_where_clause, STATE(2657), 2, sym_line_comment, sym_block_comment, - [81161] = 7, + [81076] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2207), 1, - sym_parameters, - STATE(3323), 1, - sym_type_parameters, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(394), 1, + sym_block, + STATE(3600), 1, + sym_label, STATE(2658), 2, sym_line_comment, sym_block_comment, - [81184] = 7, + [81099] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4587), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5832), 1, + anon_sym_SEMI, + STATE(3583), 1, + sym_where_clause, STATE(2659), 2, sym_line_comment, sym_block_comment, - [81207] = 7, + [81122] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2211), 1, - sym_parameters, - STATE(3235), 1, - sym_type_parameters, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5312), 1, + anon_sym_LBRACE, + STATE(1190), 1, + sym_enum_variant_list, + STATE(3142), 1, + sym_where_clause, STATE(2660), 2, sym_line_comment, sym_block_comment, - [81230] = 5, + [81145] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1284), 1, + sym_declaration_list, + STATE(3270), 1, + sym_where_clause, STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(5795), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81249] = 5, + [81168] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, - anon_sym_in, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3528), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 3, - sym_self, - sym_super, - sym_crate, - [81268] = 7, + [81191] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_LBRACE, - ACTIONS(5803), 1, - anon_sym_for, - ACTIONS(5805), 1, - anon_sym_loop, - ACTIONS(5807), 1, - anon_sym_while, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5630), 1, + anon_sym_COMMA, + ACTIONS(5708), 1, + anon_sym_EQ, + STATE(2838), 1, + aux_sym_type_parameters_repeat1, STATE(2663), 2, sym_line_comment, sym_block_comment, - [81291] = 4, + [81214] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5834), 1, + anon_sym_RPAREN, + ACTIONS(5836), 1, + anon_sym_COMMA, + STATE(2872), 1, + aux_sym_slice_pattern_repeat1, STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(5603), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81308] = 6, + [81237] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5055), 1, + anon_sym_PLUS, STATE(2665), 2, sym_line_comment, sym_block_comment, - [81329] = 7, + ACTIONS(5838), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81256] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5840), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [81273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(681), 1, + STATE(741), 1, sym_declaration_list, - STATE(3284), 1, + STATE(3237), 1, sym_where_clause, - STATE(2666), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [81352] = 6, + [81296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2832), 1, - sym_trait_bounds, - ACTIONS(5811), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2667), 2, + ACTIONS(4932), 1, + anon_sym_LBRACE, + ACTIONS(4936), 1, + anon_sym_where, + STATE(1298), 1, + sym_field_declaration_list, + STATE(3284), 1, + sym_where_clause, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [81373] = 7, + [81319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(3525), 1, - anon_sym_COLON_COLON, - ACTIONS(4832), 1, - anon_sym_BANG, - STATE(1087), 1, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, + STATE(3457), 1, sym_type_arguments, - STATE(2668), 2, + STATE(2669), 2, sym_line_comment, sym_block_comment, - [81396] = 7, + [81342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5814), 1, - anon_sym_RPAREN, - ACTIONS(5816), 1, - anon_sym_COMMA, - STATE(2995), 1, - aux_sym_slice_pattern_repeat1, - STATE(2669), 2, + ACTIONS(5842), 1, + anon_sym_COLON, + STATE(2670), 2, sym_line_comment, sym_block_comment, - [81419] = 7, + ACTIONS(4822), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81361] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5818), 1, - anon_sym_RBRACK, - ACTIONS(5820), 1, - anon_sym_COMMA, - STATE(2943), 1, - aux_sym_slice_pattern_repeat1, - STATE(2670), 2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1208), 1, + sym_declaration_list, + STATE(3167), 1, + sym_where_clause, + STATE(2671), 2, sym_line_comment, sym_block_comment, - [81442] = 7, + [81384] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_RPAREN, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_slice_pattern_repeat1, - STATE(2671), 2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5844), 1, + anon_sym_SEMI, + STATE(3550), 1, + sym_where_clause, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [81465] = 7, + [81407] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3461), 1, + STATE(382), 1, sym_block, - STATE(3569), 1, + STATE(3600), 1, sym_label, - STATE(2672), 2, - sym_line_comment, - sym_block_comment, - [81488] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5822), 1, - aux_sym_token_repetition_pattern_token1, STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(5824), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81507] = 7, + [81430] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2216), 1, - sym_parameters, - STATE(3261), 1, - sym_type_parameters, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1350), 1, + sym_declaration_list, + STATE(3320), 1, + sym_where_clause, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81530] = 4, + [81453] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3429), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81547] = 7, + [81476] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1443), 1, + STATE(1472), 1, sym_block, - STATE(3569), 1, + STATE(3589), 1, sym_label, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81570] = 7, + [81499] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - STATE(1494), 1, - sym_delim_token_tree, + ACTIONS(4936), 1, + anon_sym_where, + STATE(1217), 1, + sym_field_declaration_list, + STATE(3176), 1, + sym_where_clause, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81593] = 7, + [81522] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5826), 1, - anon_sym_SEMI, - ACTIONS(5828), 1, - anon_sym_EQ, - ACTIONS(5830), 1, - anon_sym_else, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + ACTIONS(5846), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81616] = 7, + [81545] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1446), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(2221), 1, + sym_parameters, + STATE(3276), 1, + sym_type_parameters, STATE(2679), 2, sym_line_comment, sym_block_comment, - [81639] = 7, + [81568] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5832), 1, - anon_sym_SEMI, - ACTIONS(5834), 1, - anon_sym_EQ, - ACTIONS(5836), 1, - anon_sym_else, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(476), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81662] = 7, + [81591] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1098), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(2811), 1, + sym_trait_bounds, + ACTIONS(5848), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81685] = 7, + [81612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_field_declaration_list, - STATE(3238), 1, - sym_where_clause, + ACTIONS(5328), 1, + anon_sym_PLUS, STATE(2682), 2, sym_line_comment, sym_block_comment, - [81708] = 5, + ACTIONS(5850), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [81631] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - anon_sym_COLON_COLON, + ACTIONS(5441), 1, + anon_sym_RPAREN, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5447), 1, + anon_sym_COMMA, + STATE(3063), 1, + aux_sym_slice_pattern_repeat1, STATE(2683), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81727] = 7, + [81654] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, + anon_sym_LBRACK, + ACTIONS(5796), 1, anon_sym_LBRACE, - ACTIONS(5840), 1, - anon_sym_for, - ACTIONS(5842), 1, - anon_sym_loop, - ACTIONS(5844), 1, - anon_sym_while, + STATE(392), 1, + sym_delim_token_tree, STATE(2684), 2, sym_line_comment, sym_block_comment, - [81750] = 5, - ACTIONS(3), 1, + [81677] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1392), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81769] = 7, + [81700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5850), 1, - anon_sym_SEMI, - STATE(3465), 1, - sym_where_clause, + ACTIONS(5852), 1, + anon_sym_COLON_COLON, STATE(2686), 2, sym_line_comment, sym_block_comment, - [81792] = 7, + ACTIONS(4786), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81719] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5852), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5854), 1, + anon_sym_RPAREN, + ACTIONS(5856), 1, + anon_sym_COMMA, + STATE(2777), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81815] = 7, + [81742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3368), 1, - sym_block, - STATE(3569), 1, - sym_label, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81838] = 5, + ACTIONS(5858), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [81759] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1465), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81857] = 5, + [81782] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, - anon_sym_COLON, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + ACTIONS(5860), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81876] = 5, - ACTIONS(3), 1, + [81805] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2691), 2, + ACTIONS(5862), 1, + anon_sym_COMMA, + ACTIONS(5808), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2691), 3, sym_line_comment, sym_block_comment, - ACTIONS(5860), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81895] = 7, + aux_sym_slice_pattern_repeat1, + [81824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1242), 1, - sym_declaration_list, - STATE(3278), 1, - sym_where_clause, + ACTIONS(5865), 1, + sym_identifier, STATE(2692), 2, sym_line_comment, sym_block_comment, - [81918] = 7, + ACTIONS(5867), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [81843] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2897), 1, - aux_sym_parameters_repeat1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(685), 1, + sym_field_declaration_list, + STATE(3261), 1, + sym_where_clause, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81941] = 7, + [81866] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2222), 1, - sym_parameters, - STATE(3275), 1, - sym_type_parameters, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3437), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81964] = 7, + [81889] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1467), 1, + STATE(341), 1, sym_block, - STATE(3569), 1, + STATE(3600), 1, sym_label, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81987] = 7, + [81912] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3447), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(5869), 1, + anon_sym_DQUOTE, + STATE(2730), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2696), 2, sym_line_comment, sym_block_comment, - [82010] = 7, + [81933] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3452), 1, - sym_block, - STATE(3569), 1, - sym_label, STATE(2697), 2, sym_line_comment, sym_block_comment, - [82033] = 7, + ACTIONS(3263), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [81950] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1955), 1, + ACTIONS(5692), 1, + sym_identifier, + ACTIONS(5728), 1, + sym_super, + STATE(2042), 1, sym_type_arguments, - STATE(2725), 1, - sym_trait_bounds, STATE(2698), 2, sym_line_comment, sym_block_comment, - [82056] = 5, + [81973] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, - anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(2227), 1, + sym_parameters, + STATE(3291), 1, + sym_type_parameters, STATE(2699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82075] = 7, + [81996] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5862), 1, - anon_sym_RPAREN, - ACTIONS(5864), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3589), 1, + sym_label, + STATE(3604), 1, + sym_block, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82098] = 7, + [82019] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5866), 1, - anon_sym_SEMI, - STATE(3498), 1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(651), 1, + sym_declaration_list, + STATE(3179), 1, sym_where_clause, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82121] = 6, + [82042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(2811), 1, + sym_trait_bounds, + ACTIONS(5871), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82142] = 7, + [82063] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - STATE(1475), 1, - sym_delim_token_tree, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5874), 1, + anon_sym_SEMI, + STATE(3584), 1, + sym_where_clause, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82165] = 7, + [82086] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3590), 1, + STATE(3541), 1, sym_block, + STATE(3589), 1, + sym_label, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82188] = 7, + [82109] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3592), 1, + STATE(3542), 1, sym_block, + STATE(3589), 1, + sym_label, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82211] = 5, + [82132] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4533), 1, + anon_sym_BANG, + ACTIONS(4624), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(5870), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [82230] = 7, + [82155] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3591), 1, - sym_block, + STATE(1365), 1, + sym_declaration_list, + STATE(3327), 1, + sym_where_clause, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82253] = 7, + [82178] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5872), 1, - sym_identifier, - STATE(1592), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3589), 1, + sym_label, + STATE(3617), 1, + sym_block, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82276] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5874), 1, - anon_sym_COMMA, - ACTIONS(4157), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2709), 3, - sym_line_comment, - sym_block_comment, - aux_sym_arguments_repeat1, - [82295] = 7, + [82201] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3569), 1, + STATE(3589), 1, sym_label, - STATE(3579), 1, + STATE(3618), 1, sym_block, - STATE(2710), 2, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [82318] = 7, + [82224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_declaration_list, - STATE(3289), 1, - sym_where_clause, + ACTIONS(5876), 1, + anon_sym_COLON_COLON, + STATE(2710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4786), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82243] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5878), 1, + anon_sym_RPAREN, + ACTIONS(5880), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_slice_pattern_repeat1, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82341] = 5, + [82266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, - anon_sym_COLON_COLON, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(5882), 1, + anon_sym_RPAREN, + ACTIONS(5884), 1, + anon_sym_COMMA, + STATE(2899), 1, + aux_sym_slice_pattern_repeat1, STATE(2712), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82360] = 6, + [82289] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5877), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3589), 1, + sym_label, + STATE(3648), 1, + sym_block, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82381] = 7, + [82312] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5872), 1, - sym_identifier, - STATE(1568), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3589), 1, + sym_label, + STATE(3606), 1, + sym_block, STATE(2714), 2, sym_line_comment, sym_block_comment, - [82404] = 7, + [82335] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3533), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, + STATE(3641), 1, + sym_type_arguments, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82427] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82358] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(398), 1, - sym_block, - STATE(3355), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4800), 1, + anon_sym_for, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + STATE(1956), 1, + sym_type_arguments, STATE(2716), 2, sym_line_comment, sym_block_comment, - [82450] = 6, + [82381] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(4523), 1, anon_sym_DOT_DOT, - ACTIONS(5231), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(4525), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2717), 2, sym_line_comment, sym_block_comment, - [82471] = 5, + [82402] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(3641), 1, + sym_type_arguments, + ACTIONS(5728), 2, + sym_identifier, + sym_super, STATE(2718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82490] = 6, + [82423] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACE, - STATE(2765), 1, - sym_use_list, - ACTIONS(5879), 2, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5692), 1, sym_identifier, + ACTIONS(5728), 1, sym_super, + STATE(2050), 1, + sym_type_arguments, STATE(2719), 2, sym_line_comment, sym_block_comment, - [82511] = 7, + [82446] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, + ACTIONS(5886), 1, + anon_sym_LPAREN, + ACTIONS(5888), 1, + anon_sym_LBRACK, + ACTIONS(5890), 1, anon_sym_LBRACE, - ACTIONS(5883), 1, - anon_sym_for, - ACTIONS(5885), 1, - anon_sym_loop, - ACTIONS(5887), 1, - anon_sym_while, + STATE(2549), 1, + sym_token_tree, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82534] = 6, + [82469] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(3116), 1, - sym_trait_bounds, - ACTIONS(5626), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5892), 1, + anon_sym_LBRACE, + ACTIONS(5894), 1, + anon_sym_for, + ACTIONS(5896), 1, + anon_sym_loop, + ACTIONS(5898), 1, + anon_sym_while, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82555] = 6, + [82492] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2832), 1, - sym_trait_bounds, - ACTIONS(5889), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5360), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_enum_variant_list, + STATE(3317), 1, + sym_where_clause, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82576] = 7, + [82515] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5891), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5620), 1, anon_sym_RPAREN, - ACTIONS(5893), 1, + ACTIONS(5622), 1, anon_sym_COMMA, - STATE(2828), 1, - aux_sym_slice_pattern_repeat1, + STATE(2905), 1, + aux_sym_parameters_repeat1, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82599] = 7, + [82538] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5895), 1, - anon_sym_RPAREN, - ACTIONS(5897), 1, - anon_sym_COMMA, - STATE(2868), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(475), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82622] = 4, + [82561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(3641), 1, + sym_type_arguments, + ACTIONS(5680), 2, + sym_identifier, + sym_super, STATE(2725), 2, sym_line_comment, sym_block_comment, - ACTIONS(5899), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [82639] = 4, + [82582] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(478), 1, + sym_block, + STATE(3637), 1, + sym_label, STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(5901), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [82656] = 7, + [82605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(521), 1, - sym_declaration_list, - STATE(3216), 1, - sym_where_clause, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(3457), 1, + sym_type_arguments, + ACTIONS(5680), 2, + sym_identifier, + sym_super, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82679] = 7, + [82626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5903), 1, - anon_sym_RPAREN, - ACTIONS(5905), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5900), 1, + anon_sym_DQUOTE, + STATE(2539), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5654), 2, + sym_string_content, + sym_escape_sequence, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82702] = 6, + [82647] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(3641), 1, + sym_type_arguments, + ACTIONS(5215), 2, + sym_identifier, + sym_super, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82723] = 7, + [82668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5710), 1, - anon_sym_LBRACK, - ACTIONS(5712), 1, - anon_sym_LBRACE, - STATE(387), 1, - sym_delim_token_tree, - STATE(2730), 2, + ACTIONS(5902), 1, + anon_sym_DQUOTE, + ACTIONS(5904), 2, + sym_string_content, + sym_escape_sequence, + STATE(2730), 3, sym_line_comment, sym_block_comment, - [82746] = 7, + aux_sym_string_literal_repeat1, + [82687] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5055), 1, + anon_sym_PLUS, ACTIONS(5907), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(5909), 1, - anon_sym_for, - ACTIONS(5911), 1, - anon_sym_loop, - ACTIONS(5913), 1, - anon_sym_while, + anon_sym_COMMA, + STATE(2841), 1, + aux_sym_tuple_type_repeat1, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82769] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82710] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(332), 1, + STATE(3424), 1, sym_block, - STATE(3355), 1, + STATE(3589), 1, sym_label, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82792] = 7, + [82733] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_enum_variant_list, - STATE(3065), 1, - sym_where_clause, + ACTIONS(4523), 1, + anon_sym_DOT_DOT, + ACTIONS(5275), 1, + anon_sym_COLON_COLON, + ACTIONS(4525), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82815] = 5, + [82754] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5917), 2, - sym_string_content, - sym_escape_sequence, - STATE(2734), 3, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5083), 1, + anon_sym_LBRACE, + STATE(2824), 1, + sym_block, + STATE(3636), 1, + sym_label, + STATE(2734), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [82834] = 5, + [82777] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - sym_identifier, + ACTIONS(5664), 1, + anon_sym_COLON_COLON, STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(5922), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82853] = 7, + ACTIONS(4750), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82796] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, + ACTIONS(5911), 1, anon_sym_LBRACE, - STATE(1122), 1, - sym_enum_variant_list, - STATE(3108), 1, - sym_where_clause, + ACTIONS(5913), 1, + anon_sym_for, + ACTIONS(5915), 1, + anon_sym_loop, + ACTIONS(5917), 1, + anon_sym_while, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82876] = 7, + [82819] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_RPAREN, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1745), 1, + sym_block, + STATE(3638), 1, + sym_label, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82899] = 7, + [82842] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5930), 1, - anon_sym_COMMA, - STATE(2775), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4668), 1, + anon_sym_DOT_DOT, + ACTIONS(5919), 1, + anon_sym_COLON_COLON, + ACTIONS(4670), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82922] = 7, + [82863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(4513), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5921), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82945] = 7, + [82882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5696), 1, + ACTIONS(5923), 1, sym_identifier, - STATE(3158), 1, - sym_type_arguments, STATE(2740), 2, sym_line_comment, sym_block_comment, - [82968] = 7, + ACTIONS(5925), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [82901] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1961), 1, - sym_parameters, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5927), 1, + anon_sym_SEMI, + STATE(3484), 1, + sym_where_clause, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82991] = 7, + [82924] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4796), 1, - anon_sym_for, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(665), 1, + sym_field_declaration_list, + STATE(3097), 1, + sym_where_clause, STATE(2742), 2, sym_line_comment, sym_block_comment, - [83014] = 7, + [82947] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(714), 1, - sym_declaration_list, - STATE(3152), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(393), 1, + sym_block, + STATE(3600), 1, + sym_label, STATE(2743), 2, sym_line_comment, sym_block_comment, - [83037] = 7, + [82970] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(391), 1, + sym_block, + STATE(3600), 1, + sym_label, STATE(2744), 2, sym_line_comment, sym_block_comment, - [83060] = 7, + [82993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_declaration_list, - STATE(3240), 1, - sym_where_clause, + ACTIONS(4712), 1, + anon_sym_GT, + ACTIONS(5640), 1, + anon_sym_COMMA, + ACTIONS(5708), 1, + anon_sym_EQ, + STATE(2925), 1, + aux_sym_type_parameters_repeat1, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83083] = 7, + [83016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(5508), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, + ACTIONS(5185), 1, + anon_sym_LPAREN, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5191), 1, + anon_sym_LBRACE, + STATE(1394), 1, + sym_delim_token_tree, STATE(2746), 2, sym_line_comment, sym_block_comment, - [83106] = 7, + [83039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5932), 1, - anon_sym_RPAREN, - ACTIONS(5934), 1, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, anon_sym_COMMA, - STATE(2779), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5708), 1, + anon_sym_EQ, + STATE(2808), 1, + aux_sym_type_parameters_repeat1, STATE(2747), 2, sym_line_comment, sym_block_comment, - [83129] = 7, + [83062] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5936), 1, + ACTIONS(4812), 1, anon_sym_for, - STATE(1953), 1, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + STATE(1956), 1, sym_type_arguments, STATE(2748), 2, sym_line_comment, sym_block_comment, - [83152] = 7, + [83085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5938), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5929), 1, + anon_sym_SEMI, + ACTIONS(5931), 1, + anon_sym_EQ, + ACTIONS(5933), 1, + anon_sym_else, STATE(2749), 2, sym_line_comment, sym_block_comment, - [83175] = 7, + [83108] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, - anon_sym_SEMI, - STATE(3492), 1, - sym_where_clause, + ACTIONS(4509), 1, + anon_sym_LT2, + STATE(3457), 1, + sym_type_arguments, + ACTIONS(5728), 2, + sym_identifier, + sym_super, STATE(2750), 2, sym_line_comment, sym_block_comment, - [83198] = 7, + [83129] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(1456), 1, - sym_type_arguments, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_declaration_list, + STATE(3310), 1, + sym_where_clause, STATE(2751), 2, sym_line_comment, sym_block_comment, - [83221] = 7, + [83152] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5942), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(413), 1, + sym_block, + STATE(3600), 1, + sym_label, STATE(2752), 2, sym_line_comment, sym_block_comment, - [83244] = 5, + [83175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5944), 1, - anon_sym_in, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5935), 1, + anon_sym_SEMI, + ACTIONS(5937), 1, + anon_sym_EQ, + ACTIONS(5939), 1, + anon_sym_else, STATE(2753), 2, sym_line_comment, sym_block_comment, - ACTIONS(5946), 3, - sym_self, - sym_super, - sym_crate, - [83263] = 7, + [83198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, + ACTIONS(5941), 1, anon_sym_COMMA, - STATE(2835), 1, - aux_sym_parameters_repeat1, - STATE(2754), 2, + ACTIONS(4201), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2754), 3, sym_line_comment, sym_block_comment, - [83286] = 7, + aux_sym_arguments_repeat1, + [83217] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3488), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + ACTIONS(5944), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, STATE(2755), 2, sym_line_comment, sym_block_comment, - [83309] = 7, + [83240] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3311), 1, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + ACTIONS(5946), 1, + anon_sym_for, + STATE(1956), 1, sym_type_arguments, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83332] = 4, + [83263] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5666), 1, + sym_identifier, + STATE(1568), 1, + sym_type_arguments, STATE(2757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83348] = 6, + [83286] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - anon_sym_RBRACE, - ACTIONS(5950), 1, - anon_sym_COMMA, - STATE(2808), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4019), 1, + anon_sym_LT2, + ACTIONS(4143), 1, + anon_sym_COLON_COLON, + ACTIONS(4834), 1, + anon_sym_BANG, + STATE(1632), 1, + sym_type_arguments, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83368] = 6, + [83309] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(3299), 1, anon_sym_LT2, - ACTIONS(5952), 1, - anon_sym_for, - STATE(1955), 1, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5806), 1, + sym_identifier, + STATE(1484), 1, sym_type_arguments, STATE(2759), 2, sym_line_comment, sym_block_comment, - [83388] = 6, + [83332] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5954), 1, - anon_sym_SEMI, - STATE(1149), 1, - sym_declaration_list, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5712), 1, + anon_sym_COLON_COLON, + ACTIONS(5948), 1, + anon_sym_for, + STATE(1956), 1, + sym_type_arguments, STATE(2760), 2, sym_line_comment, sym_block_comment, - [83408] = 6, + [83355] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5956), 1, - anon_sym_SEMI, - STATE(606), 1, + STATE(1273), 1, sym_declaration_list, + STATE(3268), 1, + sym_where_clause, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83428] = 6, + [83378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5958), 1, - anon_sym_SEMI, - STATE(755), 1, - sym_declaration_list, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1483), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2762), 2, sym_line_comment, sym_block_comment, - [83448] = 4, + [83401] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5950), 1, + anon_sym_SEMI, + STATE(3451), 1, + sym_where_clause, STATE(2763), 2, sym_line_comment, sym_block_comment, - ACTIONS(5960), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83464] = 6, - ACTIONS(103), 1, + [83424] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5962), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(5952), 1, + aux_sym_token_repetition_pattern_token1, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83484] = 4, + ACTIONS(5954), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5852), 1, + anon_sym_COLON_COLON, STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(5964), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83500] = 6, + ACTIONS(4756), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - anon_sym_SEMI, - STATE(757), 1, - sym_declaration_list, STATE(2766), 2, sym_line_comment, sym_block_comment, - [83520] = 5, + ACTIONS(955), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83479] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5968), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3476), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2767), 2, sym_line_comment, sym_block_comment, - [83538] = 6, + [83502] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(5970), 1, - anon_sym_PIPE, - STATE(3034), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4503), 1, + anon_sym_LPAREN, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(2207), 1, + sym_parameters, + STATE(3088), 1, + sym_type_parameters, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83558] = 5, + [83525] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, - anon_sym_RBRACE, - ACTIONS(5974), 1, - anon_sym_COMMA, - STATE(2769), 3, + ACTIONS(5876), 1, + anon_sym_COLON_COLON, + STATE(2769), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [83576] = 4, + ACTIONS(4756), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83544] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3477), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83592] = 6, + [83567] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(935), 1, - anon_sym_RBRACK, - ACTIONS(4149), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + ACTIONS(5956), 1, + anon_sym_LBRACE, + ACTIONS(5958), 1, + anon_sym_for, + ACTIONS(5960), 1, + anon_sym_loop, + ACTIONS(5962), 1, + anon_sym_while, STATE(2771), 2, sym_line_comment, sym_block_comment, - [83612] = 4, + [83590] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5553), 1, + anon_sym_COMMA, + ACTIONS(5964), 1, + anon_sym_PIPE, + STATE(2784), 1, + aux_sym_closure_parameters_repeat1, STATE(2772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4836), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83628] = 6, + [83610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_RPAREN, - ACTIONS(5977), 1, - anon_sym_COMMA, - STATE(2964), 1, - aux_sym_tuple_pattern_repeat1, STATE(2773), 2, sym_line_comment, sym_block_comment, - [83648] = 6, + ACTIONS(5966), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - ACTIONS(5979), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(4962), 1, + anon_sym_RBRACE, + ACTIONS(5968), 1, + anon_sym_COMMA, + STATE(2961), 1, + aux_sym_enum_variant_list_repeat2, STATE(2774), 2, sym_line_comment, sym_block_comment, - [83668] = 6, + [83646] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_RBRACK, - ACTIONS(5981), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, STATE(2775), 2, sym_line_comment, sym_block_comment, - [83688] = 6, + ACTIONS(4906), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83662] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5983), 1, - anon_sym_RBRACE, - ACTIONS(5985), 1, - anon_sym_COMMA, - STATE(2827), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5970), 1, + anon_sym_SEMI, + STATE(552), 1, + sym_declaration_list, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83708] = 6, + [83682] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5987), 1, - anon_sym_RBRACE, - ACTIONS(5989), 1, + ACTIONS(5972), 1, + anon_sym_RPAREN, + ACTIONS(5974), 1, anon_sym_COMMA, - STATE(2830), 1, - aux_sym_struct_pattern_repeat1, + STATE(2798), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2777), 2, sym_line_comment, sym_block_comment, - [83728] = 4, + [83702] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5976), 1, + anon_sym_SEMI, + STATE(554), 1, + sym_declaration_list, STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(5991), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83744] = 6, + [83722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3185), 1, - anon_sym_RPAREN, - ACTIONS(5993), 1, + ACTIONS(5549), 1, + anon_sym_COLON, + ACTIONS(5978), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3001), 1, - aux_sym_tuple_type_repeat1, STATE(2779), 2, sym_line_comment, sym_block_comment, - [83764] = 6, + [83740] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5995), 1, - anon_sym_SEMI, - STATE(723), 1, - sym_declaration_list, + ACTIONS(5980), 1, + sym_identifier, + ACTIONS(5982), 1, + anon_sym_await, + ACTIONS(5984), 1, + sym_integer_literal, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83784] = 5, + [83760] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5666), 1, - anon_sym_EQ, - ACTIONS(5889), 2, - anon_sym_GT, + ACTIONS(4962), 1, + anon_sym_RBRACE, + ACTIONS(5968), 1, anon_sym_COMMA, + STATE(2966), 1, + aux_sym_enum_variant_list_repeat2, STATE(2781), 2, sym_line_comment, sym_block_comment, - [83802] = 6, + [83780] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, - anon_sym_COMMA, - STATE(2835), 1, - aux_sym_parameters_repeat1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5986), 1, + anon_sym_SEMI, + ACTIONS(5988), 1, + anon_sym_RBRACK, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83822] = 5, + [83800] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5997), 2, - anon_sym_GT, + ACTIONS(933), 1, + anon_sym_RBRACK, + ACTIONS(4141), 1, anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2783), 2, sym_line_comment, sym_block_comment, - [83840] = 6, + [83820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5999), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, - anon_sym_EQ, - STATE(2784), 2, + ACTIONS(5978), 1, + anon_sym_PIPE, + ACTIONS(5990), 1, + anon_sym_COMMA, + STATE(2784), 3, sym_line_comment, sym_block_comment, - [83860] = 4, + aux_sym_closure_parameters_repeat1, + [83838] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2997), 1, + anon_sym_RPAREN, + ACTIONS(5993), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_tuple_pattern_repeat1, STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(6003), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83876] = 4, + [83858] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(4972), 1, + anon_sym_COLON_COLON, + STATE(1369), 1, + sym_type_arguments, STATE(2786), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83892] = 6, + [83878] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_COMMA, - STATE(2838), 1, - aux_sym_enum_variant_list_repeat2, STATE(2787), 2, sym_line_comment, sym_block_comment, - [83912] = 5, + ACTIONS(4880), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83894] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6009), 1, - anon_sym_RBRACE, - ACTIONS(6011), 1, + ACTIONS(3087), 1, + anon_sym_RBRACK, + ACTIONS(5995), 1, anon_sym_COMMA, - STATE(2788), 3, + STATE(2691), 1, + aux_sym_slice_pattern_repeat1, + STATE(2788), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [83930] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [83914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6014), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5997), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2789), 2, sym_line_comment, sym_block_comment, - [83950] = 6, + [83932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4846), 1, - anon_sym_LBRACE, - STATE(1955), 1, - sym_type_arguments, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83970] = 4, + ACTIONS(4924), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83948] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5999), 1, + anon_sym_SEMI, + STATE(615), 1, + sym_declaration_list, STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(4908), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83986] = 4, + [83968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6003), 1, + anon_sym_COLON, + ACTIONS(6001), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2792), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84002] = 6, + [83986] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4708), 1, - anon_sym_GT, - ACTIONS(6016), 1, + ACTIONS(6005), 1, + anon_sym_RBRACE, + ACTIONS(6007), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, + STATE(2898), 1, + aux_sym_struct_pattern_repeat1, STATE(2793), 2, sym_line_comment, sym_block_comment, - [84022] = 4, + [84006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -179767,204 +180276,201 @@ static const uint16_t ts_small_parse_table[] = { STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84038] = 6, + ACTIONS(6009), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [84022] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5469), 1, + ACTIONS(6011), 1, + anon_sym_RBRACE, + ACTIONS(6013), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, + STATE(3006), 1, + aux_sym_field_initializer_list_repeat1, STATE(2795), 2, sym_line_comment, sym_block_comment, - [84058] = 6, + [84042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5469), 1, + ACTIONS(6015), 1, + anon_sym_RBRACE, + ACTIONS(6017), 1, anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_parameters_repeat1, + STATE(2901), 1, + aux_sym_struct_pattern_repeat1, STATE(2796), 2, sym_line_comment, sym_block_comment, - [84078] = 6, + [84062] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_RBRACK, - ACTIONS(4165), 1, + ACTIONS(3191), 1, + anon_sym_RPAREN, + ACTIONS(6019), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + STATE(2942), 1, + aux_sym_tuple_type_repeat1, STATE(2797), 2, sym_line_comment, sym_block_comment, - [84098] = 6, + [84082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6018), 1, - anon_sym_SEMI, - STATE(621), 1, - sym_declaration_list, - STATE(2798), 2, + ACTIONS(6021), 1, + anon_sym_RPAREN, + ACTIONS(6023), 1, + anon_sym_COMMA, + STATE(2798), 3, sym_line_comment, sym_block_comment, - [84118] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [84100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_SEMI, - STATE(1171), 1, - sym_declaration_list, STATE(2799), 2, sym_line_comment, sym_block_comment, - [84138] = 6, + ACTIONS(6026), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84116] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - sym_mutable_specifier, - ACTIONS(6024), 1, - sym_self, + ACTIONS(3221), 1, + anon_sym_RPAREN, + ACTIONS(6028), 1, + anon_sym_COMMA, + STATE(2942), 1, + aux_sym_tuple_type_repeat1, STATE(2800), 2, sym_line_comment, sym_block_comment, - [84158] = 6, + [84136] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_SEMI, - ACTIONS(6028), 1, - anon_sym_EQ, + ACTIONS(4702), 1, + anon_sym_GT, + ACTIONS(6030), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2801), 2, sym_line_comment, sym_block_comment, - [84178] = 6, + [84156] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6030), 1, - anon_sym_RBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, ACTIONS(6032), 1, - anon_sym_COMMA, - STATE(2848), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_SEMI, + ACTIONS(6034), 1, + anon_sym_EQ, STATE(2802), 2, sym_line_comment, sym_block_comment, - [84198] = 6, + [84176] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6034), 1, - anon_sym_SEMI, - STATE(3438), 1, - sym_where_clause, + ACTIONS(5557), 1, + anon_sym_RPAREN, + ACTIONS(5559), 1, + anon_sym_COMMA, + STATE(2820), 1, + aux_sym_parameters_repeat1, STATE(2803), 2, sym_line_comment, sym_block_comment, - [84218] = 4, + [84196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6036), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2804), 2, sym_line_comment, sym_block_comment, - ACTIONS(6036), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84234] = 6, + [84214] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6038), 1, - anon_sym_SEMI, - STATE(3460), 1, - sym_where_clause, STATE(2805), 2, sym_line_comment, sym_block_comment, - [84254] = 6, + ACTIONS(983), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84230] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6040), 1, - anon_sym_SEMI, - STATE(1192), 1, - sym_declaration_list, + ACTIONS(5620), 1, + anon_sym_RPAREN, + ACTIONS(5622), 1, + anon_sym_COMMA, + STATE(2905), 1, + aux_sym_parameters_repeat1, STATE(2806), 2, sym_line_comment, sym_block_comment, - [84274] = 5, + [84250] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6038), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, STATE(2807), 2, sym_line_comment, sym_block_comment, - [84292] = 6, + [84270] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4886), 1, - anon_sym_RBRACE, - ACTIONS(6042), 1, + ACTIONS(4704), 1, + anon_sym_GT, + ACTIONS(5569), 1, anon_sym_COMMA, - STATE(2788), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2808), 2, sym_line_comment, sym_block_comment, - [84312] = 4, + [84290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -179972,103 +180478,105 @@ static const uint16_t ts_small_parse_table[] = { STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(6044), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [84328] = 6, + ACTIONS(4882), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84306] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6046), 1, - anon_sym_SEMI, - STATE(3571), 1, - sym_where_clause, + ACTIONS(6040), 1, + anon_sym_RBRACE, + ACTIONS(6042), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_struct_pattern_repeat1, STATE(2810), 2, sym_line_comment, sym_block_comment, - [84348] = 6, + [84326] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, - anon_sym_GT, - ACTIONS(6048), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, STATE(2811), 2, sym_line_comment, sym_block_comment, - [84368] = 6, + ACTIONS(6044), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [84342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4325), 1, - anon_sym_RBRACE, - ACTIONS(6050), 1, - anon_sym_COMMA, - STATE(3003), 1, - aux_sym_use_list_repeat1, STATE(2812), 2, sym_line_comment, sym_block_comment, - [84388] = 6, + ACTIONS(4894), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84358] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(4151), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6046), 1, + anon_sym_SEMI, + ACTIONS(6048), 1, + anon_sym_EQ, STATE(2813), 2, sym_line_comment, sym_block_comment, - [84408] = 4, + [84378] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4704), 1, + anon_sym_GT, + ACTIONS(5569), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_type_parameters_repeat1, STATE(2814), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84424] = 4, + [84398] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1637), 1, + anon_sym_GT, + ACTIONS(6050), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_type_arguments_repeat1, STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(6052), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84440] = 4, + [84418] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1637), 1, + anon_sym_GT, + ACTIONS(6050), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(6054), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84456] = 4, + [84438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180076,201 +180584,201 @@ static const uint16_t ts_small_parse_table[] = { STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(6056), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84472] = 4, + ACTIONS(4918), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6052), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(6058), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84488] = 4, + [84472] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6054), 1, + anon_sym_RBRACE, + ACTIONS(6056), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_enum_variant_list_repeat2, STATE(2819), 2, sym_line_comment, sym_block_comment, - ACTIONS(6060), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84504] = 4, + [84492] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1465), 1, + anon_sym_RPAREN, + ACTIONS(5573), 1, + anon_sym_COMMA, + STATE(2909), 1, + aux_sym_parameters_repeat1, STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(6062), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84520] = 6, + [84512] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(6064), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6058), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, STATE(2821), 2, sym_line_comment, sym_block_comment, - [84540] = 6, + [84530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6066), 1, - anon_sym_SEMI, - STATE(531), 1, - sym_declaration_list, - STATE(2822), 2, + ACTIONS(6058), 1, + anon_sym_RPAREN, + ACTIONS(6060), 1, + anon_sym_COMMA, + STATE(2822), 3, sym_line_comment, sym_block_comment, - [84560] = 6, + aux_sym_tuple_pattern_repeat1, + [84548] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_GT, - ACTIONS(6068), 1, + ACTIONS(1465), 1, + anon_sym_RPAREN, + ACTIONS(5573), 1, anon_sym_COMMA, - STATE(2863), 1, - aux_sym_type_arguments_repeat1, + STATE(2828), 1, + aux_sym_parameters_repeat1, STATE(2823), 2, sym_line_comment, sym_block_comment, - [84580] = 6, + [84568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_GT, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, STATE(2824), 2, sym_line_comment, sym_block_comment, - [84600] = 6, + ACTIONS(1407), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3067), 1, - anon_sym_RPAREN, - ACTIONS(6070), 1, + ACTIONS(6063), 1, + anon_sym_RBRACE, + ACTIONS(6065), 1, anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2825), 2, + STATE(2825), 3, sym_line_comment, sym_block_comment, - [84620] = 6, + aux_sym_field_declaration_list_repeat1, + [84602] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5473), 1, + ACTIONS(4942), 1, + anon_sym_RBRACE, + ACTIONS(6068), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, + STATE(2825), 1, + aux_sym_field_declaration_list_repeat1, STATE(2826), 2, sym_line_comment, sym_block_comment, - [84640] = 6, + [84622] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5189), 1, - anon_sym_RBRACE, - ACTIONS(6072), 1, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(6070), 1, anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2827), 2, sym_line_comment, sym_block_comment, - [84660] = 6, + [84642] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, + ACTIONS(1467), 1, anon_sym_RPAREN, - ACTIONS(6074), 1, + ACTIONS(6072), 1, anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, + STATE(2909), 1, + aux_sym_parameters_repeat1, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84680] = 6, + [84662] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, - anon_sym_GT, - ACTIONS(6078), 1, - anon_sym_COMMA, - STATE(3018), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6074), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84700] = 6, + [84682] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5191), 1, - anon_sym_RBRACE, - ACTIONS(6080), 1, + ACTIONS(5553), 1, anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(6076), 1, + anon_sym_PIPE, + STATE(2772), 1, + aux_sym_closure_parameters_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84720] = 6, + [84702] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - sym_identifier, - ACTIONS(6084), 1, - anon_sym_ref, - ACTIONS(6086), 1, - sym_mutable_specifier, + ACTIONS(5233), 1, + anon_sym_RBRACE, + ACTIONS(6078), 1, + anon_sym_COMMA, + STATE(2863), 1, + aux_sym_struct_pattern_repeat1, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84740] = 4, + [84722] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180278,1146 +180786,1155 @@ static const uint16_t ts_small_parse_table[] = { STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(6088), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [84756] = 6, + ACTIONS(4786), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84738] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6090), 1, - anon_sym_SEMI, - STATE(533), 1, - sym_declaration_list, + ACTIONS(4710), 1, + anon_sym_GT, + ACTIONS(6080), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84776] = 6, + [84758] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, - anon_sym_RBRACE, - ACTIONS(6092), 1, - anon_sym_COMMA, - STATE(2788), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + ACTIONS(6082), 1, + anon_sym_GT, + STATE(3257), 1, + sym_lifetime, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84796] = 6, + [84778] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, + ACTIONS(6084), 1, + anon_sym_move, + STATE(216), 1, + sym_closure_parameters, STATE(2835), 2, sym_line_comment, sym_block_comment, - [84816] = 6, + [84798] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, - anon_sym_COMMA, - STATE(2869), 1, - aux_sym_parameters_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6086), 1, + anon_sym_SEMI, + STATE(626), 1, + sym_declaration_list, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84836] = 6, + [84818] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5473), 1, + ACTIONS(903), 1, + anon_sym_RBRACK, + ACTIONS(4129), 1, anon_sym_COMMA, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84856] = 6, + [84838] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(6094), 1, + ACTIONS(4712), 1, + anon_sym_GT, + ACTIONS(5640), 1, anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2838), 2, sym_line_comment, sym_block_comment, - [84876] = 6, + [84858] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(6094), 1, + ACTIONS(6082), 1, + anon_sym_GT, + ACTIONS(6088), 1, anon_sym_COMMA, - STATE(2871), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2929), 1, + aux_sym_for_lifetimes_repeat1, STATE(2839), 2, sym_line_comment, sym_block_comment, - [84896] = 5, + [84878] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5854), 1, - anon_sym_RPAREN, - ACTIONS(6096), 1, + ACTIONS(4712), 1, + anon_sym_GT, + ACTIONS(5640), 1, anon_sym_COMMA, - STATE(2840), 3, + STATE(2925), 1, + aux_sym_type_parameters_repeat1, + STATE(2840), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [84914] = 6, + [84898] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6099), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(3205), 1, + anon_sym_RPAREN, + ACTIONS(6090), 1, + anon_sym_COMMA, + STATE(2942), 1, + aux_sym_tuple_type_repeat1, STATE(2841), 2, sym_line_comment, sym_block_comment, - [84934] = 6, + [84918] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4686), 1, + ACTIONS(1635), 1, anon_sym_GT, - ACTIONS(6101), 1, + ACTIONS(6092), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2842), 2, sym_line_comment, sym_block_comment, - [84954] = 6, + [84938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4714), 1, + ACTIONS(5571), 1, anon_sym_GT, - ACTIONS(6103), 1, + ACTIONS(6094), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2843), 2, + STATE(2843), 3, sym_line_comment, sym_block_comment, - [84974] = 6, + aux_sym_type_arguments_repeat1, + [84956] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(6105), 1, + ACTIONS(6097), 1, anon_sym_SEMI, - STATE(1222), 1, + STATE(1260), 1, sym_declaration_list, STATE(2844), 2, sym_line_comment, sym_block_comment, - [84994] = 6, + [84976] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6107), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, + ACTIONS(6099), 1, + anon_sym_RPAREN, + ACTIONS(6101), 1, + anon_sym_COMMA, + STATE(2798), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2845), 2, sym_line_comment, sym_block_comment, - [85014] = 6, + [84996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6109), 1, - anon_sym_SEMI, - STATE(689), 1, - sym_declaration_list, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6103), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2846), 2, sym_line_comment, sym_block_comment, - [85034] = 6, + [85014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6111), 1, - anon_sym_SEMI, - ACTIONS(6113), 1, - anon_sym_EQ, + ACTIONS(4019), 1, + anon_sym_LT2, + ACTIONS(4970), 1, + anon_sym_COLON_COLON, + STATE(1632), 1, + sym_type_arguments, STATE(2847), 2, sym_line_comment, sym_block_comment, - [85054] = 6, + [85034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4982), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6105), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, STATE(2848), 2, sym_line_comment, sym_block_comment, - [85074] = 6, + [85052] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4982), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_COMMA, - STATE(2881), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6107), 1, + anon_sym_SEMI, + ACTIONS(6109), 1, + anon_sym_EQ, STATE(2849), 2, sym_line_comment, sym_block_comment, - [85094] = 6, + [85072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6117), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym_declaration_list, + ACTIONS(6113), 1, + anon_sym_COLON, + ACTIONS(6111), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2850), 2, sym_line_comment, sym_block_comment, - [85114] = 6, + [85090] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6119), 1, - anon_sym_SEMI, - ACTIONS(6121), 1, - anon_sym_EQ, + ACTIONS(6115), 1, + anon_sym_RBRACE, + ACTIONS(6117), 1, + anon_sym_COMMA, + STATE(3074), 1, + aux_sym_field_declaration_list_repeat1, STATE(2851), 2, sym_line_comment, sym_block_comment, - [85134] = 4, + [85110] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4816), 1, + anon_sym_LBRACE, + STATE(1958), 1, + sym_type_arguments, STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4906), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85150] = 6, + [85130] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6123), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6119), 1, anon_sym_SEMI, - ACTIONS(6125), 1, - anon_sym_EQ, + STATE(3449), 1, + sym_where_clause, STATE(2853), 2, sym_line_comment, sym_block_comment, - [85170] = 6, + [85150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6127), 1, - anon_sym_SEMI, - STATE(3497), 1, - sym_where_clause, STATE(2854), 2, sym_line_comment, sym_block_comment, - [85190] = 4, + ACTIONS(4756), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6121), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4812), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85206] = 5, + [85184] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6131), 1, - anon_sym_COLON, - ACTIONS(6129), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6123), 1, + anon_sym_SEMI, + STATE(3453), 1, + sym_where_clause, STATE(2856), 2, sym_line_comment, sym_block_comment, - [85224] = 6, + [85204] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6133), 1, - anon_sym_RBRACE, - ACTIONS(6135), 1, + ACTIONS(6125), 1, + anon_sym_RPAREN, + ACTIONS(6127), 1, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_struct_pattern_repeat1, + STATE(2798), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2857), 2, sym_line_comment, sym_block_comment, - [85244] = 6, + [85224] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(6137), 1, + ACTIONS(6129), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(1282), 1, sym_declaration_list, STATE(2858), 2, sym_line_comment, sym_block_comment, - [85264] = 5, + [85244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6141), 1, - anon_sym_COLON, - ACTIONS(6139), 2, - anon_sym_RBRACE, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(5820), 2, + anon_sym_GT, anon_sym_COMMA, STATE(2859), 2, sym_line_comment, sym_block_comment, - [85282] = 6, + [85262] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(957), 1, - anon_sym_RPAREN, - ACTIONS(6143), 1, + ACTIONS(4980), 1, + anon_sym_RBRACE, + ACTIONS(6131), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + STATE(2825), 1, + aux_sym_field_declaration_list_repeat1, STATE(2860), 2, sym_line_comment, sym_block_comment, - [85302] = 6, + [85282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(6145), 1, - anon_sym_SEMI, - ACTIONS(6147), 1, - anon_sym_EQ, + ACTIONS(6133), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2861), 2, sym_line_comment, sym_block_comment, - [85322] = 4, + [85300] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4884), 1, + anon_sym_RBRACE, + ACTIONS(6135), 1, + anon_sym_COMMA, + STATE(2988), 1, + aux_sym_field_initializer_list_repeat1, STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(6149), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85338] = 6, + [85320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6151), 1, + ACTIONS(6137), 1, + anon_sym_RBRACE, + ACTIONS(6139), 1, anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, - STATE(2863), 2, + STATE(2863), 3, sym_line_comment, sym_block_comment, - [85358] = 4, + aux_sym_struct_pattern_repeat1, + [85338] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4980), 1, + anon_sym_RBRACE, + ACTIONS(6131), 1, + anon_sym_COMMA, + STATE(2826), 1, + aux_sym_field_declaration_list_repeat1, STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85374] = 6, + [85358] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, - anon_sym_GT, - ACTIONS(6153), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6142), 1, + anon_sym_SEMI, + STATE(3469), 1, + sym_where_clause, STATE(2865), 2, sym_line_comment, sym_block_comment, - [85394] = 6, + [85378] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, - anon_sym_RPAREN, - ACTIONS(5897), 1, + ACTIONS(1633), 1, + anon_sym_GT, + ACTIONS(6144), 1, anon_sym_COMMA, - STATE(2868), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2870), 1, + aux_sym_type_arguments_repeat1, STATE(2866), 2, sym_line_comment, sym_block_comment, - [85414] = 6, + [85398] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6155), 1, - anon_sym_SEMI, - STATE(494), 1, - sym_declaration_list, + ACTIONS(1633), 1, + anon_sym_GT, + ACTIONS(6144), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2867), 2, sym_line_comment, sym_block_comment, - [85434] = 6, + [85418] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2993), 1, - anon_sym_RPAREN, - ACTIONS(6157), 1, - anon_sym_COMMA, - STATE(2964), 1, - aux_sym_tuple_pattern_repeat1, STATE(2868), 2, sym_line_comment, sym_block_comment, - [85454] = 6, + ACTIONS(4513), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, STATE(2869), 2, sym_line_comment, sym_block_comment, - [85474] = 6, + ACTIONS(4904), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85450] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RPAREN, - ACTIONS(6161), 1, + ACTIONS(1625), 1, + anon_sym_GT, + ACTIONS(6146), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2870), 2, sym_line_comment, sym_block_comment, - [85494] = 6, + [85470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4984), 1, - anon_sym_RBRACE, - ACTIONS(6163), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6148), 1, + anon_sym_SEMI, + STATE(561), 1, + sym_declaration_list, STATE(2871), 2, sym_line_comment, sym_block_comment, - [85514] = 4, + [85490] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3069), 1, + anon_sym_RPAREN, + ACTIONS(6150), 1, + anon_sym_COMMA, + STATE(2691), 1, + aux_sym_slice_pattern_repeat1, STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85530] = 4, + [85510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6152), 1, + anon_sym_SEMI, + STATE(563), 1, + sym_declaration_list, STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4862), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85546] = 6, + [85530] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6165), 1, - anon_sym_SEMI, - STATE(1271), 1, - sym_declaration_list, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, STATE(2874), 2, sym_line_comment, sym_block_comment, - [85566] = 6, + [85550] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6167), 1, - anon_sym_SEMI, - STATE(1273), 1, - sym_declaration_list, + ACTIONS(6154), 1, + anon_sym_move, + STATE(230), 1, + sym_closure_parameters, STATE(2875), 2, sym_line_comment, sym_block_comment, - [85586] = 4, + [85570] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(943), 1, + anon_sym_RPAREN, + ACTIONS(4163), 1, + anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85602] = 4, + [85590] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6156), 1, + anon_sym_SEMI, + ACTIONS(6158), 1, + anon_sym_EQ, STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85618] = 6, + [85610] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(6160), 1, + anon_sym_AMP_AMP, + ACTIONS(4289), 2, anon_sym_LBRACE, - ACTIONS(6169), 1, - anon_sym_SEMI, - STATE(1279), 1, - sym_declaration_list, + anon_sym_SQUOTE, STATE(2878), 2, sym_line_comment, sym_block_comment, - [85638] = 6, + [85628] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6171), 1, - anon_sym_SEMI, - STATE(1281), 1, - sym_declaration_list, STATE(2879), 2, sym_line_comment, sym_block_comment, - [85658] = 6, + ACTIONS(6162), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6173), 1, - anon_sym_SEMI, - ACTIONS(6175), 1, - anon_sym_EQ, + ACTIONS(6160), 1, + anon_sym_AMP_AMP, + ACTIONS(6164), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2880), 2, sym_line_comment, sym_block_comment, - [85678] = 6, + [85662] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4986), 1, - anon_sym_RBRACE, - ACTIONS(6177), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, STATE(2881), 2, sym_line_comment, sym_block_comment, - [85698] = 4, + ACTIONS(4912), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, + ACTIONS(5820), 1, + anon_sym_GT, + ACTIONS(6166), 1, + anon_sym_COMMA, + STATE(2882), 3, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85714] = 5, + aux_sym_type_parameters_repeat1, + [85696] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6179), 1, - anon_sym_AMP_AMP, - ACTIONS(4249), 2, + ACTIONS(4958), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6169), 1, + anon_sym_SEMI, + STATE(588), 1, + sym_declaration_list, STATE(2883), 2, sym_line_comment, sym_block_comment, - [85732] = 4, + [85716] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5269), 1, + anon_sym_RBRACE, + ACTIONS(6171), 1, + anon_sym_COMMA, + STATE(2863), 1, + aux_sym_struct_pattern_repeat1, STATE(2884), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4884), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85748] = 4, + sym_line_comment, + sym_block_comment, + [85736] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2885), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4840), 3, + ACTIONS(6173), 1, anon_sym_EQ_GT, + ACTIONS(6175), 1, anon_sym_PIPE, + ACTIONS(6177), 1, anon_sym_if, - [85764] = 4, + STATE(2885), 2, + sym_line_comment, + sym_block_comment, + [85756] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6179), 1, + anon_sym_SEMI, + STATE(569), 1, + sym_declaration_list, STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4902), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85780] = 5, + [85776] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6179), 1, - anon_sym_AMP_AMP, - ACTIONS(6181), 2, + ACTIONS(3382), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6181), 1, + anon_sym_COLON_COLON, + STATE(1471), 1, + sym_field_initializer_list, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85798] = 6, + [85796] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, + ACTIONS(957), 1, + anon_sym_RBRACK, ACTIONS(6183), 1, - anon_sym_SEMI, - STATE(3509), 1, - sym_where_clause, + anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [85818] = 6, + [85816] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, ACTIONS(6185), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(590), 1, sym_declaration_list, STATE(2889), 2, sym_line_comment, sym_block_comment, - [85838] = 6, + [85836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6187), 1, - anon_sym_SEMI, - STATE(1320), 1, - sym_declaration_list, + ACTIONS(4593), 1, + anon_sym_COLON_COLON, + ACTIONS(5404), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85858] = 6, + [85854] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6189), 1, - anon_sym_SEMI, - STATE(3527), 1, - sym_where_clause, + ACTIONS(5770), 1, + anon_sym_RPAREN, + ACTIONS(5772), 1, + anon_sym_COMMA, + STATE(2955), 1, + aux_sym_tuple_pattern_repeat1, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85878] = 6, + [85874] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6191), 1, - anon_sym_SEMI, - STATE(1326), 1, - sym_declaration_list, + ACTIONS(1643), 1, + anon_sym_GT, + ACTIONS(6187), 1, + anon_sym_COMMA, + STATE(2959), 1, + aux_sym_type_arguments_repeat1, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85898] = 6, + [85894] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6193), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, + ACTIONS(1643), 1, + anon_sym_GT, + ACTIONS(6187), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85918] = 6, + [85914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6195), 1, - anon_sym_SEMI, - STATE(1334), 1, - sym_declaration_list, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6189), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2894), 2, sym_line_comment, sym_block_comment, - [85938] = 6, + [85932] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(1336), 1, - sym_declaration_list, + ACTIONS(3055), 1, + anon_sym_RPAREN, + ACTIONS(6191), 1, + anon_sym_COMMA, + STATE(2691), 1, + aux_sym_slice_pattern_repeat1, STATE(2895), 2, sym_line_comment, sym_block_comment, - [85958] = 6, + [85952] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6199), 1, - anon_sym_SEMI, - ACTIONS(6201), 1, - anon_sym_EQ, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85978] = 6, + ACTIONS(4876), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85968] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1495), 1, - anon_sym_RPAREN, - ACTIONS(6203), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6193), 1, + anon_sym_SEMI, + ACTIONS(6195), 1, + anon_sym_EQ, STATE(2897), 2, sym_line_comment, sym_block_comment, - [85998] = 6, + [85988] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6205), 1, - anon_sym_SEMI, - STATE(1352), 1, - sym_declaration_list, + ACTIONS(5197), 1, + anon_sym_RBRACE, + ACTIONS(6197), 1, + anon_sym_COMMA, + STATE(2863), 1, + aux_sym_struct_pattern_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [86018] = 6, + [86008] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6207), 1, - anon_sym_SEMI, - STATE(1354), 1, - sym_declaration_list, + ACTIONS(3075), 1, + anon_sym_RPAREN, + ACTIONS(6199), 1, + anon_sym_COMMA, + STATE(2691), 1, + aux_sym_slice_pattern_repeat1, STATE(2899), 2, sym_line_comment, sym_block_comment, - [86038] = 6, + [86028] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6209), 1, - anon_sym_SEMI, - ACTIONS(6211), 1, - anon_sym_EQ, + ACTIONS(6201), 1, + sym_identifier, + ACTIONS(6203), 1, + anon_sym_ref, + ACTIONS(6205), 1, + sym_mutable_specifier, STATE(2900), 2, sym_line_comment, sym_block_comment, - [86058] = 6, + [86048] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6213), 1, + ACTIONS(5199), 1, anon_sym_RBRACE, - ACTIONS(6215), 1, + ACTIONS(6207), 1, anon_sym_COMMA, - STATE(2998), 1, + STATE(2863), 1, aux_sym_struct_pattern_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [86078] = 5, + [86068] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6219), 1, - anon_sym_COLON, - ACTIONS(6217), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(6209), 1, + anon_sym_COLON_COLON, + STATE(1780), 1, + sym_field_initializer_list, STATE(2902), 2, sym_line_comment, sym_block_comment, - [86096] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6221), 1, - anon_sym_move, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5921), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2903), 2, sym_line_comment, sym_block_comment, - [86116] = 6, + [86106] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6223), 1, - anon_sym_SEMI, - ACTIONS(6225), 1, - anon_sym_RBRACK, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(6211), 1, + sym_identifier, STATE(2904), 2, sym_line_comment, sym_block_comment, - [86136] = 6, + [86126] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6227), 1, - anon_sym_RBRACE, - ACTIONS(6229), 1, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(5461), 1, anon_sym_COMMA, - STATE(2834), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2909), 1, + aux_sym_parameters_repeat1, STATE(2905), 2, sym_line_comment, sym_block_comment, - [86156] = 6, + [86146] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3197), 1, - anon_sym_RPAREN, - ACTIONS(6231), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(6213), 1, + anon_sym_move, + STATE(218), 1, + sym_closure_parameters, STATE(2906), 2, sym_line_comment, sym_block_comment, - [86176] = 6, + [86166] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6233), 1, - anon_sym_EQ_GT, - ACTIONS(6235), 1, - anon_sym_PIPE, - ACTIONS(6237), 1, - anon_sym_if, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(5461), 1, + anon_sym_COMMA, + STATE(2967), 1, + aux_sym_parameters_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - [86196] = 6, + [86186] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6239), 1, - anon_sym_SEMI, - STATE(583), 1, - sym_declaration_list, + ACTIONS(6215), 1, + anon_sym_RBRACE, + ACTIONS(6217), 1, + anon_sym_COMMA, + STATE(2860), 1, + aux_sym_field_declaration_list_repeat1, STATE(2908), 2, sym_line_comment, sym_block_comment, - [86216] = 5, + [86206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6241), 2, - anon_sym_GT, + ACTIONS(5921), 1, + anon_sym_RPAREN, + ACTIONS(6219), 1, anon_sym_COMMA, - STATE(2909), 2, + STATE(2909), 3, sym_line_comment, sym_block_comment, - [86234] = 4, + aux_sym_parameters_repeat1, + [86224] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6222), 1, + anon_sym_SEMI, + STATE(571), 1, + sym_declaration_list, STATE(2910), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86250] = 6, + [86244] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6243), 1, - anon_sym_SEMI, - STATE(3515), 1, - sym_where_clause, + ACTIONS(4926), 1, + anon_sym_RBRACE, + ACTIONS(6224), 1, + anon_sym_COMMA, + STATE(2961), 1, + aux_sym_enum_variant_list_repeat2, STATE(2911), 2, sym_line_comment, sym_block_comment, - [86270] = 6, + [86264] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6245), 1, - anon_sym_SEMI, - ACTIONS(6247), 1, - anon_sym_RBRACK, + ACTIONS(4926), 1, + anon_sym_RBRACE, + ACTIONS(6224), 1, + anon_sym_COMMA, + STATE(2970), 1, + aux_sym_enum_variant_list_repeat2, STATE(2912), 2, sym_line_comment, sym_block_comment, - [86290] = 5, + [86284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 1, - anon_sym_GT, - ACTIONS(6249), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6226), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2913), 3, + STATE(2913), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [86308] = 6, + [86302] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, - STATE(1087), 1, - sym_type_arguments, + ACTIONS(4696), 1, + anon_sym_GT, + ACTIONS(6228), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2914), 2, sym_line_comment, sym_block_comment, - [86328] = 4, + [86322] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6230), 1, + anon_sym_SEMI, + STATE(3464), 1, + sym_where_clause, STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4872), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86344] = 5, + [86342] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6252), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6232), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(2916), 2, sym_line_comment, sym_block_comment, @@ -181426,247 +181943,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_RPAREN, - ACTIONS(4159), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + ACTIONS(6234), 1, + sym_identifier, + ACTIONS(6236), 1, + anon_sym_ref, + ACTIONS(6238), 1, + sym_mutable_specifier, STATE(2917), 2, sym_line_comment, sym_block_comment, - [86382] = 4, + [86382] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3382), 1, + anon_sym_LBRACE, + ACTIONS(6240), 1, + anon_sym_COLON_COLON, + STATE(1471), 1, + sym_field_initializer_list, STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86398] = 4, + [86402] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1411), 1, + anon_sym_RPAREN, + ACTIONS(6242), 1, + anon_sym_COMMA, + STATE(2909), 1, + aux_sym_parameters_repeat1, STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86414] = 6, + [86422] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3195), 1, - anon_sym_RPAREN, - ACTIONS(6254), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(6244), 1, + anon_sym_LPAREN, + ACTIONS(6246), 1, + anon_sym_LBRACK, + ACTIONS(6248), 1, + anon_sym_LBRACE, STATE(2920), 2, sym_line_comment, sym_block_comment, - [86434] = 6, + [86442] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(6250), 1, + anon_sym_LPAREN, + ACTIONS(6252), 1, + anon_sym_LBRACK, + ACTIONS(6254), 1, anon_sym_LBRACE, - ACTIONS(6256), 1, - anon_sym_SEMI, - STATE(570), 1, - sym_declaration_list, STATE(2921), 2, sym_line_comment, sym_block_comment, - [86454] = 6, + [86462] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(5577), 1, + ACTIONS(4706), 1, + anon_sym_GT, + ACTIONS(6256), 1, anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2922), 2, sym_line_comment, sym_block_comment, - [86474] = 6, + [86482] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_where, ACTIONS(6258), 1, - anon_sym_RPAREN, - ACTIONS(6260), 1, - anon_sym_COMMA, - STATE(2997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + anon_sym_SEMI, + STATE(3522), 1, + sym_where_clause, STATE(2923), 2, sym_line_comment, sym_block_comment, - [86494] = 6, + [86502] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6262), 1, - anon_sym_SEMI, - STATE(3583), 1, - sym_where_clause, + ACTIONS(4724), 1, + anon_sym_GT, + ACTIONS(6260), 1, + anon_sym_COMMA, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2924), 2, sym_line_comment, sym_block_comment, - [86514] = 6, + [86522] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, + ACTIONS(4722), 1, anon_sym_GT, - ACTIONS(6264), 1, + ACTIONS(6262), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_type_arguments_repeat1, + STATE(2882), 1, + aux_sym_type_parameters_repeat1, STATE(2925), 2, sym_line_comment, sym_block_comment, - [86534] = 6, + [86542] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_GT, + ACTIONS(4509), 1, + anon_sym_LT2, ACTIONS(6264), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, + anon_sym_LBRACE, + STATE(1958), 1, + sym_type_arguments, STATE(2926), 2, sym_line_comment, sym_block_comment, - [86554] = 6, + [86562] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6266), 1, + anon_sym_SEMI, + STATE(1328), 1, + sym_declaration_list, STATE(2927), 2, sym_line_comment, sym_block_comment, - [86574] = 6, + [86582] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_parameters_repeat1, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + ACTIONS(6268), 1, + anon_sym_GT, + STATE(3257), 1, + sym_lifetime, STATE(2928), 2, sym_line_comment, sym_block_comment, - [86594] = 5, + [86602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6266), 1, + ACTIONS(6270), 1, anon_sym_GT, - ACTIONS(6268), 1, + ACTIONS(6272), 1, anon_sym_COMMA, STATE(2929), 3, sym_line_comment, sym_block_comment, aux_sym_for_lifetimes_repeat1, - [86612] = 5, + [86620] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6271), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6275), 1, + anon_sym_SEMI, + STATE(1335), 1, + sym_declaration_list, STATE(2930), 2, sym_line_comment, sym_block_comment, - [86630] = 6, + [86640] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6273), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(734), 1, + sym_declaration_list, STATE(2931), 2, sym_line_comment, sym_block_comment, - [86650] = 6, + [86660] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1509), 1, - anon_sym_RPAREN, - ACTIONS(6275), 1, + ACTIONS(6279), 1, + anon_sym_RBRACE, + ACTIONS(6281), 1, anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, + STATE(2774), 1, + aux_sym_enum_variant_list_repeat2, STATE(2932), 2, sym_line_comment, sym_block_comment, - [86670] = 5, + [86680] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6277), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6283), 1, + anon_sym_SEMI, + ACTIONS(6285), 1, + anon_sym_EQ, STATE(2933), 2, sym_line_comment, sym_block_comment, - [86688] = 6, + [86700] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5055), 1, anon_sym_PLUS, - ACTIONS(6279), 1, + ACTIONS(6287), 1, anon_sym_SEMI, - ACTIONS(6281), 1, + ACTIONS(6289), 1, anon_sym_EQ, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86708] = 4, + [86720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -181674,257 +182197,253 @@ static const uint16_t ts_small_parse_table[] = { STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4880), 3, + ACTIONS(4842), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86724] = 4, + [86736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6293), 1, + anon_sym_COLON, + ACTIONS(6291), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86740] = 6, + [86754] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4960), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(5020), 1, + anon_sym_RBRACE, + ACTIONS(6295), 1, + anon_sym_COMMA, + STATE(2989), 1, + aux_sym_field_declaration_list_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [86760] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [86774] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6283), 1, - anon_sym_move, - STATE(223), 1, - sym_closure_parameters, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6297), 1, + anon_sym_SEMI, + STATE(703), 1, + sym_declaration_list, STATE(2938), 2, sym_line_comment, sym_block_comment, - [86780] = 6, + [86794] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4952), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6299), 1, + anon_sym_SEMI, + STATE(1347), 1, + sym_declaration_list, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86800] = 6, + [86814] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6285), 1, - anon_sym_SEMI, - STATE(541), 1, - sym_declaration_list, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(4948), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(2940), 2, sym_line_comment, sym_block_comment, - [86820] = 5, + [86834] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - ACTIONS(6287), 2, + ACTIONS(5455), 1, anon_sym_RPAREN, + ACTIONS(5457), 1, anon_sym_COMMA, + STATE(3049), 1, + aux_sym_parameters_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [86838] = 4, + [86854] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2942), 2, + ACTIONS(6226), 1, + anon_sym_RPAREN, + ACTIONS(6301), 1, + anon_sym_COMMA, + STATE(2942), 3, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86854] = 6, + aux_sym_tuple_type_repeat1, + [86872] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, - anon_sym_RBRACK, - ACTIONS(6289), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86874] = 6, + ACTIONS(4920), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86888] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, - anon_sym_ref, - ACTIONS(6295), 1, - sym_mutable_specifier, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6304), 1, + anon_sym_SEMI, + ACTIONS(6306), 1, + anon_sym_EQ, STATE(2944), 2, sym_line_comment, sym_block_comment, - [86894] = 5, + [86908] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5744), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6308), 1, + anon_sym_SEMI, + STATE(3581), 1, + sym_where_clause, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86912] = 6, + [86928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4994), 1, - anon_sym_COLON_COLON, - STATE(1615), 1, - sym_type_arguments, + ACTIONS(995), 1, + anon_sym_RBRACK, + ACTIONS(4183), 1, + anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - [86932] = 6, + [86948] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4690), 1, - anon_sym_GT, - ACTIONS(6297), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86952] = 6, + ACTIONS(4818), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86964] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(6310), 1, + anon_sym_LPAREN, + ACTIONS(6312), 1, + anon_sym_LBRACK, + ACTIONS(6314), 1, anon_sym_LBRACE, - ACTIONS(6299), 1, - anon_sym_SEMI, - STATE(543), 1, - sym_declaration_list, STATE(2948), 2, sym_line_comment, sym_block_comment, - [86972] = 6, + [86984] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, - anon_sym_COMMA, - STATE(3022), 1, - aux_sym_field_declaration_list_repeat1, STATE(2949), 2, sym_line_comment, sym_block_comment, - [86992] = 6, + ACTIONS(4820), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87000] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4888), 1, - anon_sym_BANG, - ACTIONS(6305), 1, - sym_identifier, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6316), 1, + anon_sym_SEMI, + STATE(3375), 1, + sym_where_clause, STATE(2950), 2, sym_line_comment, sym_block_comment, - [87012] = 6, + [87020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6307), 1, - anon_sym_SEMI, - ACTIONS(6309), 1, - anon_sym_EQ, STATE(2951), 2, sym_line_comment, sym_block_comment, - [87032] = 6, - ACTIONS(27), 1, + ACTIONS(4852), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [87036] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6311), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(6318), 1, + anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2952), 2, sym_line_comment, sym_block_comment, - [87052] = 6, + [87056] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6320), 1, + anon_sym_SEMI, + STATE(1244), 1, + sym_declaration_list, STATE(2953), 2, sym_line_comment, sym_block_comment, - [87072] = 4, + [87076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -181932,191 +182451,183 @@ static const uint16_t ts_small_parse_table[] = { STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(6313), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87088] = 6, + ACTIONS(4854), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(549), 1, - sym_declaration_list, + ACTIONS(2995), 1, + anon_sym_RPAREN, + ACTIONS(6322), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_tuple_pattern_repeat1, STATE(2955), 2, sym_line_comment, sym_block_comment, - [87108] = 6, + [87112] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(6317), 1, - anon_sym_COLON_COLON, - STATE(1696), 1, - sym_field_initializer_list, STATE(2956), 2, sym_line_comment, sym_block_comment, + ACTIONS(4824), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, [87128] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6319), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_declaration_list, + ACTIONS(4642), 1, + anon_sym_COLON, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + STATE(2666), 1, + sym_trait_bounds, STATE(2957), 2, sym_line_comment, sym_block_comment, - [87148] = 6, + [87148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6321), 1, - anon_sym_LPAREN, - ACTIONS(6323), 1, - anon_sym_LBRACK, - ACTIONS(6325), 1, - anon_sym_LBRACE, STATE(2958), 2, sym_line_comment, sym_block_comment, - [87168] = 6, - ACTIONS(27), 1, + ACTIONS(4878), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [87164] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6327), 1, - anon_sym_move, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(1639), 1, + anon_sym_GT, + ACTIONS(6324), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(2959), 2, sym_line_comment, sym_block_comment, - [87188] = 6, + [87184] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6329), 1, - sym_identifier, - ACTIONS(6331), 1, - anon_sym_await, - ACTIONS(6333), 1, - sym_integer_literal, + ACTIONS(3067), 1, + anon_sym_RBRACK, + ACTIONS(6326), 1, + anon_sym_COMMA, + STATE(2691), 1, + aux_sym_slice_pattern_repeat1, STATE(2960), 2, sym_line_comment, sym_block_comment, - [87208] = 6, + [87204] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(6335), 1, + ACTIONS(6328), 1, + anon_sym_RBRACE, + ACTIONS(6330), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2961), 2, + STATE(2961), 3, sym_line_comment, sym_block_comment, - [87228] = 5, + aux_sym_enum_variant_list_repeat2, + [87222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6337), 2, - anon_sym_RPAREN, + ACTIONS(6335), 1, + anon_sym_EQ, + ACTIONS(6333), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2962), 2, sym_line_comment, sym_block_comment, - [87246] = 6, + [87240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6339), 1, - anon_sym_SEMI, - ACTIONS(6341), 1, - anon_sym_EQ, STATE(2963), 2, sym_line_comment, sym_block_comment, - [87266] = 5, + ACTIONS(4864), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87256] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 1, - anon_sym_RPAREN, - ACTIONS(6343), 1, - anon_sym_COMMA, - STATE(2964), 3, + STATE(2964), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [87284] = 6, + ACTIONS(4866), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87272] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6346), 1, - anon_sym_SEMI, - STATE(642), 1, - sym_declaration_list, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(6337), 1, + sym_mutable_specifier, + ACTIONS(6339), 1, + sym_self, STATE(2965), 2, sym_line_comment, sym_block_comment, - [87304] = 6, + [87292] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6348), 1, - anon_sym_SEMI, - STATE(3403), 1, - sym_where_clause, + ACTIONS(4940), 1, + anon_sym_RBRACE, + ACTIONS(6341), 1, + anon_sym_COMMA, + STATE(2961), 1, + aux_sym_enum_variant_list_repeat2, STATE(2966), 2, sym_line_comment, sym_block_comment, - [87324] = 6, + [87312] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(6350), 1, - anon_sym_EQ, - STATE(3605), 1, - sym_type_parameters, + ACTIONS(1461), 1, + anon_sym_RPAREN, + ACTIONS(6343), 1, + anon_sym_COMMA, + STATE(2909), 1, + aux_sym_parameters_repeat1, STATE(2967), 2, sym_line_comment, sym_block_comment, - [87344] = 4, + [87332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -182124,238 +182635,240 @@ static const uint16_t ts_small_parse_table[] = { STATE(2968), 2, sym_line_comment, sym_block_comment, - ACTIONS(6352), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [87360] = 6, + ACTIONS(4914), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87348] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6354), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_COMMA, - STATE(3030), 1, - aux_sym_enum_variant_list_repeat2, STATE(2969), 2, sym_line_comment, sym_block_comment, - [87380] = 6, + ACTIONS(6345), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87364] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_SEMI, - STATE(591), 1, - sym_declaration_list, + ACTIONS(4946), 1, + anon_sym_RBRACE, + ACTIONS(6347), 1, + anon_sym_COMMA, + STATE(2961), 1, + aux_sym_enum_variant_list_repeat2, STATE(2970), 2, sym_line_comment, sym_block_comment, - [87400] = 6, + [87384] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6360), 1, - anon_sym_SEMI, - STATE(3623), 1, - sym_where_clause, STATE(2971), 2, sym_line_comment, sym_block_comment, - [87420] = 4, + ACTIONS(4872), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87400] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6349), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(2972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87436] = 6, + [87420] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6362), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_type_arguments_repeat1, STATE(2973), 2, sym_line_comment, sym_block_comment, - [87456] = 6, + ACTIONS(4856), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - ACTIONS(6364), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, - STATE(2974), 2, + ACTIONS(6351), 1, + anon_sym_RBRACE, + ACTIONS(6353), 1, + anon_sym_COMMA, + STATE(2974), 3, sym_line_comment, sym_block_comment, - [87476] = 4, + aux_sym_use_list_repeat1, + [87454] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6356), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_declaration_list, STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87492] = 6, + [87474] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6366), 1, - anon_sym_LPAREN, - ACTIONS(6368), 1, - anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, + ACTIONS(6358), 1, + anon_sym_SEMI, + STATE(1080), 1, + sym_declaration_list, STATE(2976), 2, sym_line_comment, sym_block_comment, - [87512] = 6, + [87494] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_LPAREN, - ACTIONS(6374), 1, - anon_sym_LBRACK, - ACTIONS(6376), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, + ACTIONS(6360), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_declaration_list, STATE(2977), 2, sym_line_comment, sym_block_comment, - [87532] = 4, + [87514] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6362), 1, + sym_identifier, + ACTIONS(6364), 1, + anon_sym_await, + ACTIONS(6366), 1, + sym_integer_literal, STATE(2978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4838), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87548] = 6, + [87534] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6378), 1, - anon_sym_RPAREN, - ACTIONS(6380), 1, - anon_sym_COMMA, - STATE(2997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6368), 1, + anon_sym_SEMI, + STATE(3412), 1, + sym_where_clause, STATE(2979), 2, sym_line_comment, sym_block_comment, - [87568] = 5, + [87554] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6382), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6370), 1, + anon_sym_SEMI, + STATE(649), 1, + sym_declaration_list, STATE(2980), 2, sym_line_comment, sym_block_comment, - [87586] = 6, + [87574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_LBRACK, - ACTIONS(6388), 1, - anon_sym_LBRACE, STATE(2981), 2, sym_line_comment, sym_block_comment, - [87606] = 6, + ACTIONS(4858), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87590] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6390), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(6372), 1, + anon_sym_SEMI, + STATE(1086), 1, + sym_declaration_list, STATE(2982), 2, sym_line_comment, sym_block_comment, - [87626] = 6, + [87610] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6362), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + anon_sym_SEMI, + STATE(1088), 1, + sym_declaration_list, STATE(2983), 2, sym_line_comment, sym_block_comment, - [87646] = 4, + [87630] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(4642), 1, + anon_sym_COLON, + STATE(2666), 1, + sym_trait_bounds, STATE(2984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4828), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87662] = 4, + [87650] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6376), 1, + anon_sym_SEMI, + ACTIONS(6378), 1, + anon_sym_EQ, STATE(2985), 2, sym_line_comment, sym_block_comment, - ACTIONS(4914), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87678] = 4, + [87670] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -182363,132 +182876,126 @@ static const uint16_t ts_small_parse_table[] = { STATE(2986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87694] = 6, + ACTIONS(6380), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87686] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3063), 1, - anon_sym_RPAREN, - ACTIONS(6392), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(6382), 1, + anon_sym_EQ, + STATE(3559), 1, + sym_type_parameters, STATE(2987), 2, sym_line_comment, sym_block_comment, - [87714] = 4, + [87706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2988), 2, + ACTIONS(6384), 1, + anon_sym_RBRACE, + ACTIONS(6386), 1, + anon_sym_COMMA, + STATE(2988), 3, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87730] = 5, + aux_sym_field_initializer_list_repeat1, + [87724] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_PIPE, - ACTIONS(6394), 1, + ACTIONS(4952), 1, + anon_sym_RBRACE, + ACTIONS(6389), 1, anon_sym_COMMA, - STATE(2989), 3, + STATE(2825), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2989), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [87748] = 5, + [87744] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6397), 2, - anon_sym_RPAREN, + ACTIONS(4327), 1, + anon_sym_RBRACE, + ACTIONS(6391), 1, anon_sym_COMMA, + STATE(2974), 1, + aux_sym_use_list_repeat1, STATE(2990), 2, sym_line_comment, sym_block_comment, - [87766] = 6, + [87764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6399), 1, - anon_sym_SEMI, - STATE(1103), 1, - sym_declaration_list, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87786] = 5, + ACTIONS(6393), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6403), 1, - anon_sym_COLON, - ACTIONS(6401), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87804] = 6, + ACTIONS(6395), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87796] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_RBRACE, - ACTIONS(6405), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, STATE(2993), 2, sym_line_comment, sym_block_comment, - [87824] = 6, + ACTIONS(6397), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_PLUS, - ACTIONS(6407), 1, - anon_sym_GT, - ACTIONS(6409), 1, - anon_sym_as, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87844] = 6, + ACTIONS(6399), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(6411), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, STATE(2995), 2, sym_line_comment, sym_block_comment, - [87864] = 4, + ACTIONS(6401), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87844] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -182496,195 +183003,201 @@ static const uint16_t ts_small_parse_table[] = { STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(6413), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87880] = 5, + ACTIONS(6403), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87860] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6415), 1, - anon_sym_RPAREN, - ACTIONS(6417), 1, - anon_sym_COMMA, - STATE(2997), 3, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(502), 1, + sym_declaration_list, + STATE(2997), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [87898] = 6, + [87880] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5277), 1, - anon_sym_RBRACE, - ACTIONS(6420), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6407), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_declaration_list, STATE(2998), 2, sym_line_comment, sym_block_comment, - [87918] = 6, + [87900] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(5508), 1, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(4105), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(2999), 2, sym_line_comment, sym_block_comment, - [87938] = 5, + [87920] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6422), 2, - anon_sym_RPAREN, + ACTIONS(6409), 1, + anon_sym_GT, + ACTIONS(6411), 1, anon_sym_COMMA, + STATE(2839), 1, + aux_sym_for_lifetimes_repeat1, STATE(3000), 2, sym_line_comment, sym_block_comment, - [87956] = 5, + [87940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, - anon_sym_RPAREN, - ACTIONS(6424), 1, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6413), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3001), 3, + STATE(3001), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [87974] = 5, + [87958] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6427), 2, - anon_sym_RBRACE, + ACTIONS(5700), 1, + anon_sym_RPAREN, + ACTIONS(5702), 1, anon_sym_COMMA, + STATE(2785), 1, + aux_sym_tuple_pattern_repeat1, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87992] = 5, + [87978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, - anon_sym_RBRACE, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(3003), 3, + STATE(3003), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [88010] = 6, + ACTIONS(4822), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87994] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, + ACTIONS(1023), 1, anon_sym_RPAREN, - ACTIONS(6436), 1, + ACTIONS(4189), 1, anon_sym_COMMA, - STATE(2997), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(3004), 2, sym_line_comment, sym_block_comment, - [88030] = 4, + [88014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5423), 1, + anon_sym_GT, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_type_parameters_repeat1, STATE(3005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88046] = 4, + [88034] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4890), 1, + anon_sym_RBRACE, + ACTIONS(6415), 1, + anon_sym_COMMA, + STATE(2988), 1, + aux_sym_field_initializer_list_repeat1, STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88062] = 5, + [88054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6438), 2, - anon_sym_RBRACE, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6417), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3007), 2, sym_line_comment, sym_block_comment, - [88080] = 4, + [88072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6421), 1, + anon_sym_COLON, + ACTIONS(6419), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88096] = 6, + [88090] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, + ACTIONS(5328), 1, + anon_sym_PLUS, + ACTIONS(6423), 1, + anon_sym_GT, + ACTIONS(6425), 1, + anon_sym_as, STATE(3009), 2, sym_line_comment, sym_block_comment, - [88116] = 6, + [88110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6440), 1, - sym_identifier, - ACTIONS(6442), 1, - anon_sym_await, - ACTIONS(6444), 1, - sym_integer_literal, + ACTIONS(5708), 1, + anon_sym_EQ, + ACTIONS(5848), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3010), 2, sym_line_comment, sym_block_comment, - [88136] = 4, + [88128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -182692,5379 +183205,5432 @@ static const uint16_t ts_small_parse_table[] = { STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4842), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88152] = 6, + ACTIONS(6427), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, + ACTIONS(4593), 1, + anon_sym_COLON_COLON, + ACTIONS(6429), 2, anon_sym_RPAREN, - ACTIONS(5622), 1, anon_sym_COMMA, - STATE(2897), 1, - aux_sym_parameters_repeat1, STATE(3012), 2, sym_line_comment, sym_block_comment, - [88172] = 6, + [88162] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4952), 1, - anon_sym_COLON_COLON, - STATE(2725), 1, - sym_trait_bounds, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6431), 1, + anon_sym_SEMI, + STATE(710), 1, + sym_declaration_list, STATE(3013), 2, sym_line_comment, sym_block_comment, - [88192] = 5, + [88182] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5666), 1, - anon_sym_EQ, - ACTIONS(5702), 2, + anon_sym_SLASH_STAR, + ACTIONS(1607), 1, anon_sym_GT, + ACTIONS(6433), 1, anon_sym_COMMA, + STATE(2842), 1, + aux_sym_type_arguments_repeat1, STATE(3014), 2, sym_line_comment, sym_block_comment, - [88210] = 5, + [88202] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 1, - anon_sym_RBRACE, - ACTIONS(6448), 1, - anon_sym_COMMA, - STATE(3015), 3, + ACTIONS(6435), 1, + anon_sym_LPAREN, + ACTIONS(6437), 1, + anon_sym_LBRACK, + ACTIONS(6439), 1, + anon_sym_LBRACE, + STATE(3015), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [88228] = 6, + [88222] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6441), 1, + anon_sym_SEMI, + ACTIONS(6443), 1, anon_sym_RBRACK, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, STATE(3016), 2, sym_line_comment, sym_block_comment, - [88248] = 6, + [88242] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - ACTIONS(6451), 1, - anon_sym_GT, - STATE(3094), 1, - sym_lifetime, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6445), 1, + anon_sym_SEMI, + STATE(1126), 1, + sym_declaration_list, STATE(3017), 2, sym_line_comment, sym_block_comment, - [88268] = 6, + [88262] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_GT, - ACTIONS(6453), 1, - anon_sym_COMMA, - STATE(2929), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6447), 1, + anon_sym_SEMI, + STATE(1128), 1, + sym_declaration_list, STATE(3018), 2, sym_line_comment, sym_block_comment, - [88288] = 6, + [88282] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RPAREN, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_tuple_pattern_repeat1, STATE(3019), 2, sym_line_comment, sym_block_comment, - [88308] = 5, + ACTIONS(6449), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6455), 1, - anon_sym_RBRACE, - ACTIONS(6457), 1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(5818), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3020), 3, + STATE(3020), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [88326] = 4, + [88316] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6451), 1, + anon_sym_SEMI, + STATE(1135), 1, + sym_declaration_list, STATE(3021), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88342] = 6, + [88336] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5011), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6453), 1, + anon_sym_SEMI, + STATE(1137), 1, + sym_declaration_list, STATE(3022), 2, sym_line_comment, sym_block_comment, - [88362] = 5, + [88356] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6464), 1, - anon_sym_EQ, - ACTIONS(6462), 2, - anon_sym_RBRACE, + ACTIONS(1607), 1, + anon_sym_GT, + ACTIONS(6433), 1, anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_arguments_repeat1, STATE(3023), 2, sym_line_comment, sym_block_comment, - [88380] = 6, + [88376] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4916), 1, - anon_sym_RBRACE, - ACTIONS(6466), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, STATE(3024), 2, sym_line_comment, sym_block_comment, - [88400] = 6, + ACTIONS(4860), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88392] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4922), 1, - anon_sym_RBRACE, - ACTIONS(6468), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6455), 1, + anon_sym_SEMI, + STATE(3555), 1, + sym_where_clause, STATE(3025), 2, sym_line_comment, sym_block_comment, - [88420] = 6, + [88412] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6470), 1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6457), 1, anon_sym_SEMI, - ACTIONS(6472), 1, - anon_sym_RBRACK, + STATE(1143), 1, + sym_declaration_list, STATE(3026), 2, sym_line_comment, sym_block_comment, - [88440] = 6, + [88432] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5011), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3024), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6459), 1, + anon_sym_SEMI, + STATE(1145), 1, + sym_declaration_list, STATE(3027), 2, sym_line_comment, sym_block_comment, - [88460] = 4, + [88452] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6461), 1, + anon_sym_COLON_COLON, + STATE(1955), 1, + sym_type_arguments, STATE(3028), 2, sym_line_comment, sym_block_comment, - ACTIONS(6474), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88476] = 5, + [88472] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6478), 1, - anon_sym_EQ, - ACTIONS(6476), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3029), 2, sym_line_comment, sym_block_comment, - [88494] = 6, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88488] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5013), 1, - anon_sym_RBRACE, - ACTIONS(6480), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, STATE(3030), 2, sym_line_comment, sym_block_comment, - [88514] = 6, + ACTIONS(6463), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88504] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5013), 1, - anon_sym_RBRACE, - ACTIONS(6480), 1, - anon_sym_COMMA, - STATE(3025), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6465), 1, + anon_sym_SEMI, + ACTIONS(6467), 1, + anon_sym_EQ, STATE(3031), 2, sym_line_comment, sym_block_comment, - [88534] = 6, + [88524] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6482), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6469), 1, + anon_sym_SEMI, + ACTIONS(6471), 1, + anon_sym_EQ, STATE(3032), 2, sym_line_comment, sym_block_comment, - [88554] = 6, + [88544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_GT, - ACTIONS(6484), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, STATE(3033), 2, sym_line_comment, sym_block_comment, - [88574] = 6, + ACTIONS(4888), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88560] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_PIPE, - STATE(2989), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6473), 1, + anon_sym_SEMI, + ACTIONS(6475), 1, + anon_sym_RBRACK, STATE(3034), 2, sym_line_comment, sym_block_comment, - [88594] = 5, + [88580] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6488), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6477), 1, + anon_sym_SEMI, + STATE(713), 1, + sym_declaration_list, STATE(3035), 2, sym_line_comment, sym_block_comment, - [88612] = 6, + [88600] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6490), 1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6479), 1, anon_sym_SEMI, - STATE(3391), 1, - sym_where_clause, + STATE(1161), 1, + sym_declaration_list, STATE(3036), 2, sym_line_comment, sym_block_comment, - [88632] = 5, + [88620] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5626), 1, - anon_sym_GT, - ACTIONS(6492), 1, - anon_sym_COMMA, - STATE(3037), 3, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6481), 1, + anon_sym_SEMI, + STATE(1163), 1, + sym_declaration_list, + STATE(3037), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [88650] = 6, + [88640] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4632), 1, - anon_sym_COLON, - STATE(2725), 1, - sym_trait_bounds, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(6483), 1, + anon_sym_SEMI, + STATE(510), 1, + sym_declaration_list, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88670] = 5, + [88660] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - ACTIONS(5401), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3039), 2, sym_line_comment, sym_block_comment, - [88688] = 6, + ACTIONS(4896), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88676] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_GT, - ACTIONS(5463), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_type_parameters_repeat1, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88708] = 6, + ACTIONS(4898), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88692] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(6495), 1, + ACTIONS(6485), 1, anon_sym_SEMI, - STATE(744), 1, + STATE(512), 1, sym_declaration_list, STATE(3041), 2, sym_line_comment, sym_block_comment, - [88728] = 6, + [88712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5021), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, STATE(3042), 2, sym_line_comment, sym_block_comment, - [88748] = 5, + ACTIONS(4900), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88728] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - anon_sym_COLON, - ACTIONS(6497), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3043), 2, sym_line_comment, sym_block_comment, - [88766] = 4, + ACTIONS(4902), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88744] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5628), 1, + anon_sym_GT, + ACTIONS(5630), 1, + anon_sym_COMMA, + STATE(2838), 1, + aux_sym_type_parameters_repeat1, STATE(3044), 2, sym_line_comment, sym_block_comment, - ACTIONS(6501), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88782] = 6, + [88764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6503), 1, - anon_sym_SEMI, - STATE(1128), 1, - sym_declaration_list, STATE(3045), 2, sym_line_comment, sym_block_comment, - [88802] = 6, + ACTIONS(5561), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88780] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(6505), 1, - anon_sym_EQ, - STATE(3602), 1, - sym_type_parameters, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(5001), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(3046), 2, sym_line_comment, sym_block_comment, - [88822] = 6, + [88800] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6507), 1, - anon_sym_RBRACE, - ACTIONS(6509), 1, - anon_sym_COMMA, - STATE(2812), 1, - aux_sym_use_list_repeat1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6487), 1, + anon_sym_SEMI, + STATE(3463), 1, + sym_where_clause, STATE(3047), 2, sym_line_comment, sym_block_comment, - [88842] = 6, + [88820] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6511), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6489), 1, + anon_sym_SEMI, + STATE(1198), 1, + sym_declaration_list, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88862] = 6, + [88840] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6513), 1, - anon_sym_SEMI, - STATE(3358), 1, - sym_where_clause, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(2909), 1, + aux_sym_parameters_repeat1, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88882] = 6, + [88860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6515), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6491), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88902] = 5, + [88878] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6517), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6493), 1, + anon_sym_move, + STATE(245), 1, + sym_closure_parameters, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88920] = 6, + [88898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6519), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88940] = 6, + ACTIONS(6495), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88914] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6523), 1, - anon_sym_ref, - ACTIONS(6525), 1, - sym_mutable_specifier, + ACTIONS(4934), 1, + anon_sym_LT, + ACTIONS(6497), 1, + anon_sym_EQ, + STATE(3620), 1, + sym_type_parameters, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88960] = 6, + [88934] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6527), 1, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6499), 1, anon_sym_SEMI, - STATE(568), 1, - sym_declaration_list, + STATE(3450), 1, + sym_where_clause, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88980] = 6, + [88954] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - ACTIONS(4077), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6501), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(3055), 2, sym_line_comment, sym_block_comment, - [89000] = 6, + [88974] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - ACTIONS(6529), 1, - anon_sym_GT, - STATE(3094), 1, - sym_lifetime, + ACTIONS(6503), 1, + anon_sym_RBRACE, + ACTIONS(6505), 1, + anon_sym_COMMA, + STATE(2990), 1, + aux_sym_use_list_repeat1, STATE(3056), 2, sym_line_comment, sym_block_comment, - [89020] = 5, + [88994] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - sym_mutable_specifier, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6507), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(3057), 2, sym_line_comment, sym_block_comment, - [89037] = 4, + [89014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 2, - anon_sym_RBRACE, + ACTIONS(989), 1, + anon_sym_RBRACK, + ACTIONS(6509), 1, anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(3058), 2, sym_line_comment, sym_block_comment, - [89052] = 5, + [89034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(719), 1, - sym_field_declaration_list, + ACTIONS(6513), 1, + anon_sym_COLON, + ACTIONS(6511), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3059), 2, sym_line_comment, sym_block_comment, - [89069] = 5, + [89052] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, + ACTIONS(4936), 1, + anon_sym_where, + ACTIONS(6515), 1, + anon_sym_SEMI, + STATE(3473), 1, + sym_where_clause, STATE(3060), 2, sym_line_comment, sym_block_comment, - [89086] = 5, + [89072] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5219), 1, + ACTIONS(6517), 1, anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(6519), 1, + anon_sym_COMMA, + STATE(2831), 1, + aux_sym_struct_pattern_repeat1, STATE(3061), 2, sym_line_comment, sym_block_comment, - [89103] = 5, + [89092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6537), 1, - anon_sym_RBRACE, + ACTIONS(4509), 1, + anon_sym_LT2, + ACTIONS(6521), 1, + anon_sym_for, + STATE(1958), 1, + sym_type_arguments, STATE(3062), 2, sym_line_comment, sym_block_comment, - [89120] = 5, + [89112] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6539), 1, - anon_sym_RBRACE, + ACTIONS(3065), 1, + anon_sym_RPAREN, + ACTIONS(6523), 1, + anon_sym_COMMA, + STATE(2691), 1, + aux_sym_slice_pattern_repeat1, STATE(3063), 2, sym_line_comment, sym_block_comment, - [89137] = 5, + [89132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(1003), 1, - sym_type_parameters, STATE(3064), 2, sym_line_comment, sym_block_comment, - [89154] = 5, + ACTIONS(4862), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89148] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(657), 1, - sym_enum_variant_list, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, STATE(3065), 2, sym_line_comment, sym_block_comment, - [89171] = 5, + [89168] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6543), 1, + ACTIONS(6525), 1, sym_identifier, + ACTIONS(6527), 1, + anon_sym_ref, + ACTIONS(6529), 1, + sym_mutable_specifier, STATE(3066), 2, sym_line_comment, sym_block_comment, - [89188] = 4, + [89188] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 2, - sym_identifier, - sym_super, + ACTIONS(6531), 1, + anon_sym_RBRACE, + ACTIONS(6533), 1, + anon_sym_COMMA, + STATE(2862), 1, + aux_sym_field_initializer_list_repeat1, STATE(3067), 2, sym_line_comment, sym_block_comment, - [89203] = 5, + [89208] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - sym_identifier, - ACTIONS(6547), 1, - sym_super, STATE(3068), 2, sym_line_comment, sym_block_comment, - [89220] = 5, + ACTIONS(6535), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [89224] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - STATE(1159), 1, - sym_parameters, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6537), 1, + anon_sym_SEMI, + ACTIONS(6539), 1, + anon_sym_EQ, STATE(3069), 2, sym_line_comment, sym_block_comment, - [89237] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89244] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(6541), 1, + anon_sym_SEMI, + STATE(1228), 1, + sym_declaration_list, STATE(3070), 2, sym_line_comment, sym_block_comment, - [89254] = 5, + [89264] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_declaration_list, STATE(3071), 2, sym_line_comment, sym_block_comment, - [89271] = 4, + ACTIONS(6543), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5401), 2, - anon_sym_RPAREN, + ACTIONS(6547), 1, + anon_sym_EQ, + ACTIONS(6545), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3072), 2, sym_line_comment, sym_block_comment, - [89286] = 5, + [89298] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(977), 1, + anon_sym_RPAREN, ACTIONS(6549), 1, - sym_identifier, - ACTIONS(6551), 1, - sym_super, + anon_sym_COMMA, + STATE(2754), 1, + aux_sym_arguments_repeat1, STATE(3073), 2, sym_line_comment, sym_block_comment, - [89303] = 5, + [89318] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_identifier, - ACTIONS(6555), 1, - sym_super, + ACTIONS(5020), 1, + anon_sym_RBRACE, + ACTIONS(6295), 1, + anon_sym_COMMA, + STATE(2825), 1, + aux_sym_field_declaration_list_repeat1, STATE(3074), 2, sym_line_comment, sym_block_comment, - [89320] = 4, + [89338] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6551), 1, + anon_sym_SEMI, + ACTIONS(6553), 1, + anon_sym_as, STATE(3075), 2, sym_line_comment, sym_block_comment, - [89335] = 5, + [89355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6559), 1, - sym_identifier, + ACTIONS(3291), 1, + anon_sym_LPAREN, + STATE(1183), 1, + sym_parameters, STATE(3076), 2, sym_line_comment, sym_block_comment, - [89352] = 5, + [89372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(737), 1, - sym_field_declaration_list, + STATE(755), 1, + sym_declaration_list, STATE(3077), 2, sym_line_comment, sym_block_comment, - [89369] = 4, + [89389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 2, - anon_sym_RPAREN, + ACTIONS(5848), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3078), 2, sym_line_comment, sym_block_comment, - [89384] = 4, + [89404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 2, + ACTIONS(6555), 2, sym_identifier, sym_super, STATE(3079), 2, sym_line_comment, sym_block_comment, - [89399] = 5, + [89419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - STATE(1625), 1, - sym_parameters, + ACTIONS(5437), 1, + sym_super, + ACTIONS(6557), 1, + sym_identifier, STATE(3080), 2, sym_line_comment, sym_block_comment, - [89416] = 4, + [89436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 2, - sym_identifier, - sym_super, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_for, STATE(3081), 2, sym_line_comment, sym_block_comment, - [89431] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(5437), 1, + sym_super, + ACTIONS(6559), 1, + sym_identifier, STATE(3082), 2, sym_line_comment, sym_block_comment, - [89448] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(6561), 2, + sym_identifier, + sym_metavariable, STATE(3083), 2, sym_line_comment, sym_block_comment, - [89465] = 5, + [89485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6565), 1, + ACTIONS(6563), 1, sym_identifier, + ACTIONS(6565), 1, + sym_super, STATE(3084), 2, sym_line_comment, sym_block_comment, - [89482] = 5, + [89502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5694), 1, - sym_super, + ACTIONS(5312), 1, + anon_sym_LBRACE, + STATE(1189), 1, + sym_enum_variant_list, STATE(3085), 2, sym_line_comment, sym_block_comment, - [89499] = 4, + [89519] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5642), 2, - sym_identifier, - sym_super, + STATE(245), 1, + sym_closure_parameters, STATE(3086), 2, sym_line_comment, sym_block_comment, - [89514] = 5, + [89536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5445), 1, + anon_sym_PIPE, ACTIONS(6567), 1, - sym_identifier, - ACTIONS(6569), 1, - sym_super, + anon_sym_EQ, STATE(3087), 2, sym_line_comment, sym_block_comment, - [89531] = 4, + [89553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 2, - sym_identifier, - sym_super, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(2256), 1, + sym_parameters, STATE(3088), 2, sym_line_comment, sym_block_comment, - [89546] = 5, + [89570] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, + ACTIONS(5818), 2, anon_sym_RPAREN, - ACTIONS(6573), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, STATE(3089), 2, sym_line_comment, sym_block_comment, - [89563] = 5, + [89585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6543), 1, - sym_identifier, - ACTIONS(6575), 1, - sym_super, + ACTIONS(3945), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, STATE(3090), 2, sym_line_comment, sym_block_comment, - [89580] = 5, + [89602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6579), 1, - anon_sym_COLON_COLON, + ACTIONS(6569), 1, + sym_identifier, + ACTIONS(6571), 1, + sym_super, STATE(3091), 2, sym_line_comment, sym_block_comment, - [89597] = 5, + [89619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, + ACTIONS(6573), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3092), 2, sym_line_comment, sym_block_comment, - [89614] = 5, + [89634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, + ACTIONS(5696), 1, sym_super, - ACTIONS(6581), 1, + ACTIONS(6575), 1, sym_identifier, STATE(3093), 2, sym_line_comment, sym_block_comment, - [89631] = 4, + [89651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6266), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6577), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3094), 2, sym_line_comment, sym_block_comment, - [89646] = 5, + [89666] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, + ACTIONS(6579), 2, anon_sym_RPAREN, - ACTIONS(6583), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, STATE(3095), 2, sym_line_comment, sym_block_comment, - [89663] = 4, + [89681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6009), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4013), 1, + anon_sym_LPAREN, + STATE(1638), 1, + sym_parameters, STATE(3096), 2, sym_line_comment, sym_block_comment, - [89678] = 5, + [89698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5261), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_field_declaration_list, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89695] = 5, + [89715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, - ACTIONS(6587), 1, - anon_sym_as, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1207), 1, + sym_declaration_list, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89712] = 5, + [89732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + STATE(3257), 1, + sym_lifetime, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89729] = 5, + [89749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(4932), 1, + anon_sym_LBRACE, + STATE(1216), 1, + sym_field_declaration_list, STATE(3100), 2, sym_line_comment, sym_block_comment, - [89746] = 5, + [89766] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(875), 1, - sym_type_parameters, + STATE(221), 1, + sym_closure_parameters, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89763] = 5, + [89783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - STATE(1603), 1, - sym_parameters, + ACTIONS(6581), 2, + sym_identifier, + sym_super, STATE(3102), 2, sym_line_comment, sym_block_comment, - [89780] = 5, + [89798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - STATE(2829), 1, - sym_lifetime, + ACTIONS(6583), 2, + sym_identifier, + sym_super, STATE(3103), 2, sym_line_comment, sym_block_comment, - [89797] = 4, + [89813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 2, + ACTIONS(5670), 1, sym_identifier, + ACTIONS(5672), 1, sym_super, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89812] = 5, + [89830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_field_declaration_list, + ACTIONS(5680), 2, + sym_identifier, + sym_super, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89829] = 5, + [89845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_declaration_list, + ACTIONS(6585), 1, + sym_identifier, + ACTIONS(6587), 1, + sym_super, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89846] = 5, + [89862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4960), 1, - anon_sym_for, + ACTIONS(6559), 1, + sym_identifier, + ACTIONS(6589), 1, + sym_super, STATE(3107), 2, sym_line_comment, sym_block_comment, - [89863] = 5, + [89879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_enum_variant_list, + ACTIONS(6591), 1, + anon_sym_STAR_SLASH, + ACTIONS(6593), 1, + sym__block_comment_content, STATE(3108), 2, sym_line_comment, sym_block_comment, - [89880] = 5, + [89896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - sym_identifier, - ACTIONS(6575), 1, + ACTIONS(5215), 1, sym_super, + ACTIONS(5764), 1, + sym_identifier, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89897] = 5, + [89913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5952), 1, - anon_sym_for, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6595), 1, + sym_identifier, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89914] = 5, + [89930] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6593), 1, - sym_identifier, + ACTIONS(6597), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89931] = 5, + [89945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - STATE(1622), 1, - sym_parameters, + ACTIONS(6599), 1, + anon_sym_SEMI, + ACTIONS(6601), 1, + anon_sym_as, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89948] = 5, + [89962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, + ACTIONS(6234), 1, sym_identifier, - ACTIONS(6086), 1, + ACTIONS(6238), 1, sym_mutable_specifier, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89965] = 5, + [89979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6595), 1, - anon_sym_in, + ACTIONS(6603), 1, + anon_sym_LT, + STATE(905), 1, + sym_type_parameters, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89982] = 4, + [89996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4013), 1, + anon_sym_LPAREN, + STATE(1630), 1, + sym_parameters, STATE(3115), 2, sym_line_comment, sym_block_comment, - [89997] = 4, + [90013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 2, + ACTIONS(5055), 1, + anon_sym_PLUS, + ACTIONS(6605), 1, anon_sym_GT, - anon_sym_COMMA, STATE(3116), 2, sym_line_comment, sym_block_comment, - [90012] = 5, + [90030] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3817), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(1975), 1, + sym_parameters, STATE(3117), 2, sym_line_comment, sym_block_comment, - [90029] = 5, + [90047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_field_declaration_list, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + sym_mutable_specifier, STATE(3118), 2, sym_line_comment, sym_block_comment, - [90046] = 5, + [90064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(6611), 2, + sym_identifier, + sym_super, STATE(3119), 2, sym_line_comment, sym_block_comment, - [90063] = 5, + [90079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6601), 1, - anon_sym_in, + ACTIONS(5181), 1, + anon_sym_RBRACE, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3120), 2, sym_line_comment, sym_block_comment, - [90080] = 5, + [90096] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, + ACTIONS(5183), 1, + anon_sym_RBRACE, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3121), 2, sym_line_comment, sym_block_comment, - [90097] = 4, + [90113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 2, - sym_identifier, - sym_super, + ACTIONS(6615), 2, + sym_float_literal, + sym_integer_literal, STATE(3122), 2, sym_line_comment, sym_block_comment, - [90112] = 4, + [90128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 2, + ACTIONS(6589), 2, sym_identifier, - sym_metavariable, + sym_super, STATE(3123), 2, sym_line_comment, sym_block_comment, - [90127] = 5, + [90143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(1053), 1, - sym_type_parameters, + ACTIONS(4013), 1, + anon_sym_LPAREN, + STATE(1647), 1, + sym_parameters, STATE(3124), 2, sym_line_comment, sym_block_comment, - [90144] = 5, + [90160] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6609), 1, - sym_identifier, + STATE(219), 1, + sym_closure_parameters, STATE(3125), 2, sym_line_comment, sym_block_comment, - [90161] = 5, + [90177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(6099), 1, - anon_sym_for, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6617), 1, + anon_sym_RPAREN, STATE(3126), 2, sym_line_comment, sym_block_comment, - [90178] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90194] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(223), 1, - sym_closure_parameters, + ACTIONS(5978), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3127), 2, sym_line_comment, sym_block_comment, - [90195] = 5, + [90209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, + ACTIONS(6603), 1, + anon_sym_LT, + STATE(920), 1, + sym_type_parameters, STATE(3128), 2, sym_line_comment, sym_block_comment, - [90212] = 5, + [90226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(729), 1, + sym_declaration_list, STATE(3129), 2, sym_line_comment, sym_block_comment, - [90229] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(5259), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3130), 2, sym_line_comment, sym_block_comment, - [90246] = 5, + [90258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_enum_variant_list, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(6074), 1, + anon_sym_for, STATE(3131), 2, sym_line_comment, sym_block_comment, - [90263] = 4, + [90275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5437), 1, + sym_super, + ACTIONS(6619), 1, + sym_identifier, STATE(3132), 2, sym_line_comment, sym_block_comment, - [90278] = 5, + [90292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6615), 1, - sym_identifier, + ACTIONS(3291), 1, + anon_sym_LPAREN, + STATE(1247), 1, + sym_parameters, STATE(3133), 2, sym_line_comment, sym_block_comment, - [90295] = 5, + [90309] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(666), 1, - sym_field_declaration_list, + STATE(216), 1, + sym_closure_parameters, STATE(3134), 2, sym_line_comment, sym_block_comment, - [90312] = 5, + [90326] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4888), 1, - anon_sym_BANG, + ACTIONS(6621), 2, + sym_identifier, + sym_super, STATE(3135), 2, sym_line_comment, sym_block_comment, - [90329] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(227), 1, - sym_closure_parameters, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6623), 1, + anon_sym_in, STATE(3136), 2, sym_line_comment, sym_block_comment, - [90346] = 4, + [90358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6625), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3137), 2, sym_line_comment, sym_block_comment, - [90361] = 4, + [90373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5694), 2, - sym_identifier, + ACTIONS(5696), 1, sym_super, + ACTIONS(6627), 1, + sym_identifier, STATE(3138), 2, sym_line_comment, sym_block_comment, - [90376] = 5, + [90390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_super, - ACTIONS(6617), 1, - sym_identifier, + ACTIONS(6603), 1, + anon_sym_LT, + STATE(1060), 1, + sym_type_parameters, STATE(3139), 2, sym_line_comment, sym_block_comment, - [90393] = 4, + [90407] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5744), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(224), 1, + sym_closure_parameters, STATE(3140), 2, sym_line_comment, sym_block_comment, - [90408] = 5, + [90424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + STATE(3000), 1, + sym_lifetime, STATE(3141), 2, sym_line_comment, sym_block_comment, - [90425] = 5, + [90441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, + ACTIONS(5312), 1, + anon_sym_LBRACE, + STATE(1252), 1, + sym_enum_variant_list, STATE(3142), 2, sym_line_comment, sym_block_comment, - [90442] = 5, + [90458] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(1965), 1, - sym_parameters, + ACTIONS(5672), 2, + sym_identifier, + sym_super, STATE(3143), 2, sym_line_comment, sym_block_comment, - [90459] = 5, + [90473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6619), 1, - anon_sym_RPAREN, + ACTIONS(6629), 1, + anon_sym_LPAREN, + ACTIONS(6631), 1, + anon_sym_COLON_COLON, STATE(3144), 2, sym_line_comment, sym_block_comment, - [90476] = 5, + [90490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(6589), 1, + sym_super, + ACTIONS(6633), 1, + sym_identifier, STATE(3145), 2, sym_line_comment, sym_block_comment, - [90493] = 5, + [90507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6619), 1, - anon_sym_RBRACK, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5692), 1, + sym_identifier, STATE(3146), 2, sym_line_comment, sym_block_comment, - [90510] = 5, + [90524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6621), 1, - anon_sym_RBRACE, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6635), 1, + sym_identifier, STATE(3147), 2, sym_line_comment, sym_block_comment, - [90527] = 5, + [90541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6623), 1, - sym_identifier, + ACTIONS(6637), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3148), 2, sym_line_comment, sym_block_comment, - [90544] = 5, + [90556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6627), 1, - sym_mutable_specifier, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(6232), 1, + anon_sym_for, STATE(3149), 2, sym_line_comment, sym_block_comment, - [90561] = 5, + [90573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6629), 1, - anon_sym_RPAREN, + ACTIONS(3861), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, STATE(3150), 2, sym_line_comment, sym_block_comment, - [90578] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(3869), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, STATE(3151), 2, sym_line_comment, sym_block_comment, - [90595] = 5, + [90607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(616), 1, - sym_declaration_list, + ACTIONS(6063), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3152), 2, sym_line_comment, sym_block_comment, - [90612] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6617), 1, + anon_sym_RBRACK, STATE(3153), 2, sym_line_comment, sym_block_comment, - [90629] = 5, + [90639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6629), 1, - anon_sym_RBRACK, + ACTIONS(6639), 2, + sym_identifier, + sym_metavariable, STATE(3154), 2, sym_line_comment, sym_block_comment, - [90646] = 5, + [90654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - sym_identifier, - ACTIONS(6633), 1, - sym_super, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_field_declaration_list, STATE(3155), 2, sym_line_comment, sym_block_comment, - [90663] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, + ACTIONS(6641), 1, + anon_sym_RPAREN, + ACTIONS(6643), 1, + anon_sym_COLON_COLON, STATE(3156), 2, sym_line_comment, sym_block_comment, - [90680] = 5, + [90688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_declaration_list, + ACTIONS(6645), 1, + anon_sym_RPAREN, + ACTIONS(6647), 1, + anon_sym_COLON_COLON, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90697] = 4, + [90705] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 2, - anon_sym_LPAREN, + ACTIONS(6645), 1, + anon_sym_RPAREN, + ACTIONS(6649), 1, anon_sym_COLON_COLON, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90712] = 5, + [90722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, - sym_super, - ACTIONS(6635), 1, - sym_identifier, + ACTIONS(6645), 1, + anon_sym_RPAREN, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90729] = 4, + [90739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6137), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90744] = 5, + [90754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, + ACTIONS(5215), 1, sym_super, - ACTIONS(5762), 1, + ACTIONS(5806), 1, sym_identifier, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90761] = 5, + [90771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - sym_super, - ACTIONS(6639), 1, - sym_identifier, + ACTIONS(5360), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_enum_variant_list, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90778] = 5, + [90788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_LBRACE, - STATE(1696), 1, - sym_field_initializer_list, + ACTIONS(6653), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90795] = 5, + [90803] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6641), 1, - anon_sym_RBRACE, + STATE(230), 1, + sym_closure_parameters, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90812] = 5, + [90820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4758), 1, - anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(1974), 1, + sym_parameters, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90829] = 4, + [90837] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4932), 1, + anon_sym_LBRACE, + STATE(1270), 1, + sym_field_declaration_list, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90844] = 5, + [90854] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1271), 1, + sym_declaration_list, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90861] = 5, + [90871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(1959), 1, - sym_parameters, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_declaration_list, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90878] = 5, + [90888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_declaration_list, + ACTIONS(6655), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90895] = 5, + [90903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_super, - ACTIONS(6643), 1, + ACTIONS(6657), 1, sym_identifier, + ACTIONS(6659), 1, + sym_super, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90912] = 4, + [90920] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(232), 1, + sym_closure_parameters, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90927] = 5, + [90937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, + ACTIONS(6621), 1, sym_super, - ACTIONS(6647), 1, + ACTIONS(6661), 1, sym_identifier, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90944] = 5, + [90954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5772), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_declaration_list, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90961] = 5, + [90971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(5728), 1, sym_super, - ACTIONS(6649), 1, + ACTIONS(5730), 1, sym_identifier, STATE(3174), 2, sym_line_comment, sym_block_comment, - [90978] = 5, + [90988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym_declaration_list, + ACTIONS(6583), 1, + sym_super, + ACTIONS(6663), 1, + sym_identifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [90995] = 5, + [91005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - STATE(673), 1, - sym_declaration_list, + STATE(1278), 1, + sym_field_declaration_list, STATE(3176), 2, sym_line_comment, sym_block_comment, - [91012] = 4, + [91022] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5437), 2, + sym_identifier, + sym_super, STATE(3177), 2, sym_line_comment, sym_block_comment, - [91027] = 5, + [91037] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6651), 1, - anon_sym_SEMI, - ACTIONS(6653), 1, - anon_sym_as, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1283), 1, + sym_declaration_list, STATE(3178), 2, sym_line_comment, sym_block_comment, - [91044] = 5, + [91054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_COLON_COLON, - ACTIONS(6655), 1, - anon_sym_RPAREN, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(739), 1, + sym_declaration_list, STATE(3179), 2, sym_line_comment, sym_block_comment, - [91061] = 5, + [91071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - anon_sym_COLON_COLON, - ACTIONS(6657), 1, - anon_sym_RPAREN, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(2237), 1, + sym_parameters, STATE(3180), 2, sym_line_comment, sym_block_comment, - [91078] = 5, + [91088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6659), 1, - sym_identifier, + ACTIONS(6643), 1, + anon_sym_COLON_COLON, + ACTIONS(6665), 1, + anon_sym_RPAREN, STATE(3181), 2, sym_line_comment, sym_block_comment, - [91095] = 5, + [91105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym_super, + ACTIONS(6647), 1, + anon_sym_COLON_COLON, + ACTIONS(6667), 1, + anon_sym_RPAREN, STATE(3182), 2, sym_line_comment, sym_block_comment, - [91112] = 5, + [91122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_super, - ACTIONS(6665), 1, - sym_identifier, + ACTIONS(6649), 1, + anon_sym_COLON_COLON, + ACTIONS(6667), 1, + anon_sym_RPAREN, STATE(3183), 2, sym_line_comment, sym_block_comment, - [91129] = 4, + [91139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(6667), 1, + anon_sym_RPAREN, STATE(3184), 2, sym_line_comment, sym_block_comment, - [91144] = 5, + [91156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5642), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(740), 1, + sym_declaration_list, STATE(3185), 2, sym_line_comment, sym_block_comment, - [91161] = 5, + [91173] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - sym_super, - ACTIONS(6669), 1, + ACTIONS(6669), 2, sym_identifier, + sym_metavariable, STATE(3186), 2, sym_line_comment, sym_block_comment, - [91178] = 5, + [91188] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - STATE(3094), 1, - sym_lifetime, + ACTIONS(6659), 2, + sym_identifier, + sym_super, STATE(3187), 2, sym_line_comment, sym_block_comment, - [91195] = 5, + [91203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, + ACTIONS(5312), 1, anon_sym_LBRACE, - STATE(1249), 1, + STATE(1289), 1, sym_enum_variant_list, STATE(3188), 2, sym_line_comment, sym_block_comment, - [91212] = 4, + [91220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6659), 1, + sym_super, + ACTIONS(6671), 1, + sym_identifier, STATE(3189), 2, sym_line_comment, sym_block_comment, - [91227] = 5, + [91237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6631), 1, - sym_identifier, + ACTIONS(6673), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3190), 2, sym_line_comment, sym_block_comment, - [91244] = 5, + [91252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, + ACTIONS(6589), 1, sym_super, - ACTIONS(6609), 1, + ACTIONS(6675), 1, sym_identifier, STATE(3191), 2, sym_line_comment, sym_block_comment, - [91261] = 5, + [91269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6559), 1, - sym_identifier, - ACTIONS(6633), 1, + ACTIONS(5728), 1, sym_super, + ACTIONS(5736), 1, + sym_identifier, STATE(3192), 2, sym_line_comment, sym_block_comment, - [91278] = 5, + [91286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, + ACTIONS(6583), 1, sym_super, - ACTIONS(5762), 1, + ACTIONS(6677), 1, sym_identifier, STATE(3193), 2, sym_line_comment, sym_block_comment, - [91295] = 5, + [91303] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6639), 1, - sym_identifier, + ACTIONS(4932), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_field_declaration_list, STATE(3194), 2, sym_line_comment, sym_block_comment, - [91312] = 5, + [91320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_COLON_COLON, - ACTIONS(6657), 1, - anon_sym_RPAREN, + ACTIONS(4932), 1, + anon_sym_LBRACE, + STATE(1297), 1, + sym_field_declaration_list, STATE(3195), 2, sym_line_comment, sym_block_comment, - [91329] = 5, + [91337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_super, - ACTIONS(6673), 1, - sym_identifier, + ACTIONS(3697), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, STATE(3196), 2, sym_line_comment, sym_block_comment, - [91346] = 5, + [91354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym_field_declaration_list, + ACTIONS(3689), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_PLUS, STATE(3197), 2, sym_line_comment, sym_block_comment, - [91363] = 5, + [91371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, + ACTIONS(6679), 1, + anon_sym_SEMI, + ACTIONS(6681), 1, + anon_sym_as, STATE(3198), 2, sym_line_comment, sym_block_comment, - [91380] = 5, + [91388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(5696), 1, sym_super, - ACTIONS(6675), 1, + ACTIONS(6683), 1, sym_identifier, STATE(3199), 2, sym_line_comment, sym_block_comment, - [91397] = 4, + [91405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6685), 1, + anon_sym_LBRACK, + ACTIONS(6687), 1, + anon_sym_BANG, STATE(3200), 2, sym_line_comment, sym_block_comment, - [91412] = 5, + [91422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_super, - ACTIONS(6679), 1, - sym_identifier, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, + ACTIONS(4844), 1, + anon_sym_BANG, STATE(3201), 2, sym_line_comment, sym_block_comment, - [91429] = 5, + [91439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - ACTIONS(6657), 1, - anon_sym_RPAREN, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6689), 1, + anon_sym_RBRACE, STATE(3202), 2, sym_line_comment, sym_block_comment, - [91446] = 5, + [91456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5789), 1, + ACTIONS(6557), 1, sym_identifier, + ACTIONS(6589), 1, + sym_super, STATE(3203), 2, sym_line_comment, sym_block_comment, - [91463] = 5, + [91473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(5437), 1, sym_super, - ACTIONS(6681), 1, + ACTIONS(6691), 1, sym_identifier, STATE(3204), 2, sym_line_comment, sym_block_comment, - [91480] = 5, + [91490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(711), 1, - sym_field_declaration_list, + ACTIONS(6555), 1, + sym_super, + ACTIONS(6693), 1, + sym_identifier, STATE(3205), 2, sym_line_comment, sym_block_comment, - [91497] = 5, + [91507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6589), 1, sym_super, - ACTIONS(6683), 1, + ACTIONS(6695), 1, sym_identifier, STATE(3206), 2, sym_line_comment, sym_block_comment, - [91514] = 5, + [91524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5791), 1, + ACTIONS(5676), 1, sym_identifier, + ACTIONS(5680), 1, + sym_super, STATE(3207), 2, sym_line_comment, sym_block_comment, - [91531] = 5, + [91541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6611), 1, sym_super, - ACTIONS(6685), 1, + ACTIONS(6697), 1, sym_identifier, STATE(3208), 2, sym_line_comment, sym_block_comment, - [91548] = 5, + [91558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6683), 1, + ACTIONS(6627), 1, sym_identifier, + ACTIONS(6659), 1, + sym_super, STATE(3209), 2, sym_line_comment, sym_block_comment, - [91565] = 5, + [91575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - STATE(1092), 1, - sym_parameters, + ACTIONS(5696), 1, + sym_super, + ACTIONS(6657), 1, + sym_identifier, STATE(3210), 2, sym_line_comment, sym_block_comment, - [91582] = 5, + [91592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, + ACTIONS(6589), 1, sym_super, - ACTIONS(5791), 1, + ACTIONS(6619), 1, sym_identifier, STATE(3211), 2, sym_line_comment, sym_block_comment, - [91599] = 5, + [91609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, + ACTIONS(5215), 1, sym_super, - ACTIONS(6685), 1, + ACTIONS(5730), 1, sym_identifier, STATE(3212), 2, sym_line_comment, sym_block_comment, - [91616] = 5, + [91626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_field_declaration_list, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6663), 1, + sym_identifier, STATE(3213), 2, sym_line_comment, sym_block_comment, - [91633] = 4, + [91643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(6659), 1, + sym_super, + ACTIONS(6699), 1, + sym_identifier, STATE(3214), 2, sym_line_comment, sym_block_comment, - [91648] = 5, + [91660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5720), 1, + ACTIONS(5726), 1, sym_identifier, + ACTIONS(5728), 1, + sym_super, STATE(3215), 2, sym_line_comment, sym_block_comment, - [91665] = 5, + [91677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_declaration_list, + ACTIONS(6583), 1, + sym_super, + ACTIONS(6701), 1, + sym_identifier, STATE(3216), 2, sym_line_comment, sym_block_comment, - [91682] = 5, + [91694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1255), 1, - sym_declaration_list, + ACTIONS(6659), 1, + sym_super, + ACTIONS(6703), 1, + sym_identifier, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91699] = 4, + [91711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6687), 2, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5762), 1, sym_identifier, - sym_metavariable, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91714] = 5, + [91728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(6583), 1, + sym_super, + ACTIONS(6705), 1, + sym_identifier, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91731] = 5, + [91745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2248), 1, - sym_parameters, + ACTIONS(6659), 1, + sym_super, + ACTIONS(6707), 1, + sym_identifier, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91748] = 5, + [91762] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, - anon_sym_COLON_COLON, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5774), 1, + sym_identifier, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91765] = 4, + [91779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6693), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6583), 1, + sym_super, + ACTIONS(6709), 1, + sym_identifier, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91780] = 5, + [91796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(5696), 1, + sym_super, + ACTIONS(6707), 1, + sym_identifier, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91797] = 5, + [91813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, - anon_sym_BANG, - ACTIONS(6697), 1, - anon_sym_COLON_COLON, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5774), 1, + sym_identifier, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91814] = 5, + [91830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym_field_declaration_list, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6709), 1, + sym_identifier, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91831] = 5, + [91847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4249), 1, - anon_sym_EQ_GT, - ACTIONS(6699), 1, - anon_sym_AMP_AMP, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6711), 1, + anon_sym_RBRACE, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91848] = 5, + [91864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1181), 1, - sym_declaration_list, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6713), 1, + anon_sym_RBRACE, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91865] = 5, + [91881] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6181), 1, - anon_sym_EQ_GT, - ACTIONS(6699), 1, - anon_sym_AMP_AMP, + ACTIONS(5921), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91882] = 5, + [91896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4968), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_declaration_list, + STATE(637), 1, + sym_field_declaration_list, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91899] = 4, + [91913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6701), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5267), 1, + anon_sym_RPAREN, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91914] = 5, + [91930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_enum_variant_list, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1377), 1, + sym_type_arguments, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91931] = 5, + [91947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 1, - anon_sym_SEMI, - ACTIONS(6705), 1, - anon_sym_as, + ACTIONS(6351), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91948] = 4, + [91962] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5267), 1, + anon_sym_RBRACK, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91963] = 5, + [91979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(1055), 1, - sym_type_parameters, + ACTIONS(5696), 1, + sym_super, + ACTIONS(6715), 1, + sym_identifier, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91980] = 5, + [91996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(6629), 1, anon_sym_LPAREN, - STATE(2215), 1, - sym_parameters, + ACTIONS(6717), 1, + anon_sym_COLON_COLON, STATE(3235), 2, sym_line_comment, sym_block_comment, - [91997] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(242), 1, - sym_closure_parameters, + ACTIONS(6719), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3236), 2, sym_line_comment, sym_block_comment, - [92014] = 5, + [92028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6707), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(531), 1, + sym_declaration_list, STATE(3237), 2, sym_line_comment, sym_block_comment, - [92031] = 5, + [92045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1188), 1, - sym_field_declaration_list, + ACTIONS(6721), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3238), 2, sym_line_comment, sym_block_comment, - [92048] = 5, + [92060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_EQ, + ACTIONS(6723), 1, + anon_sym_BANG, + ACTIONS(6725), 1, + anon_sym_COLON_COLON, STATE(3239), 2, sym_line_comment, sym_block_comment, - [92065] = 5, + [92077] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(511), 1, - sym_declaration_list, + STATE(218), 1, + sym_closure_parameters, STATE(3240), 2, sym_line_comment, sym_block_comment, - [92082] = 4, + [92094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 2, - sym_identifier, - sym_super, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(638), 1, + sym_declaration_list, STATE(3241), 2, sym_line_comment, sym_block_comment, - [92097] = 5, + [92111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(1193), 1, + STATE(639), 1, sym_declaration_list, STATE(3242), 2, sym_line_comment, sym_block_comment, - [92114] = 5, + [92128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5227), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(4061), 1, + anon_sym_LBRACE, + STATE(1780), 1, + sym_field_initializer_list, STATE(3243), 2, sym_line_comment, sym_block_comment, - [92131] = 5, + [92145] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5227), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, + ACTIONS(5273), 1, + anon_sym_RBRACE, + ACTIONS(6613), 1, anon_sym_SEMI, STATE(3244), 2, sym_line_comment, sym_block_comment, - [92148] = 5, + [92162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5229), 1, + ACTIONS(5404), 2, anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3245), 2, sym_line_comment, sym_block_comment, - [92165] = 4, + [92177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6455), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6603), 1, + anon_sym_LT, + STATE(1054), 1, + sym_type_parameters, STATE(3246), 2, sym_line_comment, sym_block_comment, - [92180] = 5, + [92194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5229), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, + ACTIONS(5277), 1, + anon_sym_RPAREN, + ACTIONS(6613), 1, anon_sym_SEMI, STATE(3247), 2, sym_line_comment, sym_block_comment, - [92197] = 4, + [92211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 2, + ACTIONS(6727), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(3248), 2, sym_line_comment, sym_block_comment, - [92212] = 5, + [92226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5872), 1, - sym_identifier, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(2219), 1, + sym_parameters, STATE(3249), 2, sym_line_comment, sym_block_comment, - [92229] = 4, + [92243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 2, - sym_identifier, + ACTIONS(5437), 1, sym_super, + ACTIONS(6729), 1, + sym_identifier, STATE(3250), 2, sym_line_comment, sym_block_comment, - [92244] = 4, + [92260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 2, - sym_identifier, - sym_super, + ACTIONS(6731), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3251), 2, sym_line_comment, sym_block_comment, - [92259] = 5, + [92275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1395), 1, - sym_type_arguments, + ACTIONS(6733), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3252), 2, sym_line_comment, sym_block_comment, - [92276] = 5, + [92290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6713), 1, - sym_identifier, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6735), 1, + anon_sym_EQ, STATE(3253), 2, sym_line_comment, sym_block_comment, - [92293] = 4, + [92307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6737), 2, + sym_float_literal, + sym_integer_literal, STATE(3254), 2, sym_line_comment, sym_block_comment, - [92308] = 5, + [92322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_enum_variant_list, + ACTIONS(6575), 1, + sym_identifier, + ACTIONS(6659), 1, + sym_super, STATE(3255), 2, sym_line_comment, sym_block_comment, - [92325] = 5, + [92339] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5480), 1, - anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_PIPE, + ACTIONS(6384), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3256), 2, sym_line_comment, sym_block_comment, - [92342] = 5, + [92354] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1198), 1, - sym_enum_variant_list, + ACTIONS(6270), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3257), 2, sym_line_comment, sym_block_comment, - [92359] = 4, + [92369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6717), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6739), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3258), 2, sym_line_comment, sym_block_comment, - [92374] = 5, + [92384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1861), 1, - sym_type_arguments, + ACTIONS(5277), 1, + anon_sym_RBRACK, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3259), 2, sym_line_comment, sym_block_comment, - [92391] = 5, + [92401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(5437), 1, + sym_super, + ACTIONS(6741), 1, + sym_identifier, STATE(3260), 2, sym_line_comment, sym_block_comment, - [92408] = 5, + [92418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2221), 1, - sym_parameters, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_field_declaration_list, STATE(3261), 2, sym_line_comment, sym_block_comment, - [92425] = 5, + [92435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3701), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(5253), 1, + anon_sym_RPAREN, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3262), 2, sym_line_comment, sym_block_comment, - [92442] = 5, + [92452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5962), 1, - anon_sym_for, + ACTIONS(5253), 1, + anon_sym_RBRACK, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3263), 2, sym_line_comment, sym_block_comment, - [92459] = 5, + [92469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6719), 1, + ACTIONS(5255), 1, anon_sym_RPAREN, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3264), 2, sym_line_comment, sym_block_comment, - [92476] = 5, + [92486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6719), 1, + ACTIONS(5255), 1, anon_sym_RBRACK, + ACTIONS(6613), 1, + anon_sym_SEMI, STATE(3265), 2, sym_line_comment, sym_block_comment, - [92493] = 5, + [92503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6721), 1, - anon_sym_RPAREN, + ACTIONS(3291), 1, + anon_sym_LPAREN, + STATE(1150), 1, + sym_parameters, STATE(3266), 2, sym_line_comment, sym_block_comment, - [92510] = 5, + [92520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(5281), 1, + anon_sym_RBRACE, + ACTIONS(6613), 1, anon_sym_SEMI, - ACTIONS(6721), 1, - anon_sym_RBRACK, STATE(3267), 2, sym_line_comment, sym_block_comment, - [92527] = 5, + [92537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - STATE(712), 1, + STATE(1342), 1, sym_declaration_list, STATE(3268), 2, sym_line_comment, sym_block_comment, - [92544] = 4, + [92554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4664), 1, + anon_sym_BANG, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, STATE(3269), 2, sym_line_comment, sym_block_comment, - [92559] = 4, + [92571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1348), 1, + sym_declaration_list, STATE(3270), 2, sym_line_comment, sym_block_comment, - [92574] = 5, + [92588] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6723), 1, - anon_sym_GT, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(6349), 1, + anon_sym_for, STATE(3271), 2, sym_line_comment, sym_block_comment, - [92591] = 5, + [92605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 1, - sym_identifier, - ACTIONS(6633), 1, - sym_super, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_declaration_list, STATE(3272), 2, sym_line_comment, sym_block_comment, - [92608] = 5, + [92622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2197), 1, - sym_parameters, + ACTIONS(4505), 1, + anon_sym_BANG, + ACTIONS(6743), 1, + anon_sym_COLON_COLON, STATE(3273), 2, sym_line_comment, sym_block_comment, - [92625] = 5, + [92639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - STATE(1981), 1, + STATE(1986), 1, sym_parameters, STATE(3274), 2, sym_line_comment, sym_block_comment, - [92642] = 5, + [92656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2251), 1, - sym_parameters, + ACTIONS(5312), 1, + anon_sym_LBRACE, + STATE(1357), 1, + sym_enum_variant_list, STATE(3275), 2, sym_line_comment, sym_block_comment, - [92659] = 5, + [92673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(622), 1, - sym_declaration_list, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(2257), 1, + sym_parameters, STATE(3276), 2, sym_line_comment, sym_block_comment, - [92676] = 5, + [92690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - STATE(1201), 1, + STATE(1360), 1, sym_field_declaration_list, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92693] = 5, + [92707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1296), 1, - sym_declaration_list, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6745), 1, + anon_sym_RPAREN, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92710] = 4, + [92724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6725), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6745), 1, + anon_sym_RBRACK, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92725] = 5, + [92741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_super, - ACTIONS(6593), 1, - sym_identifier, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6747), 1, + anon_sym_RPAREN, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92742] = 5, + [92758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_declaration_list, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6747), 1, + anon_sym_RBRACK, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92759] = 5, + [92775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(867), 1, - sym_type_parameters, + ACTIONS(4289), 1, + anon_sym_EQ_GT, + ACTIONS(6749), 1, + anon_sym_AMP_AMP, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92776] = 5, + [92792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(650), 1, + sym_declaration_list, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92793] = 5, + [92809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(4932), 1, anon_sym_LBRACE, - STATE(519), 1, - sym_declaration_list, + STATE(1362), 1, + sym_field_declaration_list, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92810] = 5, + [92826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6605), 1, - sym_super, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1363), 1, + sym_declaration_list, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92827] = 5, + [92843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_EQ_GT, + ACTIONS(6749), 1, + anon_sym_AMP_AMP, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92844] = 5, + [92860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6731), 1, - anon_sym_LPAREN, - ACTIONS(6733), 1, - anon_sym_COLON_COLON, + ACTIONS(5820), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92861] = 5, + [92875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, - anon_sym_BANG, - ACTIONS(6737), 1, - anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6751), 1, + anon_sym_RPAREN, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92878] = 5, + [92892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4968), 1, anon_sym_LBRACE, - STATE(1304), 1, - sym_declaration_list, + STATE(682), 1, + sym_field_declaration_list, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92895] = 5, + [92909] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1305), 1, - sym_declaration_list, + STATE(237), 1, + sym_closure_parameters, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92912] = 5, + [92926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(1051), 1, - sym_type_parameters, + ACTIONS(4503), 1, + anon_sym_LPAREN, + STATE(2233), 1, + sym_parameters, STATE(3291), 2, sym_line_comment, sym_block_comment, - [92929] = 5, + [92943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_field_declaration_list, + ACTIONS(5696), 2, + sym_identifier, + sym_super, STATE(3292), 2, sym_line_comment, sym_block_comment, - [92946] = 5, + [92958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2725), 1, - sym_trait_bounds, + ACTIONS(4934), 1, + anon_sym_LT, + STATE(957), 1, + sym_type_parameters, STATE(3293), 2, sym_line_comment, sym_block_comment, - [92963] = 5, + [92975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - STATE(520), 1, + STATE(539), 1, sym_declaration_list, STATE(3294), 2, sym_line_comment, sym_block_comment, - [92980] = 5, + [92992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(891), 1, - sym_type_parameters, + ACTIONS(5692), 1, + sym_identifier, + ACTIONS(5728), 1, + sym_super, STATE(3295), 2, sym_line_comment, sym_block_comment, - [92997] = 4, + [93009] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_declaration_list, STATE(3296), 2, sym_line_comment, sym_block_comment, - [93012] = 5, + [93026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - STATE(1117), 1, - sym_parameters, + ACTIONS(4664), 1, + anon_sym_BANG, + ACTIONS(4762), 1, + anon_sym_COLON_COLON, STATE(3297), 2, sym_line_comment, sym_block_comment, - [93029] = 5, + [93043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6741), 1, - sym_identifier, + ACTIONS(6753), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3298), 2, sym_line_comment, sym_block_comment, - [93046] = 5, + [93058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, + ACTIONS(5045), 1, + anon_sym_COLON, + STATE(2666), 1, + sym_trait_bounds, STATE(3299), 2, sym_line_comment, sym_block_comment, - [93063] = 5, + [93075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(6328), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3300), 2, sym_line_comment, sym_block_comment, - [93080] = 5, + [93090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, + ACTIONS(4503), 1, anon_sym_LPAREN, - ACTIONS(6743), 1, - anon_sym_COLON_COLON, + STATE(2204), 1, + sym_parameters, STATE(3301), 2, sym_line_comment, sym_block_comment, - [93097] = 5, + [93107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, + ACTIONS(6613), 1, anon_sym_SEMI, - ACTIONS(6747), 1, - anon_sym_as, + ACTIONS(6751), 1, + anon_sym_RBRACK, STATE(3302), 2, sym_line_comment, sym_block_comment, - [93114] = 4, + [93124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 2, - sym_identifier, + ACTIONS(6583), 1, sym_super, + ACTIONS(6635), 1, + sym_identifier, STATE(3303), 2, sym_line_comment, sym_block_comment, - [93129] = 5, + [93141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6749), 1, - anon_sym_COLON_COLON, + ACTIONS(5215), 1, + sym_super, + ACTIONS(5666), 1, + sym_identifier, STATE(3304), 2, sym_line_comment, sym_block_comment, - [93146] = 4, + [93158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6755), 1, + anon_sym_LPAREN, + ACTIONS(6757), 1, + anon_sym_COLON_COLON, STATE(3305), 2, sym_line_comment, sym_block_comment, - [93161] = 5, + [93175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_LBRACK, - ACTIONS(6755), 1, - anon_sym_BANG, + ACTIONS(5360), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_enum_variant_list, STATE(3306), 2, sym_line_comment, sym_block_comment, - [93178] = 4, + [93192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6759), 1, + anon_sym_BANG, + ACTIONS(6761), 1, + anon_sym_COLON_COLON, STATE(3307), 2, sym_line_comment, sym_block_comment, - [93193] = 5, + [93209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6759), 1, - anon_sym_in, + ACTIONS(5728), 2, + sym_identifier, + sym_super, STATE(3308), 2, sym_line_comment, sym_block_comment, - [93210] = 5, + [93224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_enum_variant_list, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6763), 1, + sym_identifier, STATE(3309), 2, sym_line_comment, sym_block_comment, - [93227] = 4, + [93241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5889), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_declaration_list, STATE(3310), 2, sym_line_comment, sym_block_comment, - [93242] = 4, + [93258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(6603), 1, + anon_sym_LT, + STATE(1064), 1, + sym_type_parameters, STATE(3311), 2, sym_line_comment, sym_block_comment, - [93257] = 4, + [93275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 2, + ACTIONS(5215), 2, sym_identifier, - sym_metavariable, + sym_super, STATE(3312), 2, sym_line_comment, sym_block_comment, - [93272] = 5, + [93290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6763), 1, - anon_sym_EQ, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6765), 1, + sym_identifier, STATE(3313), 2, sym_line_comment, sym_block_comment, - [93289] = 5, + [93307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_field_declaration_list, + ACTIONS(4019), 1, + anon_sym_LT2, + STATE(1721), 1, + sym_type_arguments, STATE(3314), 2, sym_line_comment, sym_block_comment, - [93306] = 4, + [93324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 2, - sym_identifier, - sym_super, + ACTIONS(5443), 1, + anon_sym_COLON, + ACTIONS(5445), 1, + anon_sym_PIPE, STATE(3315), 2, sym_line_comment, sym_block_comment, - [93321] = 5, + [93341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5021), 1, - anon_sym_for, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_field_declaration_list, STATE(3316), 2, sym_line_comment, sym_block_comment, - [93338] = 5, + [93358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(5360), 1, anon_sym_LBRACE, - STATE(1140), 1, - sym_field_declaration_list, + STATE(749), 1, + sym_enum_variant_list, STATE(3317), 2, sym_line_comment, sym_block_comment, - [93355] = 4, + [93375] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 2, - sym_identifier, - sym_metavariable, + STATE(223), 1, + sym_closure_parameters, STATE(3318), 2, sym_line_comment, sym_block_comment, - [93370] = 5, + [93392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, + ACTIONS(6629), 1, + anon_sym_LPAREN, + ACTIONS(6767), 1, anon_sym_COLON_COLON, - ACTIONS(6511), 1, - anon_sym_for, STATE(3319), 2, sym_line_comment, sym_block_comment, - [93387] = 5, + [93409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - STATE(611), 1, - sym_field_declaration_list, + STATE(1104), 1, + sym_declaration_list, STATE(3320), 2, sym_line_comment, sym_block_comment, - [93404] = 5, + [93426] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - anon_sym_for, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_field_declaration_list, STATE(3321), 2, sym_line_comment, sym_block_comment, - [93421] = 5, + [93443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(6629), 1, + anon_sym_LPAREN, + ACTIONS(6769), 1, + anon_sym_COLON_COLON, STATE(3322), 2, sym_line_comment, sym_block_comment, - [93438] = 5, + [93460] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2234), 1, - sym_parameters, + ACTIONS(3382), 1, + anon_sym_LBRACE, + STATE(1471), 1, + sym_field_initializer_list, STATE(3323), 2, sym_line_comment, sym_block_comment, - [93455] = 5, + [93477] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_field_declaration_list, + ACTIONS(6771), 1, + anon_sym_LBRACK, + ACTIONS(6773), 1, + anon_sym_BANG, STATE(3324), 2, sym_line_comment, sym_block_comment, - [93472] = 5, + [93494] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3765), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, + ACTIONS(6775), 2, + sym_identifier, + sym_metavariable, STATE(3325), 2, sym_line_comment, sym_block_comment, - [93489] = 5, + [93509] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, + ACTIONS(5445), 1, anon_sym_PIPE, - ACTIONS(6767), 1, + ACTIONS(6777), 1, anon_sym_in, STATE(3326), 2, sym_line_comment, sym_block_comment, - [93506] = 5, + [93526] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - STATE(1134), 1, + STATE(1112), 1, sym_declaration_list, STATE(3327), 2, sym_line_comment, sym_block_comment, - [93523] = 5, + [93543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(6519), 1, - anon_sym_for, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_declaration_list, STATE(3328), 2, sym_line_comment, sym_block_comment, - [93540] = 5, + [93560] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_LBRACK, - ACTIONS(6771), 1, - anon_sym_BANG, + ACTIONS(6779), 2, + sym_identifier, + sym_metavariable, STATE(3329), 2, sym_line_comment, sym_block_comment, - [93557] = 5, + [93575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6773), 1, - anon_sym_in, + ACTIONS(6589), 1, + sym_super, + ACTIONS(6741), 1, + sym_identifier, STATE(3330), 2, sym_line_comment, sym_block_comment, - [93574] = 5, + [93592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6775), 1, - anon_sym_in, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_for, STATE(3331), 2, sym_line_comment, sym_block_comment, - [93591] = 5, + [93609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6777), 1, - anon_sym_in, + ACTIONS(6058), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3332), 2, sym_line_comment, sym_block_comment, - [93608] = 5, + [93624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6779), 1, - anon_sym_in, + ACTIONS(6781), 1, + sym_identifier, + ACTIONS(6783), 1, + sym_mutable_specifier, STATE(3333), 2, sym_line_comment, sym_block_comment, - [93625] = 5, + [93641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - anon_sym_STAR_SLASH, - ACTIONS(6783), 1, - sym__block_comment_content, + ACTIONS(5728), 1, + sym_super, + ACTIONS(5764), 1, + sym_identifier, STATE(3334), 2, sym_line_comment, sym_block_comment, - [93642] = 5, + [93658] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, + ACTIONS(6785), 2, sym_identifier, - ACTIONS(6525), 1, - sym_mutable_specifier, + sym_metavariable, STATE(3335), 2, sym_line_comment, sym_block_comment, - [93659] = 4, + [93673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(6501), 1, + anon_sym_for, STATE(3336), 2, sym_line_comment, sym_block_comment, - [93674] = 5, + [93690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_COLON_COLON, + ACTIONS(6583), 1, + sym_super, + ACTIONS(6595), 1, + sym_identifier, STATE(3337), 2, sym_line_comment, sym_block_comment, - [93691] = 5, + [93707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - sym_identifier, - ACTIONS(6791), 1, - sym_mutable_specifier, + ACTIONS(4968), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_field_declaration_list, STATE(3338), 2, sym_line_comment, sym_block_comment, - [93708] = 5, + [93724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_declaration_list, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(6507), 1, + anon_sym_for, STATE(3339), 2, sym_line_comment, sym_block_comment, - [93725] = 4, + [93741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5360), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_enum_variant_list, STATE(3340), 2, sym_line_comment, sym_block_comment, - [93740] = 4, + [93758] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, - anon_sym_fn, + ACTIONS(6613), 1, + anon_sym_SEMI, + ACTIONS(6787), 1, + anon_sym_RBRACE, STATE(3341), 2, sym_line_comment, sym_block_comment, - [93754] = 4, + [93775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - anon_sym_RBRACE, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_in, STATE(3342), 2, sym_line_comment, sym_block_comment, - [93768] = 4, + [93792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, - sym_identifier, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6791), 1, + anon_sym_in, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93782] = 4, + [93809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, - sym_identifier, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + ACTIONS(6521), 1, + anon_sym_for, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93796] = 4, + [93826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - sym_identifier, + ACTIONS(6793), 1, + anon_sym_LBRACK, + ACTIONS(6795), 1, + anon_sym_BANG, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93810] = 4, + [93843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - sym_identifier, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6797), 1, + anon_sym_in, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93824] = 4, + [93860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - anon_sym_SEMI, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6799), 1, + anon_sym_in, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93838] = 4, + [93877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3103), 1, - anon_sym_PLUS, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6801), 1, + anon_sym_in, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93852] = 4, + [93894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - sym_identifier, + ACTIONS(5445), 1, + anon_sym_PIPE, + ACTIONS(6803), 1, + anon_sym_in, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93866] = 4, + [93911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, + ACTIONS(6525), 1, sym_identifier, + ACTIONS(6529), 1, + sym_mutable_specifier, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93880] = 4, + [93928] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_COLON_COLON, + ACTIONS(6805), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93894] = 4, + [93943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, - anon_sym_EQ_GT, + ACTIONS(6807), 1, + sym_identifier, + ACTIONS(6809), 1, + sym_mutable_specifier, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93908] = 4, + [93960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, + ACTIONS(6811), 1, + anon_sym_SEMI, + ACTIONS(6813), 1, + anon_sym_as, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93922] = 4, + [93977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5862), 1, - anon_sym_RPAREN, + ACTIONS(6603), 1, + anon_sym_LT, + STATE(876), 1, + sym_type_parameters, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93936] = 4, + [93994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_COLON, + ACTIONS(5024), 1, + anon_sym_LBRACE, + STATE(1153), 1, + sym_declaration_list, STATE(3355), 2, sym_line_comment, sym_block_comment, - [93950] = 4, + [94011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6030), 1, - anon_sym_RBRACE, + ACTIONS(4932), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_field_declaration_list, STATE(3356), 2, sym_line_comment, sym_block_comment, - [93964] = 4, + [94028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_COLON, + ACTIONS(6815), 1, + anon_sym_RBRACK, STATE(3357), 2, sym_line_comment, sym_block_comment, - [93978] = 4, + [94042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_SEMI, + ACTIONS(6817), 1, + sym__line_doc_content, STATE(3358), 2, sym_line_comment, sym_block_comment, - [93992] = 4, + [94056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5983), 1, - anon_sym_RBRACE, + ACTIONS(6819), 1, + anon_sym_COLON, STATE(3359), 2, sym_line_comment, sym_block_comment, - [94006] = 4, + [94070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6821), 1, - anon_sym_RBRACK, + sym_identifier, STATE(3360), 2, sym_line_comment, sym_block_comment, - [94020] = 4, + [94084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, + ACTIONS(6823), 1, + sym_identifier, STATE(3361), 2, sym_line_comment, sym_block_comment, - [94034] = 4, + [94098] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, + ACTIONS(6825), 1, sym_identifier, STATE(3362), 2, sym_line_comment, sym_block_comment, - [94048] = 4, + [94112] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, + ACTIONS(6827), 1, sym_identifier, STATE(3363), 2, sym_line_comment, sym_block_comment, - [94062] = 4, + [94126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, + ACTIONS(6829), 1, sym_identifier, STATE(3364), 2, sym_line_comment, sym_block_comment, - [94076] = 4, + [94140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, - anon_sym_SEMI, + ACTIONS(6831), 1, + anon_sym_RPAREN, STATE(3365), 2, sym_line_comment, sym_block_comment, - [94090] = 4, + [94154] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, + ACTIONS(6833), 1, sym_identifier, STATE(3366), 2, sym_line_comment, sym_block_comment, - [94104] = 4, + [94168] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - anon_sym_fn, + ACTIONS(5441), 1, + anon_sym_RPAREN, STATE(3367), 2, sym_line_comment, sym_block_comment, - [94118] = 4, + [94182] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - anon_sym_SEMI, + ACTIONS(4117), 1, + anon_sym_COLON_COLON, STATE(3368), 2, sym_line_comment, sym_block_comment, - [94132] = 4, + [94196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, + ACTIONS(6835), 1, anon_sym_COLON_COLON, STATE(3369), 2, sym_line_comment, sym_block_comment, - [94146] = 4, + [94210] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_RBRACK, + ACTIONS(4634), 1, + anon_sym_COLON_COLON, STATE(3370), 2, sym_line_comment, sym_block_comment, - [94160] = 4, + [94224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, + ACTIONS(6837), 1, anon_sym_SEMI, STATE(3371), 2, sym_line_comment, sym_block_comment, - [94174] = 4, + [94238] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, - anon_sym_LBRACE, + ACTIONS(6839), 1, + anon_sym_EQ_GT, STATE(3372), 2, sym_line_comment, sym_block_comment, - [94188] = 4, + [94252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_COLON, + ACTIONS(3961), 1, + anon_sym_COLON_COLON, STATE(3373), 2, sym_line_comment, sym_block_comment, - [94202] = 4, + [94266] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - anon_sym_RBRACE, + ACTIONS(6841), 1, + anon_sym_SEMI, STATE(3374), 2, sym_line_comment, sym_block_comment, - [94216] = 4, + [94280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - sym_identifier, + ACTIONS(6843), 1, + anon_sym_SEMI, STATE(3375), 2, sym_line_comment, sym_block_comment, - [94230] = 4, + [94294] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, - anon_sym_SEMI, + ACTIONS(4135), 1, + anon_sym_RPAREN, STATE(3376), 2, sym_line_comment, sym_block_comment, - [94244] = 4, + [94308] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, + ACTIONS(6845), 1, sym_identifier, STATE(3377), 2, sym_line_comment, sym_block_comment, - [94258] = 4, + [94322] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - sym_identifier, + ACTIONS(4593), 1, + anon_sym_COLON_COLON, STATE(3378), 2, sym_line_comment, sym_block_comment, - [94272] = 4, + [94336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - anon_sym_COLON_COLON, + ACTIONS(6847), 1, + sym_identifier, STATE(3379), 2, sym_line_comment, sym_block_comment, - [94286] = 4, + [94350] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, + ACTIONS(6849), 1, sym_identifier, STATE(3380), 2, sym_line_comment, sym_block_comment, - [94300] = 4, + [94364] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, + ACTIONS(6423), 1, + anon_sym_GT, STATE(3381), 2, sym_line_comment, sym_block_comment, - [94314] = 4, + [94378] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - sym_identifier, + ACTIONS(6851), 1, + anon_sym_COLON_COLON, STATE(3382), 2, sym_line_comment, sym_block_comment, - [94328] = 4, + [94392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - sym_identifier, + ACTIONS(6853), 1, + anon_sym_fn, STATE(3383), 2, sym_line_comment, sym_block_comment, - [94342] = 4, + [94406] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, + ACTIONS(6855), 1, sym_identifier, STATE(3384), 2, sym_line_comment, sym_block_comment, - [94356] = 4, + [94420] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, + ACTIONS(6857), 1, + anon_sym_COLON_COLON, STATE(3385), 2, sym_line_comment, sym_block_comment, - [94370] = 4, + [94434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - anon_sym_fn, + ACTIONS(6859), 1, + anon_sym_SEMI, STATE(3386), 2, sym_line_comment, sym_block_comment, - [94384] = 4, + [94448] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, - sym_identifier, + ACTIONS(6861), 1, + anon_sym_RBRACK, STATE(3387), 2, sym_line_comment, sym_block_comment, - [94398] = 4, + [94462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, - anon_sym_EQ_GT, + ACTIONS(6787), 1, + anon_sym_SEMI, STATE(3388), 2, sym_line_comment, sym_block_comment, - [94412] = 4, + [94476] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, - anon_sym_SEMI, + ACTIONS(6863), 1, + anon_sym_EQ_GT, STATE(3389), 2, sym_line_comment, sym_block_comment, - [94426] = 4, + [94490] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, - anon_sym_COLON, + ACTIONS(6865), 1, + anon_sym_RBRACE, STATE(3390), 2, sym_line_comment, sym_block_comment, - [94440] = 4, + [94504] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - anon_sym_SEMI, + ACTIONS(6040), 1, + anon_sym_RBRACE, STATE(3391), 2, sym_line_comment, sym_block_comment, - [94454] = 4, + [94518] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, + ACTIONS(6279), 1, anon_sym_RBRACE, STATE(3392), 2, sym_line_comment, sym_block_comment, - [94468] = 4, + [94532] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - anon_sym_RBRACK, + ACTIONS(6867), 1, + anon_sym_SEMI, STATE(3393), 2, sym_line_comment, sym_block_comment, - [94482] = 4, + [94546] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3145), 1, - anon_sym_PLUS, + ACTIONS(6869), 1, + sym_identifier, STATE(3394), 2, sym_line_comment, sym_block_comment, - [94496] = 4, + [94560] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - sym__line_doc_content, + ACTIONS(6871), 1, + anon_sym_COLON_COLON, STATE(3395), 2, sym_line_comment, sym_block_comment, - [94510] = 4, + [94574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_COLON, + ACTIONS(6873), 1, + sym_identifier, STATE(3396), 2, sym_line_comment, sym_block_comment, - [94524] = 4, + [94588] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, + ACTIONS(6875), 1, + sym_identifier, STATE(3397), 2, sym_line_comment, sym_block_comment, - [94538] = 4, + [94602] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_COLON, + ACTIONS(6877), 1, + sym_identifier, STATE(3398), 2, sym_line_comment, sym_block_comment, - [94552] = 4, + [94616] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_COLON_COLON, + ACTIONS(6879), 1, + sym_identifier, STATE(3399), 2, sym_line_comment, sym_block_comment, - [94566] = 4, + [94630] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, - anon_sym_fn, + ACTIONS(6881), 1, + sym_identifier, STATE(3400), 2, sym_line_comment, sym_block_comment, - [94580] = 4, + [94644] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, - anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_RPAREN, STATE(3401), 2, sym_line_comment, sym_block_comment, - [94594] = 4, + [94658] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_LBRACE, + ACTIONS(6885), 1, + sym__line_doc_content, STATE(3402), 2, sym_line_comment, sym_block_comment, - [94608] = 4, + [94672] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_SEMI, + ACTIONS(6887), 1, + sym__raw_string_literal_end, STATE(3403), 2, sym_line_comment, sym_block_comment, - [94622] = 4, + [94686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, + ACTIONS(4038), 1, + sym_identifier, STATE(3404), 2, sym_line_comment, sym_block_comment, - [94636] = 4, + [94700] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6133), 1, - anon_sym_RBRACE, + ACTIONS(6889), 1, + sym_identifier, STATE(3405), 2, sym_line_comment, sym_block_comment, - [94650] = 4, + [94714] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6891), 1, - anon_sym_RBRACE, + anon_sym_STAR_SLASH, STATE(3406), 2, sym_line_comment, sym_block_comment, - [94664] = 4, + [94728] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6893), 1, - sym_identifier, + anon_sym_SEMI, STATE(3407), 2, sym_line_comment, sym_block_comment, - [94678] = 4, + [94742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6895), 1, - anon_sym_SEMI, + anon_sym_COLON_COLON, STATE(3408), 2, sym_line_comment, sym_block_comment, - [94692] = 4, + [94756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, + ACTIONS(5455), 1, anon_sym_RPAREN, STATE(3409), 2, sym_line_comment, sym_block_comment, - [94706] = 4, + [94770] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5891), 1, - anon_sym_RPAREN, + ACTIONS(881), 1, + anon_sym_RBRACK, STATE(3410), 2, sym_line_comment, sym_block_comment, - [94720] = 4, + [94784] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, + ACTIONS(6897), 1, sym_identifier, STATE(3411), 2, sym_line_comment, sym_block_comment, - [94734] = 4, + [94798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, + ACTIONS(6899), 1, anon_sym_SEMI, STATE(3412), 2, sym_line_comment, sym_block_comment, - [94748] = 4, + [94812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - anon_sym_SEMI, + ACTIONS(4972), 1, + anon_sym_COLON_COLON, STATE(3413), 2, sym_line_comment, sym_block_comment, - [94762] = 4, + [94826] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5818), 1, - anon_sym_RBRACK, + ACTIONS(6901), 1, + sym__line_doc_content, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94776] = 4, + [94840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6903), 1, - sym_identifier, + anon_sym_COLON_COLON, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94790] = 4, + [94854] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6905), 1, - anon_sym_RBRACE, + anon_sym_fn, STATE(3416), 2, sym_line_comment, sym_block_comment, - [94804] = 4, + [94868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_RPAREN, + ACTIONS(5281), 1, + anon_sym_SEMI, STATE(3417), 2, sym_line_comment, sym_block_comment, - [94818] = 4, + [94882] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - sym_identifier, + ACTIONS(5956), 1, + anon_sym_LBRACE, STATE(3418), 2, sym_line_comment, sym_block_comment, - [94832] = 4, + [94896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, + ACTIONS(6907), 1, sym_identifier, STATE(3419), 2, sym_line_comment, sym_block_comment, - [94846] = 4, + [94910] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - sym_identifier, + ACTIONS(941), 1, + anon_sym_EQ_GT, STATE(3420), 2, sym_line_comment, sym_block_comment, - [94860] = 4, + [94924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym_identifier, + ACTIONS(6909), 1, + anon_sym_RPAREN, STATE(3421), 2, sym_line_comment, sym_block_comment, - [94874] = 4, + [94938] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, - anon_sym_SEMI, + ACTIONS(6517), 1, + anon_sym_RBRACE, STATE(3422), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [94952] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_COLON_COLON, + ACTIONS(6911), 1, + anon_sym_RBRACK, STATE(3423), 2, sym_line_comment, sym_block_comment, - [94902] = 4, + [94966] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, - anon_sym_COLON, + ACTIONS(6913), 1, + anon_sym_SEMI, STATE(3424), 2, sym_line_comment, sym_block_comment, - [94916] = 4, + [94980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - anon_sym_RBRACK, + ACTIONS(6915), 1, + anon_sym_SEMI, STATE(3425), 2, sym_line_comment, sym_block_comment, - [94930] = 4, + [94994] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, - anon_sym_RPAREN, + ACTIONS(6649), 1, + anon_sym_COLON_COLON, STATE(3426), 2, sym_line_comment, sym_block_comment, - [94944] = 4, - ACTIONS(103), 1, + [95008] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, + ACTIONS(6917), 1, + aux_sym_line_comment_token2, STATE(3427), 2, sym_line_comment, sym_block_comment, - [94958] = 4, + [95022] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - sym__raw_string_literal_end, + ACTIONS(6919), 1, + anon_sym_RBRACE, STATE(3428), 2, sym_line_comment, sym_block_comment, - [94972] = 4, + [95036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, - sym_identifier, + ACTIONS(6921), 1, + anon_sym_SEMI, STATE(3429), 2, sym_line_comment, sym_block_comment, - [94986] = 4, + [95050] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - sym_identifier, + ACTIONS(6923), 1, + anon_sym_RBRACE, STATE(3430), 2, sym_line_comment, sym_block_comment, - [95000] = 4, + [95064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - anon_sym_SEMI, + ACTIONS(6925), 1, + anon_sym_COLON, STATE(3431), 2, sym_line_comment, sym_block_comment, - [95014] = 4, + [95078] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, - anon_sym_RPAREN, + ACTIONS(5181), 1, + anon_sym_SEMI, STATE(3432), 2, sym_line_comment, sym_block_comment, - [95028] = 4, + [95092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - sym_identifier, + ACTIONS(3113), 1, + anon_sym_PLUS, STATE(3433), 2, sym_line_comment, sym_block_comment, - [95042] = 4, + [95106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, - sym_identifier, + ACTIONS(6927), 1, + anon_sym_EQ_GT, STATE(3434), 2, sym_line_comment, sym_block_comment, - [95056] = 4, + [95120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, + ACTIONS(6929), 1, sym_identifier, STATE(3435), 2, sym_line_comment, sym_block_comment, - [95070] = 4, + [95134] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5987), 1, - anon_sym_RBRACE, + ACTIONS(6931), 1, + sym_identifier, STATE(3436), 2, sym_line_comment, sym_block_comment, - [95084] = 4, + [95148] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, + ACTIONS(6933), 1, anon_sym_SEMI, STATE(3437), 2, sym_line_comment, sym_block_comment, - [95098] = 4, + [95162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - anon_sym_SEMI, + ACTIONS(6935), 1, + sym__raw_string_literal_end, STATE(3438), 2, sym_line_comment, sym_block_comment, - [95112] = 4, + [95176] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5575), 1, - anon_sym_RPAREN, + ACTIONS(6937), 1, + anon_sym_RBRACE, STATE(3439), 2, sym_line_comment, sym_block_comment, - [95126] = 4, + [95190] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - anon_sym_SEMI, + ACTIONS(6939), 1, + anon_sym_RBRACE, STATE(3440), 2, sym_line_comment, sym_block_comment, - [95140] = 4, + [95204] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_SEMI, + ACTIONS(6941), 1, + sym_identifier, STATE(3441), 2, sym_line_comment, sym_block_comment, - [95154] = 4, + [95218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, - anon_sym_SEMI, + ACTIONS(6943), 1, + sym_identifier, STATE(3442), 2, sym_line_comment, sym_block_comment, - [95168] = 4, + [95232] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4952), 1, + ACTIONS(6945), 1, anon_sym_COLON_COLON, STATE(3443), 2, sym_line_comment, sym_block_comment, - [95182] = 4, + [95246] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_EQ_GT, + ACTIONS(6947), 1, + sym_identifier, STATE(3444), 2, sym_line_comment, sym_block_comment, - [95196] = 4, + [95260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, - anon_sym_SEMI, + ACTIONS(6115), 1, + anon_sym_RBRACE, STATE(3445), 2, sym_line_comment, sym_block_comment, - [95210] = 4, + [95274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5814), 1, - anon_sym_RPAREN, + ACTIONS(6949), 1, + sym_identifier, STATE(3446), 2, sym_line_comment, sym_block_comment, - [95224] = 4, + [95288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, - anon_sym_SEMI, + ACTIONS(6951), 1, + anon_sym_fn, STATE(3447), 2, sym_line_comment, sym_block_comment, - [95238] = 4, + [95302] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - anon_sym_RBRACK, + ACTIONS(5183), 1, + anon_sym_SEMI, STATE(3448), 2, sym_line_comment, sym_block_comment, - [95252] = 4, + [95316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - anon_sym_RBRACK, + ACTIONS(6953), 1, + anon_sym_SEMI, STATE(3449), 2, sym_line_comment, sym_block_comment, - [95266] = 4, + [95330] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - sym_identifier, + ACTIONS(6955), 1, + anon_sym_SEMI, STATE(3450), 2, sym_line_comment, sym_block_comment, - [95280] = 4, + [95344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, + ACTIONS(6957), 1, anon_sym_SEMI, STATE(3451), 2, sym_line_comment, sym_block_comment, - [95294] = 4, + [95358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, + ACTIONS(6959), 1, anon_sym_SEMI, STATE(3452), 2, sym_line_comment, sym_block_comment, - [95308] = 4, + [95372] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, - anon_sym_RBRACK, + ACTIONS(6961), 1, + anon_sym_SEMI, STATE(3453), 2, sym_line_comment, sym_block_comment, - [95322] = 4, + [95386] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, - sym_identifier, + ACTIONS(3151), 1, + anon_sym_PLUS, STATE(3454), 2, sym_line_comment, sym_block_comment, - [95336] = 4, + [95400] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RPAREN, + ACTIONS(6963), 1, + sym_identifier, STATE(3455), 2, sym_line_comment, sym_block_comment, - [95350] = 4, + [95414] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, + ACTIONS(6965), 1, sym__raw_string_literal_end, STATE(3456), 2, sym_line_comment, sym_block_comment, - [95364] = 4, + [95428] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - ts_builtin_sym_end, + ACTIONS(3915), 1, + anon_sym_COLON_COLON, STATE(3457), 2, sym_line_comment, sym_block_comment, - [95378] = 4, - ACTIONS(3), 1, + [95442] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - aux_sym_line_comment_token2, + ACTIONS(6967), 1, + sym_identifier, STATE(3458), 2, sym_line_comment, sym_block_comment, - [95392] = 4, + [95456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - sym_self, + ACTIONS(6969), 1, + anon_sym_SEMI, STATE(3459), 2, sym_line_comment, sym_block_comment, - [95406] = 4, + [95470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_SEMI, + ACTIONS(6971), 1, + sym_identifier, STATE(3460), 2, sym_line_comment, sym_block_comment, - [95420] = 4, + [95484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, - anon_sym_SEMI, + ACTIONS(6973), 1, + sym_identifier, STATE(3461), 2, sym_line_comment, sym_block_comment, - [95434] = 4, + [95498] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_COLON_COLON, + ACTIONS(6975), 1, + sym_identifier, STATE(3462), 2, sym_line_comment, sym_block_comment, - [95448] = 4, + [95512] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_LBRACK, + ACTIONS(6977), 1, + anon_sym_SEMI, STATE(3463), 2, sym_line_comment, sym_block_comment, - [95462] = 4, + [95526] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, + ACTIONS(6979), 1, anon_sym_SEMI, STATE(3464), 2, sym_line_comment, sym_block_comment, - [95476] = 4, + [95540] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, + ACTIONS(6981), 1, anon_sym_SEMI, STATE(3465), 2, sym_line_comment, sym_block_comment, - [95490] = 4, + [95554] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - anon_sym_RBRACE, + ACTIONS(6983), 1, + anon_sym_LT, STATE(3466), 2, sym_line_comment, sym_block_comment, - [95504] = 4, + [95568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, - anon_sym_RBRACK, + ACTIONS(6985), 1, + sym_identifier, STATE(3467), 2, sym_line_comment, sym_block_comment, - [95518] = 4, + [95582] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_GT, + ACTIONS(5557), 1, + anon_sym_RPAREN, STATE(3468), 2, sym_line_comment, sym_block_comment, - [95532] = 4, + [95596] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6987), 1, - sym__raw_string_literal_end, + anon_sym_SEMI, STATE(3469), 2, sym_line_comment, sym_block_comment, - [95546] = 4, + [95610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(6989), 1, - anon_sym_LPAREN, + sym_identifier, STATE(3470), 2, sym_line_comment, sym_block_comment, - [95560] = 4, + [95624] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RPAREN, + ACTIONS(4754), 1, + anon_sym_COLON_COLON, STATE(3471), 2, sym_line_comment, sym_block_comment, - [95574] = 4, + [95638] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, - sym_identifier, + ACTIONS(4185), 1, + anon_sym_RPAREN, STATE(3472), 2, sym_line_comment, sym_block_comment, - [95588] = 4, + [95652] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - sym_identifier, + ACTIONS(6991), 1, + anon_sym_SEMI, STATE(3473), 2, sym_line_comment, sym_block_comment, - [95602] = 4, + [95666] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, - sym__raw_string_literal_end, + ACTIONS(6993), 1, + anon_sym_SEMI, STATE(3474), 2, sym_line_comment, sym_block_comment, - [95616] = 4, + [95680] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, - anon_sym_COLON_COLON, + ACTIONS(6995), 1, + anon_sym_RBRACE, STATE(3475), 2, sym_line_comment, sym_block_comment, - [95630] = 4, + [95694] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, - anon_sym_COLON, + ACTIONS(6997), 1, + anon_sym_SEMI, STATE(3476), 2, sym_line_comment, sym_block_comment, - [95644] = 4, + [95708] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 1, - anon_sym_RBRACK, + ACTIONS(6999), 1, + anon_sym_SEMI, STATE(3477), 2, sym_line_comment, sym_block_comment, - [95658] = 4, + [95722] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7001), 1, - sym__line_doc_content, + sym_identifier, STATE(3478), 2, sym_line_comment, sym_block_comment, - [95672] = 4, + [95736] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7003), 1, - anon_sym_STAR_SLASH, + anon_sym_RBRACK, STATE(3479), 2, sym_line_comment, sym_block_comment, - [95686] = 4, + [95750] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7005), 1, - anon_sym_COLON, + anon_sym_RBRACK, STATE(3480), 2, sym_line_comment, sym_block_comment, - [95700] = 4, + [95764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188074,507 +188640,507 @@ static const uint16_t ts_small_parse_table[] = { STATE(3481), 2, sym_line_comment, sym_block_comment, - [95714] = 4, + [95778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7009), 1, - anon_sym_COLON, + anon_sym_SEMI, STATE(3482), 2, sym_line_comment, sym_block_comment, - [95728] = 4, + [95792] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6354), 1, - anon_sym_RBRACE, + ACTIONS(7011), 1, + sym_identifier, STATE(3483), 2, sym_line_comment, sym_block_comment, - [95742] = 4, + [95806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_EQ_GT, + ACTIONS(7013), 1, + anon_sym_SEMI, STATE(3484), 2, sym_line_comment, sym_block_comment, - [95756] = 4, + [95820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5219), 1, - anon_sym_SEMI, + ACTIONS(7015), 1, + sym_identifier, STATE(3485), 2, sym_line_comment, sym_block_comment, - [95770] = 4, + [95834] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(750), 1, - anon_sym_RBRACK, + ACTIONS(7017), 1, + sym_raw_string_literal_content, STATE(3486), 2, sym_line_comment, sym_block_comment, - [95784] = 4, + [95848] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_EQ_GT, + ACTIONS(7019), 1, + anon_sym_RBRACK, STATE(3487), 2, sym_line_comment, sym_block_comment, - [95798] = 4, + [95862] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, + ACTIONS(7021), 1, anon_sym_SEMI, STATE(3488), 2, sym_line_comment, sym_block_comment, - [95812] = 4, + [95876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - sym_identifier, + ACTIONS(7023), 1, + anon_sym_SEMI, STATE(3489), 2, sym_line_comment, sym_block_comment, - [95826] = 4, + [95890] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - sym_raw_string_literal_content, + ACTIONS(7025), 1, + anon_sym_EQ_GT, STATE(3490), 2, sym_line_comment, sym_block_comment, - [95840] = 4, + [95904] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, - anon_sym_LPAREN, + ACTIONS(7027), 1, + sym_identifier, STATE(3491), 2, sym_line_comment, sym_block_comment, - [95854] = 4, + [95918] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, + ACTIONS(6613), 1, anon_sym_SEMI, STATE(3492), 2, sym_line_comment, sym_block_comment, - [95868] = 4, + [95932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - anon_sym_SEMI, + ACTIONS(7029), 1, + sym__line_doc_content, STATE(3493), 2, sym_line_comment, sym_block_comment, - [95882] = 4, + [95946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 1, - anon_sym_COLON_COLON, + ACTIONS(5798), 1, + anon_sym_LBRACE, STATE(3494), 2, sym_line_comment, sym_block_comment, - [95896] = 4, + [95960] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, - anon_sym_COLON_COLON, + ACTIONS(7031), 1, + sym_identifier, STATE(3495), 2, sym_line_comment, sym_block_comment, - [95910] = 4, + [95974] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4037), 1, - sym_identifier, + ACTIONS(7033), 1, + anon_sym_EQ_GT, STATE(3496), 2, sym_line_comment, sym_block_comment, - [95924] = 4, + [95988] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, - anon_sym_SEMI, + ACTIONS(7035), 1, + anon_sym_RBRACE, STATE(3497), 2, sym_line_comment, sym_block_comment, - [95938] = 4, + [96002] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - anon_sym_SEMI, + ACTIONS(6793), 1, + anon_sym_LBRACK, STATE(3498), 2, sym_line_comment, sym_block_comment, - [95952] = 4, + [96016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - anon_sym_COLON_COLON, + ACTIONS(7037), 1, + anon_sym_fn, STATE(3499), 2, sym_line_comment, sym_block_comment, - [95966] = 4, + [96030] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5261), 1, - anon_sym_SEMI, + ACTIONS(7039), 1, + anon_sym_EQ_GT, STATE(3500), 2, sym_line_comment, sym_block_comment, - [95980] = 4, + [96044] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - anon_sym_RBRACE, + ACTIONS(7041), 1, + anon_sym_SEMI, STATE(3501), 2, sym_line_comment, sym_block_comment, - [95994] = 4, + [96058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_SEMI, + ACTIONS(5878), 1, + anon_sym_RPAREN, STATE(3502), 2, sym_line_comment, sym_block_comment, - [96008] = 4, + [96072] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, - anon_sym_RBRACK, + ACTIONS(7043), 1, + anon_sym_SEMI, STATE(3503), 2, sym_line_comment, sym_block_comment, - [96022] = 4, + [96086] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, - sym_identifier, + ACTIONS(6005), 1, + anon_sym_RBRACE, STATE(3504), 2, sym_line_comment, sym_block_comment, - [96036] = 4, + [96100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, - anon_sym_COLON_COLON, + ACTIONS(7045), 1, + anon_sym_RPAREN, STATE(3505), 2, sym_line_comment, sym_block_comment, - [96050] = 4, + [96114] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_RBRACE, + ACTIONS(7047), 1, + anon_sym_COLON, STATE(3506), 2, sym_line_comment, sym_block_comment, - [96064] = 4, + [96128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, + ACTIONS(7049), 1, anon_sym_SEMI, STATE(3507), 2, sym_line_comment, sym_block_comment, - [96078] = 4, + [96142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - anon_sym_COLON_COLON, + ACTIONS(7051), 1, + anon_sym_COLON, STATE(3508), 2, sym_line_comment, sym_block_comment, - [96092] = 4, + [96156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, - anon_sym_SEMI, + ACTIONS(6011), 1, + anon_sym_RBRACE, STATE(3509), 2, sym_line_comment, sym_block_comment, - [96106] = 4, + [96170] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, - anon_sym_SEMI, + ACTIONS(7053), 1, + sym_raw_string_literal_content, STATE(3510), 2, sym_line_comment, sym_block_comment, - [96120] = 4, + [96184] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4994), 1, - anon_sym_COLON_COLON, + ACTIONS(7055), 1, + sym__raw_string_literal_end, STATE(3511), 2, sym_line_comment, sym_block_comment, - [96134] = 4, + [96198] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, - anon_sym_SEMI, + ACTIONS(7057), 1, + sym_identifier, STATE(3512), 2, sym_line_comment, sym_block_comment, - [96148] = 4, + [96212] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - anon_sym_COLON_COLON, + ACTIONS(7059), 1, + sym_identifier, STATE(3513), 2, sym_line_comment, sym_block_comment, - [96162] = 4, + [96226] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - anon_sym_fn, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, STATE(3514), 2, sym_line_comment, sym_block_comment, - [96176] = 4, + [96240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, - anon_sym_SEMI, + ACTIONS(5876), 1, + anon_sym_COLON_COLON, STATE(3515), 2, sym_line_comment, sym_block_comment, - [96190] = 4, + [96254] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, - anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_RPAREN, STATE(3516), 2, sym_line_comment, sym_block_comment, - [96204] = 4, + [96268] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_COLON_COLON, + ACTIONS(7061), 1, + sym_identifier, STATE(3517), 2, sym_line_comment, sym_block_comment, - [96218] = 4, + [96282] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, - sym__line_doc_content, + ACTIONS(5882), 1, + anon_sym_RPAREN, STATE(3518), 2, sym_line_comment, sym_block_comment, - [96232] = 4, + [96296] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6482), 1, + ACTIONS(7063), 1, anon_sym_COLON_COLON, STATE(3519), 2, sym_line_comment, sym_block_comment, - [96246] = 4, + [96310] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, - anon_sym_fn, + ACTIONS(7065), 1, + anon_sym_COLON, STATE(3520), 2, sym_line_comment, sym_block_comment, - [96260] = 4, + [96324] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - anon_sym_SEMI, + ACTIONS(7067), 1, + anon_sym_COLON, STATE(3521), 2, sym_line_comment, sym_block_comment, - [96274] = 4, + [96338] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, + ACTIONS(7069), 1, anon_sym_SEMI, STATE(3522), 2, sym_line_comment, sym_block_comment, - [96288] = 4, + [96352] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - sym_identifier, + ACTIONS(6713), 1, + anon_sym_SEMI, STATE(3523), 2, sym_line_comment, sym_block_comment, - [96302] = 4, + [96366] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, - anon_sym_SEMI, + ACTIONS(6015), 1, + anon_sym_RBRACE, STATE(3524), 2, sym_line_comment, sym_block_comment, - [96316] = 4, + [96380] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - sym_raw_string_literal_content, + ACTIONS(7071), 1, + anon_sym_COLON_COLON, STATE(3525), 2, sym_line_comment, sym_block_comment, - [96330] = 4, + [96394] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, - sym__raw_string_literal_end, + ACTIONS(7073), 1, + anon_sym_COLON, STATE(3526), 2, sym_line_comment, sym_block_comment, - [96344] = 4, + [96408] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, - anon_sym_SEMI, + ACTIONS(7075), 1, + anon_sym_COLON_COLON, STATE(3527), 2, sym_line_comment, sym_block_comment, - [96358] = 4, + [96422] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - anon_sym_RPAREN, + ACTIONS(7077), 1, + anon_sym_SEMI, STATE(3528), 2, sym_line_comment, sym_block_comment, - [96372] = 4, + [96436] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_COLON_COLON, + ACTIONS(3099), 1, + anon_sym_PLUS, STATE(3529), 2, sym_line_comment, sym_block_comment, - [96386] = 4, + [96450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_RBRACE, + ACTIONS(4970), 1, + anon_sym_COLON_COLON, STATE(3530), 2, sym_line_comment, sym_block_comment, - [96400] = 4, + [96464] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7079), 1, - anon_sym_SEMI, + anon_sym_RBRACK, STATE(3531), 2, sym_line_comment, sym_block_comment, - [96414] = 4, + [96478] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -188584,4213 +189150,4407 @@ static const uint16_t ts_small_parse_table[] = { STATE(3532), 2, sym_line_comment, sym_block_comment, - [96428] = 4, + [96492] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7083), 1, - anon_sym_SEMI, + anon_sym_fn, STATE(3533), 2, sym_line_comment, sym_block_comment, - [96442] = 4, + [96506] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7085), 1, - anon_sym_RBRACE, + anon_sym_SEMI, STATE(3534), 2, sym_line_comment, sym_block_comment, - [96456] = 4, + [96520] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7087), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, STATE(3535), 2, sym_line_comment, sym_block_comment, - [96470] = 4, + [96534] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - anon_sym_EQ_GT, + ACTIONS(6689), 1, + anon_sym_SEMI, STATE(3536), 2, sym_line_comment, sym_block_comment, - [96484] = 4, + [96548] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, - anon_sym_COLON_COLON, + ACTIONS(7089), 1, + sym_identifier, STATE(3537), 2, sym_line_comment, sym_block_comment, - [96498] = 4, + [96562] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7091), 1, - anon_sym_COLON_COLON, + sym_identifier, STATE(3538), 2, sym_line_comment, sym_block_comment, - [96512] = 4, + [96576] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, - anon_sym_LBRACE, + ACTIONS(5784), 1, + anon_sym_RBRACK, STATE(3539), 2, sym_line_comment, sym_block_comment, - [96526] = 4, + [96590] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - anon_sym_STAR_SLASH, + ACTIONS(7093), 1, + anon_sym_RBRACE, STATE(3540), 2, sym_line_comment, sym_block_comment, - [96540] = 4, + [96604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - anon_sym_RBRACK, + ACTIONS(7095), 1, + anon_sym_SEMI, STATE(3541), 2, sym_line_comment, sym_block_comment, - [96554] = 4, + [96618] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, + ACTIONS(7097), 1, anon_sym_SEMI, STATE(3542), 2, sym_line_comment, sym_block_comment, - [96568] = 4, + [96632] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - sym_raw_string_literal_content, + ACTIONS(7099), 1, + anon_sym_COLON, STATE(3543), 2, sym_line_comment, sym_block_comment, - [96582] = 4, + [96646] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3527), 1, - anon_sym_COLON_COLON, + ACTIONS(7101), 1, + sym_raw_string_literal_content, STATE(3544), 2, sym_line_comment, sym_block_comment, - [96596] = 4, + [96660] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, + ACTIONS(7103), 1, + anon_sym_COLON, STATE(3545), 2, sym_line_comment, sym_block_comment, - [96610] = 4, + [96674] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_COLON_COLON, + ACTIONS(5620), 1, + anon_sym_RPAREN, STATE(3546), 2, sym_line_comment, sym_block_comment, - [96624] = 4, + [96688] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7105), 1, - sym_identifier, + anon_sym_COLON, STATE(3547), 2, sym_line_comment, sym_block_comment, - [96638] = 4, + [96702] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7107), 1, - anon_sym_LBRACE, + anon_sym_COLON_COLON, STATE(3548), 2, sym_line_comment, sym_block_comment, - [96652] = 4, + [96716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7109), 1, - sym_raw_string_literal_content, + anon_sym_fn, STATE(3549), 2, sym_line_comment, sym_block_comment, - [96666] = 4, + [96730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, + ACTIONS(7111), 1, + anon_sym_SEMI, STATE(3550), 2, sym_line_comment, sym_block_comment, - [96680] = 4, + [96744] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7113), 1, anon_sym_COLON_COLON, STATE(3551), 2, sym_line_comment, sym_block_comment, - [96694] = 4, + [96758] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_LBRACE, + ACTIONS(7115), 1, + anon_sym_RPAREN, STATE(3552), 2, sym_line_comment, sym_block_comment, - [96708] = 4, + [96772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5809), 1, + ACTIONS(7117), 1, anon_sym_COLON_COLON, STATE(3553), 2, sym_line_comment, sym_block_comment, - [96722] = 4, + [96786] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - anon_sym_COLON_COLON, + ACTIONS(923), 1, + anon_sym_RBRACK, STATE(3554), 2, sym_line_comment, sym_block_comment, - [96736] = 4, + [96800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, - anon_sym_LBRACE, + ACTIONS(7119), 1, + anon_sym_SEMI, STATE(3555), 2, sym_line_comment, sym_block_comment, - [96750] = 4, + [96814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - anon_sym_COLON_COLON, + ACTIONS(7121), 1, + anon_sym_LPAREN, STATE(3556), 2, sym_line_comment, sym_block_comment, - [96764] = 4, + [96828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5231), 1, + ACTIONS(7123), 1, anon_sym_COLON_COLON, STATE(3557), 2, sym_line_comment, sym_block_comment, - [96778] = 4, + [96842] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, + ACTIONS(7125), 1, + anon_sym_LBRACE, STATE(3558), 2, sym_line_comment, sym_block_comment, - [96792] = 4, + [96856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4191), 1, - anon_sym_COLON_COLON, + ACTIONS(7127), 1, + anon_sym_EQ, STATE(3559), 2, sym_line_comment, sym_block_comment, - [96806] = 4, + [96870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - anon_sym_COLON_COLON, + ACTIONS(6531), 1, + anon_sym_RBRACE, STATE(3560), 2, sym_line_comment, sym_block_comment, - [96820] = 4, + [96884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_RPAREN, + ACTIONS(7129), 1, + anon_sym_RBRACK, STATE(3561), 2, sym_line_comment, sym_block_comment, - [96834] = 4, + [96898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - sym__line_doc_content, + ACTIONS(5700), 1, + anon_sym_RPAREN, STATE(3562), 2, sym_line_comment, sym_block_comment, - [96848] = 4, + [96912] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, + ACTIONS(7131), 1, sym_raw_string_literal_content, STATE(3563), 2, sym_line_comment, sym_block_comment, - [96862] = 4, + [96926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_fn, + ACTIONS(3609), 1, + anon_sym_COLON_COLON, STATE(3564), 2, sym_line_comment, sym_block_comment, - [96876] = 4, + [96940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - anon_sym_COLON, + ACTIONS(7133), 1, + anon_sym_RPAREN, STATE(3565), 2, sym_line_comment, sym_block_comment, - [96890] = 4, + [96954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - anon_sym_LBRACK, + ACTIONS(7135), 1, + anon_sym_COLON_COLON, STATE(3566), 2, sym_line_comment, sym_block_comment, - [96904] = 4, + [96968] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - anon_sym_SEMI, + ACTIONS(7137), 1, + anon_sym_COLON, STATE(3567), 2, sym_line_comment, sym_block_comment, - [96918] = 4, + [96982] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_LBRACK, + ACTIONS(7139), 1, + anon_sym_LBRACE, STATE(3568), 2, sym_line_comment, sym_block_comment, - [96932] = 4, + [96996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_COLON, + ACTIONS(7141), 1, + sym_raw_string_literal_content, STATE(3569), 2, sym_line_comment, sym_block_comment, - [96946] = 4, + [97010] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, - anon_sym_COLON, + ACTIONS(5231), 1, + anon_sym_COLON_COLON, STATE(3570), 2, sym_line_comment, sym_block_comment, - [96960] = 4, + [97024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, - anon_sym_SEMI, + ACTIONS(7143), 1, + anon_sym_COLON_COLON, STATE(3571), 2, sym_line_comment, sym_block_comment, - [96974] = 4, + [97038] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_RPAREN, + ACTIONS(5892), 1, + anon_sym_LBRACE, STATE(3572), 2, sym_line_comment, sym_block_comment, - [96988] = 4, + [97052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - sym_identifier, + ACTIONS(5919), 1, + anon_sym_COLON_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [97002] = 4, + [97066] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, - anon_sym_LT, + ACTIONS(7145), 1, + anon_sym_COLON_COLON, STATE(3574), 2, sym_line_comment, sym_block_comment, - [97016] = 4, + [97080] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_COLON, + ACTIONS(5911), 1, + anon_sym_LBRACE, STATE(3575), 2, sym_line_comment, sym_block_comment, - [97030] = 4, + [97094] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(7147), 1, - anon_sym_SEMI, + anon_sym_COLON_COLON, STATE(3576), 2, sym_line_comment, sym_block_comment, - [97044] = 4, + [97108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_COLON_COLON, STATE(3577), 2, sym_line_comment, sym_block_comment, - [97058] = 4, + [97122] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - sym_identifier, + ACTIONS(5275), 1, + anon_sym_COLON_COLON, STATE(3578), 2, sym_line_comment, sym_block_comment, - [97072] = 4, + [97136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - anon_sym_SEMI, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, STATE(3579), 2, sym_line_comment, sym_block_comment, - [97086] = 4, + [97150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, - anon_sym_SEMI, + ACTIONS(7149), 1, + anon_sym_COLON_COLON, STATE(3580), 2, sym_line_comment, sym_block_comment, - [97100] = 4, + [97164] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_RBRACK, + ACTIONS(7151), 1, + anon_sym_SEMI, STATE(3581), 2, sym_line_comment, sym_block_comment, - [97114] = 4, + [97178] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, - sym_identifier, + ACTIONS(7153), 1, + anon_sym_RBRACK, STATE(3582), 2, sym_line_comment, sym_block_comment, - [97128] = 4, + [97192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, + ACTIONS(7155), 1, anon_sym_SEMI, STATE(3583), 2, sym_line_comment, sym_block_comment, - [97142] = 4, + [97206] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6227), 1, - anon_sym_RBRACE, + ACTIONS(7157), 1, + anon_sym_SEMI, STATE(3584), 2, sym_line_comment, sym_block_comment, - [97156] = 4, + [97220] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, + ACTIONS(7159), 1, anon_sym_COLON, STATE(3585), 2, sym_line_comment, sym_block_comment, - [97170] = 4, + [97234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - sym_identifier, + ACTIONS(7161), 1, + anon_sym_LBRACK, STATE(3586), 2, sym_line_comment, sym_block_comment, - [97184] = 4, + [97248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6507), 1, - anon_sym_RBRACE, + ACTIONS(893), 1, + anon_sym_RBRACK, STATE(3587), 2, sym_line_comment, sym_block_comment, - [97198] = 4, + [97262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_RPAREN, + ACTIONS(7163), 1, + anon_sym_LBRACK, STATE(3588), 2, sym_line_comment, sym_block_comment, - [97212] = 4, + [97276] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, + ACTIONS(7165), 1, anon_sym_COLON, STATE(3589), 2, sym_line_comment, sym_block_comment, - [97226] = 4, + [97290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_SEMI, + ACTIONS(7167), 1, + anon_sym_COLON, STATE(3590), 2, sym_line_comment, sym_block_comment, - [97240] = 4, + [97304] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, - anon_sym_SEMI, + ACTIONS(5263), 1, + anon_sym_COLON_COLON, STATE(3591), 2, sym_line_comment, sym_block_comment, - [97254] = 4, + [97318] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - anon_sym_SEMI, + ACTIONS(6215), 1, + anon_sym_RBRACE, STATE(3592), 2, sym_line_comment, sym_block_comment, - [97268] = 4, + [97332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - sym__raw_string_literal_end, + ACTIONS(7169), 1, + anon_sym_STAR_SLASH, STATE(3593), 2, sym_line_comment, sym_block_comment, - [97282] = 4, + [97346] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, + ACTIONS(5704), 1, + anon_sym_RBRACK, STATE(3594), 2, sym_line_comment, sym_block_comment, - [97296] = 4, + [97360] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, + ACTIONS(7171), 1, anon_sym_COLON, STATE(3595), 2, sym_line_comment, sym_block_comment, - [97310] = 4, + [97374] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - anon_sym_EQ_GT, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, STATE(3596), 2, sym_line_comment, sym_block_comment, - [97324] = 4, + [97388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, - sym_identifier, + ACTIONS(7173), 1, + anon_sym_SEMI, STATE(3597), 2, sym_line_comment, sym_block_comment, - [97338] = 4, + [97402] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, - anon_sym_COLON, + ACTIONS(7175), 1, + anon_sym_LPAREN, STATE(3598), 2, sym_line_comment, sym_block_comment, - [97352] = 4, + [97416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, + ACTIONS(7177), 1, + sym_identifier, STATE(3599), 2, sym_line_comment, sym_block_comment, - [97366] = 4, + [97430] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, + ACTIONS(7179), 1, anon_sym_COLON, STATE(3600), 2, sym_line_comment, sym_block_comment, - [97380] = 4, + [97444] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - anon_sym_LBRACK, + ACTIONS(5273), 1, + anon_sym_SEMI, STATE(3601), 2, sym_line_comment, sym_block_comment, - [97394] = 4, + [97458] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_EQ, + ACTIONS(7181), 1, + anon_sym_COLON, STATE(3602), 2, sym_line_comment, sym_block_comment, - [97408] = 4, + [97472] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - sym_identifier, + ACTIONS(7183), 1, + sym__line_doc_content, STATE(3603), 2, sym_line_comment, sym_block_comment, - [97422] = 4, + [97486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, - sym_identifier, + ACTIONS(7185), 1, + anon_sym_SEMI, STATE(3604), 2, sym_line_comment, sym_block_comment, - [97436] = 4, + [97500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 1, - anon_sym_EQ, + ACTIONS(7187), 1, + anon_sym_COLON, STATE(3605), 2, sym_line_comment, sym_block_comment, - [97450] = 4, + [97514] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7197), 1, - anon_sym_COLON, + ACTIONS(7189), 1, + anon_sym_SEMI, STATE(3606), 2, sym_line_comment, sym_block_comment, - [97464] = 4, + [97528] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4529), 1, - anon_sym_fn, + ACTIONS(7191), 1, + anon_sym_COLON, STATE(3607), 2, sym_line_comment, sym_block_comment, - [97478] = 4, + [97542] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, - anon_sym_COLON, + ACTIONS(7193), 1, + sym_identifier, STATE(3608), 2, sym_line_comment, sym_block_comment, - [97492] = 4, + [97556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7201), 1, - anon_sym_LBRACK, + ACTIONS(7195), 1, + sym_identifier, STATE(3609), 2, sym_line_comment, sym_block_comment, - [97506] = 4, + [97570] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7203), 1, - anon_sym_LBRACK, + ACTIONS(7197), 1, + ts_builtin_sym_end, STATE(3610), 2, sym_line_comment, sym_block_comment, - [97520] = 4, + [97584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7205), 1, - anon_sym_COLON, + ACTIONS(6711), 1, + anon_sym_SEMI, STATE(3611), 2, sym_line_comment, sym_block_comment, - [97534] = 4, + [97598] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7207), 1, + ACTIONS(7199), 1, sym_identifier, STATE(3612), 2, sym_line_comment, sym_block_comment, - [97548] = 4, + [97612] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7209), 1, - anon_sym_RPAREN, + ACTIONS(7201), 1, + anon_sym_COLON, STATE(3613), 2, sym_line_comment, sym_block_comment, - [97562] = 4, + [97626] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7211), 1, - anon_sym_COLON, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, STATE(3614), 2, sym_line_comment, sym_block_comment, - [97576] = 4, + [97640] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7213), 1, - anon_sym_COLON, + ACTIONS(7203), 1, + sym__raw_string_literal_end, STATE(3615), 2, sym_line_comment, sym_block_comment, - [97590] = 4, + [97654] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7215), 1, - anon_sym_EQ_GT, + ACTIONS(7205), 1, + sym__raw_string_literal_end, STATE(3616), 2, sym_line_comment, sym_block_comment, - [97604] = 4, + [97668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7217), 1, - sym_identifier, + ACTIONS(7207), 1, + anon_sym_SEMI, STATE(3617), 2, sym_line_comment, sym_block_comment, - [97618] = 4, + [97682] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7219), 1, - anon_sym_COLON, + ACTIONS(7209), 1, + anon_sym_SEMI, STATE(3618), 2, sym_line_comment, sym_block_comment, - [97632] = 4, + [97696] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7221), 1, - anon_sym_COLON, + ACTIONS(951), 1, + anon_sym_EQ_GT, STATE(3619), 2, sym_line_comment, sym_block_comment, - [97646] = 4, + [97710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 1, - anon_sym_COLON, + ACTIONS(7211), 1, + anon_sym_EQ, STATE(3620), 2, sym_line_comment, sym_block_comment, - [97660] = 4, + [97724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - anon_sym_SEMI, + ACTIONS(7213), 1, + anon_sym_RBRACK, STATE(3621), 2, sym_line_comment, sym_block_comment, - [97674] = 4, + [97738] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_fn, + ACTIONS(7215), 1, + anon_sym_SEMI, STATE(3622), 2, sym_line_comment, sym_block_comment, - [97688] = 4, + [97752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7225), 1, - anon_sym_SEMI, + ACTIONS(4571), 1, + anon_sym_fn, STATE(3623), 2, sym_line_comment, sym_block_comment, - [97702] = 4, + [97766] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, - anon_sym_RBRACK, + ACTIONS(7217), 1, + sym_identifier, STATE(3624), 2, sym_line_comment, sym_block_comment, - [97716] = 4, + [97780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7227), 1, - sym_identifier, + ACTIONS(7219), 1, + anon_sym_COLON, STATE(3625), 2, sym_line_comment, sym_block_comment, - [97730] = 4, + [97794] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7229), 1, - sym_identifier, + ACTIONS(7221), 1, + anon_sym_COLON, STATE(3626), 2, sym_line_comment, sym_block_comment, - [97744] = 4, + [97808] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, - anon_sym_RPAREN, + ACTIONS(7223), 1, + anon_sym_LBRACK, STATE(3627), 2, sym_line_comment, sym_block_comment, - [97758] = 4, + [97822] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7233), 1, - sym_identifier, + ACTIONS(7225), 1, + anon_sym_LBRACK, STATE(3628), 2, sym_line_comment, sym_block_comment, - [97772] = 4, + [97836] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7235), 1, - anon_sym_fn, + ACTIONS(7227), 1, + anon_sym_COLON, STATE(3629), 2, sym_line_comment, sym_block_comment, - [97786] = 4, + [97850] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7237), 1, - sym_raw_string_literal_content, + ACTIONS(7229), 1, + sym_self, STATE(3630), 2, sym_line_comment, sym_block_comment, - [97800] = 4, + [97864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7239), 1, + ACTIONS(7231), 1, sym_identifier, STATE(3631), 2, sym_line_comment, sym_block_comment, - [97814] = 4, + [97878] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, - sym_identifier, + ACTIONS(7233), 1, + anon_sym_COLON, STATE(3632), 2, sym_line_comment, sym_block_comment, - [97828] = 4, + [97892] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7243), 1, - sym_identifier, + ACTIONS(7235), 1, + anon_sym_COLON, STATE(3633), 2, sym_line_comment, sym_block_comment, - [97842] = 4, + [97906] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7245), 1, - sym_identifier, + ACTIONS(7237), 1, + anon_sym_SEMI, STATE(3634), 2, sym_line_comment, sym_block_comment, - [97856] = 4, + [97920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, + ACTIONS(5834), 1, + anon_sym_RPAREN, STATE(3635), 2, sym_line_comment, sym_block_comment, - [97870] = 4, + [97934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7247), 1, - sym_identifier, + ACTIONS(7239), 1, + anon_sym_COLON, STATE(3636), 2, sym_line_comment, sym_block_comment, - [97884] = 4, + [97948] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, + ACTIONS(7241), 1, + anon_sym_COLON, STATE(3637), 2, sym_line_comment, sym_block_comment, - [97898] = 4, + [97962] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7249), 1, - sym__line_doc_content, + ACTIONS(7243), 1, + anon_sym_COLON, STATE(3638), 2, sym_line_comment, sym_block_comment, - [97912] = 4, + [97976] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6213), 1, - anon_sym_RBRACE, + ACTIONS(7245), 1, + sym_identifier, STATE(3639), 2, sym_line_comment, sym_block_comment, - [97926] = 4, + [97990] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7251), 1, - anon_sym_SEMI, + ACTIONS(4547), 1, + anon_sym_fn, STATE(3640), 2, sym_line_comment, sym_block_comment, - [97940] = 4, + [98004] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7253), 1, + ACTIONS(3881), 1, anon_sym_COLON_COLON, STATE(3641), 2, sym_line_comment, sym_block_comment, - [97954] = 1, + [98018] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6054), 1, + anon_sym_RBRACE, + STATE(3642), 2, + sym_line_comment, + sym_block_comment, + [98032] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7247), 1, + sym_identifier, + STATE(3643), 2, + sym_line_comment, + sym_block_comment, + [98046] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6503), 1, + anon_sym_RBRACE, + STATE(3644), 2, + sym_line_comment, + sym_block_comment, + [98060] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7249), 1, + anon_sym_SEMI, + STATE(3645), 2, + sym_line_comment, + sym_block_comment, + [98074] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7251), 1, + sym_identifier, + STATE(3646), 2, + sym_line_comment, + sym_block_comment, + [98088] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7253), 1, + anon_sym_fn, + STATE(3647), 2, + sym_line_comment, + sym_block_comment, + [98102] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7255), 1, - ts_builtin_sym_end, - [97958] = 1, + anon_sym_SEMI, + STATE(3648), 2, + sym_line_comment, + sym_block_comment, + [98116] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7257), 1, - ts_builtin_sym_end, - [97962] = 1, + sym_identifier, + STATE(3649), 2, + sym_line_comment, + sym_block_comment, + [98130] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6461), 1, + anon_sym_COLON_COLON, + STATE(3650), 2, + sym_line_comment, + sym_block_comment, + [98144] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(903), 1, + anon_sym_RBRACK, + STATE(3651), 2, + sym_line_comment, + sym_block_comment, + [98158] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7259), 1, - ts_builtin_sym_end, - [97966] = 1, + sym_identifier, + STATE(3652), 2, + sym_line_comment, + sym_block_comment, + [98172] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7261), 1, - ts_builtin_sym_end, - [97970] = 1, + anon_sym_LBRACK, + STATE(3653), 2, + sym_line_comment, + sym_block_comment, + [98186] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7263), 1, - ts_builtin_sym_end, - [97974] = 1, + sym_identifier, + STATE(3654), 2, + sym_line_comment, + sym_block_comment, + [98200] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7265), 1, - ts_builtin_sym_end, - [97978] = 1, + sym_raw_string_literal_content, + STATE(3655), 2, + sym_line_comment, + sym_block_comment, + [98214] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(7267), 1, + sym_identifier, + STATE(3656), 2, + sym_line_comment, + sym_block_comment, + [98228] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7269), 1, + anon_sym_SEMI, + STATE(3657), 2, + sym_line_comment, + sym_block_comment, + [98242] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7271), 1, + sym_identifier, + STATE(3658), 2, + sym_line_comment, + sym_block_comment, + [98256] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7273), 1, + anon_sym_fn, + STATE(3659), 2, + sym_line_comment, + sym_block_comment, + [98270] = 1, + ACTIONS(7275), 1, + ts_builtin_sym_end, + [98274] = 1, + ACTIONS(7277), 1, + ts_builtin_sym_end, + [98278] = 1, + ACTIONS(7279), 1, + ts_builtin_sym_end, + [98282] = 1, + ACTIONS(7281), 1, + ts_builtin_sym_end, + [98286] = 1, + ACTIONS(7283), 1, + ts_builtin_sym_end, + [98290] = 1, + ACTIONS(7285), 1, + ts_builtin_sym_end, + [98294] = 1, + ACTIONS(7287), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1014)] = 0, - [SMALL_STATE(1015)] = 75, - [SMALL_STATE(1016)] = 146, - [SMALL_STATE(1017)] = 216, - [SMALL_STATE(1018)] = 316, - [SMALL_STATE(1019)] = 416, - [SMALL_STATE(1020)] = 495, - [SMALL_STATE(1021)] = 572, - [SMALL_STATE(1022)] = 636, - [SMALL_STATE(1023)] = 710, - [SMALL_STATE(1024)] = 774, - [SMALL_STATE(1025)] = 838, - [SMALL_STATE(1026)] = 902, - [SMALL_STATE(1027)] = 966, - [SMALL_STATE(1028)] = 1030, - [SMALL_STATE(1029)] = 1104, - [SMALL_STATE(1030)] = 1168, - [SMALL_STATE(1031)] = 1242, - [SMALL_STATE(1032)] = 1306, - [SMALL_STATE(1033)] = 1370, - [SMALL_STATE(1034)] = 1433, - [SMALL_STATE(1035)] = 1504, - [SMALL_STATE(1036)] = 1567, - [SMALL_STATE(1037)] = 1638, - [SMALL_STATE(1038)] = 1701, - [SMALL_STATE(1039)] = 1768, - [SMALL_STATE(1040)] = 1831, - [SMALL_STATE(1041)] = 1902, - [SMALL_STATE(1042)] = 1969, - [SMALL_STATE(1043)] = 2036, - [SMALL_STATE(1044)] = 2107, - [SMALL_STATE(1045)] = 2170, - [SMALL_STATE(1046)] = 2237, - [SMALL_STATE(1047)] = 2304, - [SMALL_STATE(1048)] = 2410, - [SMALL_STATE(1049)] = 2516, - [SMALL_STATE(1050)] = 2578, - [SMALL_STATE(1051)] = 2640, - [SMALL_STATE(1052)] = 2746, - [SMALL_STATE(1053)] = 2846, - [SMALL_STATE(1054)] = 2952, - [SMALL_STATE(1055)] = 3014, - [SMALL_STATE(1056)] = 3120, - [SMALL_STATE(1057)] = 3220, - [SMALL_STATE(1058)] = 3290, - [SMALL_STATE(1059)] = 3396, - [SMALL_STATE(1060)] = 3464, - [SMALL_STATE(1061)] = 3526, - [SMALL_STATE(1062)] = 3592, - [SMALL_STATE(1063)] = 3667, - [SMALL_STATE(1064)] = 3728, - [SMALL_STATE(1065)] = 3791, - [SMALL_STATE(1066)] = 3852, - [SMALL_STATE(1067)] = 3913, - [SMALL_STATE(1068)] = 3974, - [SMALL_STATE(1069)] = 4035, - [SMALL_STATE(1070)] = 4096, - [SMALL_STATE(1071)] = 4159, - [SMALL_STATE(1072)] = 4222, - [SMALL_STATE(1073)] = 4283, - [SMALL_STATE(1074)] = 4346, - [SMALL_STATE(1075)] = 4409, - [SMALL_STATE(1076)] = 4470, - [SMALL_STATE(1077)] = 4531, - [SMALL_STATE(1078)] = 4592, - [SMALL_STATE(1079)] = 4655, - [SMALL_STATE(1080)] = 4716, - [SMALL_STATE(1081)] = 4777, - [SMALL_STATE(1082)] = 4840, - [SMALL_STATE(1083)] = 4903, - [SMALL_STATE(1084)] = 4966, - [SMALL_STATE(1085)] = 5027, - [SMALL_STATE(1086)] = 5088, - [SMALL_STATE(1087)] = 5181, - [SMALL_STATE(1088)] = 5242, - [SMALL_STATE(1089)] = 5335, - [SMALL_STATE(1090)] = 5396, - [SMALL_STATE(1091)] = 5457, - [SMALL_STATE(1092)] = 5518, - [SMALL_STATE(1093)] = 5581, - [SMALL_STATE(1094)] = 5644, - [SMALL_STATE(1095)] = 5707, - [SMALL_STATE(1096)] = 5770, - [SMALL_STATE(1097)] = 5833, - [SMALL_STATE(1098)] = 5894, - [SMALL_STATE(1099)] = 5959, - [SMALL_STATE(1100)] = 6020, - [SMALL_STATE(1101)] = 6081, - [SMALL_STATE(1102)] = 6142, - [SMALL_STATE(1103)] = 6203, - [SMALL_STATE(1104)] = 6264, - [SMALL_STATE(1105)] = 6325, - [SMALL_STATE(1106)] = 6386, - [SMALL_STATE(1107)] = 6447, - [SMALL_STATE(1108)] = 6508, - [SMALL_STATE(1109)] = 6569, - [SMALL_STATE(1110)] = 6630, - [SMALL_STATE(1111)] = 6691, - [SMALL_STATE(1112)] = 6752, - [SMALL_STATE(1113)] = 6813, - [SMALL_STATE(1114)] = 6874, - [SMALL_STATE(1115)] = 6935, - [SMALL_STATE(1116)] = 6996, - [SMALL_STATE(1117)] = 7057, - [SMALL_STATE(1118)] = 7120, - [SMALL_STATE(1119)] = 7183, - [SMALL_STATE(1120)] = 7246, - [SMALL_STATE(1121)] = 7307, - [SMALL_STATE(1122)] = 7368, - [SMALL_STATE(1123)] = 7429, - [SMALL_STATE(1124)] = 7490, - [SMALL_STATE(1125)] = 7551, - [SMALL_STATE(1126)] = 7612, - [SMALL_STATE(1127)] = 7673, - [SMALL_STATE(1128)] = 7734, - [SMALL_STATE(1129)] = 7795, - [SMALL_STATE(1130)] = 7856, - [SMALL_STATE(1131)] = 7917, - [SMALL_STATE(1132)] = 7978, - [SMALL_STATE(1133)] = 8039, - [SMALL_STATE(1134)] = 8100, - [SMALL_STATE(1135)] = 8161, - [SMALL_STATE(1136)] = 8222, - [SMALL_STATE(1137)] = 8283, - [SMALL_STATE(1138)] = 8344, - [SMALL_STATE(1139)] = 8405, - [SMALL_STATE(1140)] = 8466, - [SMALL_STATE(1141)] = 8527, - [SMALL_STATE(1142)] = 8588, - [SMALL_STATE(1143)] = 8649, - [SMALL_STATE(1144)] = 8710, - [SMALL_STATE(1145)] = 8771, - [SMALL_STATE(1146)] = 8832, - [SMALL_STATE(1147)] = 8893, - [SMALL_STATE(1148)] = 8954, - [SMALL_STATE(1149)] = 9015, - [SMALL_STATE(1150)] = 9076, - [SMALL_STATE(1151)] = 9137, - [SMALL_STATE(1152)] = 9198, - [SMALL_STATE(1153)] = 9259, - [SMALL_STATE(1154)] = 9320, - [SMALL_STATE(1155)] = 9381, - [SMALL_STATE(1156)] = 9442, - [SMALL_STATE(1157)] = 9503, - [SMALL_STATE(1158)] = 9564, - [SMALL_STATE(1159)] = 9627, - [SMALL_STATE(1160)] = 9690, - [SMALL_STATE(1161)] = 9751, - [SMALL_STATE(1162)] = 9812, - [SMALL_STATE(1163)] = 9873, - [SMALL_STATE(1164)] = 9934, - [SMALL_STATE(1165)] = 9995, - [SMALL_STATE(1166)] = 10056, - [SMALL_STATE(1167)] = 10117, - [SMALL_STATE(1168)] = 10178, - [SMALL_STATE(1169)] = 10239, - [SMALL_STATE(1170)] = 10300, - [SMALL_STATE(1171)] = 10361, - [SMALL_STATE(1172)] = 10422, - [SMALL_STATE(1173)] = 10483, - [SMALL_STATE(1174)] = 10544, - [SMALL_STATE(1175)] = 10605, - [SMALL_STATE(1176)] = 10666, - [SMALL_STATE(1177)] = 10727, - [SMALL_STATE(1178)] = 10788, - [SMALL_STATE(1179)] = 10849, - [SMALL_STATE(1180)] = 10910, - [SMALL_STATE(1181)] = 10971, - [SMALL_STATE(1182)] = 11032, - [SMALL_STATE(1183)] = 11093, - [SMALL_STATE(1184)] = 11154, - [SMALL_STATE(1185)] = 11215, - [SMALL_STATE(1186)] = 11276, - [SMALL_STATE(1187)] = 11337, - [SMALL_STATE(1188)] = 11398, - [SMALL_STATE(1189)] = 11459, - [SMALL_STATE(1190)] = 11520, - [SMALL_STATE(1191)] = 11581, - [SMALL_STATE(1192)] = 11642, - [SMALL_STATE(1193)] = 11703, - [SMALL_STATE(1194)] = 11764, - [SMALL_STATE(1195)] = 11825, - [SMALL_STATE(1196)] = 11886, - [SMALL_STATE(1197)] = 11947, - [SMALL_STATE(1198)] = 12008, - [SMALL_STATE(1199)] = 12069, - [SMALL_STATE(1200)] = 12130, - [SMALL_STATE(1201)] = 12191, - [SMALL_STATE(1202)] = 12252, - [SMALL_STATE(1203)] = 12313, - [SMALL_STATE(1204)] = 12374, - [SMALL_STATE(1205)] = 12435, - [SMALL_STATE(1206)] = 12496, - [SMALL_STATE(1207)] = 12557, - [SMALL_STATE(1208)] = 12618, - [SMALL_STATE(1209)] = 12679, - [SMALL_STATE(1210)] = 12740, - [SMALL_STATE(1211)] = 12801, - [SMALL_STATE(1212)] = 12862, - [SMALL_STATE(1213)] = 12923, - [SMALL_STATE(1214)] = 12984, - [SMALL_STATE(1215)] = 13045, - [SMALL_STATE(1216)] = 13106, - [SMALL_STATE(1217)] = 13167, - [SMALL_STATE(1218)] = 13228, - [SMALL_STATE(1219)] = 13289, - [SMALL_STATE(1220)] = 13350, - [SMALL_STATE(1221)] = 13411, - [SMALL_STATE(1222)] = 13472, - [SMALL_STATE(1223)] = 13533, - [SMALL_STATE(1224)] = 13594, - [SMALL_STATE(1225)] = 13655, - [SMALL_STATE(1226)] = 13716, - [SMALL_STATE(1227)] = 13777, - [SMALL_STATE(1228)] = 13838, - [SMALL_STATE(1229)] = 13899, - [SMALL_STATE(1230)] = 13960, - [SMALL_STATE(1231)] = 14021, - [SMALL_STATE(1232)] = 14082, - [SMALL_STATE(1233)] = 14143, - [SMALL_STATE(1234)] = 14204, - [SMALL_STATE(1235)] = 14265, - [SMALL_STATE(1236)] = 14326, - [SMALL_STATE(1237)] = 14387, - [SMALL_STATE(1238)] = 14448, - [SMALL_STATE(1239)] = 14509, - [SMALL_STATE(1240)] = 14570, - [SMALL_STATE(1241)] = 14631, - [SMALL_STATE(1242)] = 14692, - [SMALL_STATE(1243)] = 14753, - [SMALL_STATE(1244)] = 14814, - [SMALL_STATE(1245)] = 14875, - [SMALL_STATE(1246)] = 14936, - [SMALL_STATE(1247)] = 14997, - [SMALL_STATE(1248)] = 15058, - [SMALL_STATE(1249)] = 15119, - [SMALL_STATE(1250)] = 15180, - [SMALL_STATE(1251)] = 15241, - [SMALL_STATE(1252)] = 15302, - [SMALL_STATE(1253)] = 15363, - [SMALL_STATE(1254)] = 15424, - [SMALL_STATE(1255)] = 15485, - [SMALL_STATE(1256)] = 15546, - [SMALL_STATE(1257)] = 15607, - [SMALL_STATE(1258)] = 15668, - [SMALL_STATE(1259)] = 15729, - [SMALL_STATE(1260)] = 15790, - [SMALL_STATE(1261)] = 15851, - [SMALL_STATE(1262)] = 15912, - [SMALL_STATE(1263)] = 15973, - [SMALL_STATE(1264)] = 16034, - [SMALL_STATE(1265)] = 16095, - [SMALL_STATE(1266)] = 16156, - [SMALL_STATE(1267)] = 16217, - [SMALL_STATE(1268)] = 16278, - [SMALL_STATE(1269)] = 16339, - [SMALL_STATE(1270)] = 16400, - [SMALL_STATE(1271)] = 16461, - [SMALL_STATE(1272)] = 16522, - [SMALL_STATE(1273)] = 16583, - [SMALL_STATE(1274)] = 16644, - [SMALL_STATE(1275)] = 16705, - [SMALL_STATE(1276)] = 16766, - [SMALL_STATE(1277)] = 16827, - [SMALL_STATE(1278)] = 16888, - [SMALL_STATE(1279)] = 16949, - [SMALL_STATE(1280)] = 17010, - [SMALL_STATE(1281)] = 17071, - [SMALL_STATE(1282)] = 17132, - [SMALL_STATE(1283)] = 17193, - [SMALL_STATE(1284)] = 17254, - [SMALL_STATE(1285)] = 17315, - [SMALL_STATE(1286)] = 17376, - [SMALL_STATE(1287)] = 17437, - [SMALL_STATE(1288)] = 17498, - [SMALL_STATE(1289)] = 17559, - [SMALL_STATE(1290)] = 17620, - [SMALL_STATE(1291)] = 17681, - [SMALL_STATE(1292)] = 17742, - [SMALL_STATE(1293)] = 17803, - [SMALL_STATE(1294)] = 17864, - [SMALL_STATE(1295)] = 17925, - [SMALL_STATE(1296)] = 17986, - [SMALL_STATE(1297)] = 18047, - [SMALL_STATE(1298)] = 18108, - [SMALL_STATE(1299)] = 18169, - [SMALL_STATE(1300)] = 18230, - [SMALL_STATE(1301)] = 18291, - [SMALL_STATE(1302)] = 18352, - [SMALL_STATE(1303)] = 18413, - [SMALL_STATE(1304)] = 18474, - [SMALL_STATE(1305)] = 18535, - [SMALL_STATE(1306)] = 18596, - [SMALL_STATE(1307)] = 18657, - [SMALL_STATE(1308)] = 18718, - [SMALL_STATE(1309)] = 18779, - [SMALL_STATE(1310)] = 18840, - [SMALL_STATE(1311)] = 18901, - [SMALL_STATE(1312)] = 18962, - [SMALL_STATE(1313)] = 19023, - [SMALL_STATE(1314)] = 19084, - [SMALL_STATE(1315)] = 19145, - [SMALL_STATE(1316)] = 19206, - [SMALL_STATE(1317)] = 19267, - [SMALL_STATE(1318)] = 19328, - [SMALL_STATE(1319)] = 19389, - [SMALL_STATE(1320)] = 19450, - [SMALL_STATE(1321)] = 19511, - [SMALL_STATE(1322)] = 19572, - [SMALL_STATE(1323)] = 19633, - [SMALL_STATE(1324)] = 19694, - [SMALL_STATE(1325)] = 19755, - [SMALL_STATE(1326)] = 19816, - [SMALL_STATE(1327)] = 19877, - [SMALL_STATE(1328)] = 19938, - [SMALL_STATE(1329)] = 19999, - [SMALL_STATE(1330)] = 20060, - [SMALL_STATE(1331)] = 20121, - [SMALL_STATE(1332)] = 20182, - [SMALL_STATE(1333)] = 20243, - [SMALL_STATE(1334)] = 20304, - [SMALL_STATE(1335)] = 20365, - [SMALL_STATE(1336)] = 20426, - [SMALL_STATE(1337)] = 20487, - [SMALL_STATE(1338)] = 20548, - [SMALL_STATE(1339)] = 20609, - [SMALL_STATE(1340)] = 20670, - [SMALL_STATE(1341)] = 20731, - [SMALL_STATE(1342)] = 20792, - [SMALL_STATE(1343)] = 20853, - [SMALL_STATE(1344)] = 20914, - [SMALL_STATE(1345)] = 20975, - [SMALL_STATE(1346)] = 21036, - [SMALL_STATE(1347)] = 21097, - [SMALL_STATE(1348)] = 21158, - [SMALL_STATE(1349)] = 21219, - [SMALL_STATE(1350)] = 21280, - [SMALL_STATE(1351)] = 21341, - [SMALL_STATE(1352)] = 21402, - [SMALL_STATE(1353)] = 21463, - [SMALL_STATE(1354)] = 21524, - [SMALL_STATE(1355)] = 21585, - [SMALL_STATE(1356)] = 21646, - [SMALL_STATE(1357)] = 21707, - [SMALL_STATE(1358)] = 21768, - [SMALL_STATE(1359)] = 21829, - [SMALL_STATE(1360)] = 21890, - [SMALL_STATE(1361)] = 21951, - [SMALL_STATE(1362)] = 22012, - [SMALL_STATE(1363)] = 22073, - [SMALL_STATE(1364)] = 22134, - [SMALL_STATE(1365)] = 22195, - [SMALL_STATE(1366)] = 22260, - [SMALL_STATE(1367)] = 22321, - [SMALL_STATE(1368)] = 22382, - [SMALL_STATE(1369)] = 22443, - [SMALL_STATE(1370)] = 22508, - [SMALL_STATE(1371)] = 22583, - [SMALL_STATE(1372)] = 22646, - [SMALL_STATE(1373)] = 22707, - [SMALL_STATE(1374)] = 22769, - [SMALL_STATE(1375)] = 22829, - [SMALL_STATE(1376)] = 22889, - [SMALL_STATE(1377)] = 22949, - [SMALL_STATE(1378)] = 23017, - [SMALL_STATE(1379)] = 23077, - [SMALL_STATE(1380)] = 23137, - [SMALL_STATE(1381)] = 23197, - [SMALL_STATE(1382)] = 23257, - [SMALL_STATE(1383)] = 23317, - [SMALL_STATE(1384)] = 23377, - [SMALL_STATE(1385)] = 23437, - [SMALL_STATE(1386)] = 23497, - [SMALL_STATE(1387)] = 23557, - [SMALL_STATE(1388)] = 23617, - [SMALL_STATE(1389)] = 23677, - [SMALL_STATE(1390)] = 23737, - [SMALL_STATE(1391)] = 23797, - [SMALL_STATE(1392)] = 23857, - [SMALL_STATE(1393)] = 23917, - [SMALL_STATE(1394)] = 23977, - [SMALL_STATE(1395)] = 24043, - [SMALL_STATE(1396)] = 24103, - [SMALL_STATE(1397)] = 24163, - [SMALL_STATE(1398)] = 24223, - [SMALL_STATE(1399)] = 24283, - [SMALL_STATE(1400)] = 24343, - [SMALL_STATE(1401)] = 24403, - [SMALL_STATE(1402)] = 24463, - [SMALL_STATE(1403)] = 24529, - [SMALL_STATE(1404)] = 24589, - [SMALL_STATE(1405)] = 24649, - [SMALL_STATE(1406)] = 24709, - [SMALL_STATE(1407)] = 24769, - [SMALL_STATE(1408)] = 24829, - [SMALL_STATE(1409)] = 24889, - [SMALL_STATE(1410)] = 24949, - [SMALL_STATE(1411)] = 25009, - [SMALL_STATE(1412)] = 25069, - [SMALL_STATE(1413)] = 25129, - [SMALL_STATE(1414)] = 25189, - [SMALL_STATE(1415)] = 25249, - [SMALL_STATE(1416)] = 25309, - [SMALL_STATE(1417)] = 25369, - [SMALL_STATE(1418)] = 25429, - [SMALL_STATE(1419)] = 25495, - [SMALL_STATE(1420)] = 25555, - [SMALL_STATE(1421)] = 25615, - [SMALL_STATE(1422)] = 25675, - [SMALL_STATE(1423)] = 25735, - [SMALL_STATE(1424)] = 25795, - [SMALL_STATE(1425)] = 25855, - [SMALL_STATE(1426)] = 25915, - [SMALL_STATE(1427)] = 25975, - [SMALL_STATE(1428)] = 26035, - [SMALL_STATE(1429)] = 26131, - [SMALL_STATE(1430)] = 26191, - [SMALL_STATE(1431)] = 26251, - [SMALL_STATE(1432)] = 26317, - [SMALL_STATE(1433)] = 26377, - [SMALL_STATE(1434)] = 26437, - [SMALL_STATE(1435)] = 26497, - [SMALL_STATE(1436)] = 26557, - [SMALL_STATE(1437)] = 26617, - [SMALL_STATE(1438)] = 26677, - [SMALL_STATE(1439)] = 26737, - [SMALL_STATE(1440)] = 26797, - [SMALL_STATE(1441)] = 26857, - [SMALL_STATE(1442)] = 26917, - [SMALL_STATE(1443)] = 26977, - [SMALL_STATE(1444)] = 27037, - [SMALL_STATE(1445)] = 27097, - [SMALL_STATE(1446)] = 27157, - [SMALL_STATE(1447)] = 27217, - [SMALL_STATE(1448)] = 27277, - [SMALL_STATE(1449)] = 27373, - [SMALL_STATE(1450)] = 27433, - [SMALL_STATE(1451)] = 27493, - [SMALL_STATE(1452)] = 27553, - [SMALL_STATE(1453)] = 27613, - [SMALL_STATE(1454)] = 27677, - [SMALL_STATE(1455)] = 27737, - [SMALL_STATE(1456)] = 27797, - [SMALL_STATE(1457)] = 27859, - [SMALL_STATE(1458)] = 27919, - [SMALL_STATE(1459)] = 27979, - [SMALL_STATE(1460)] = 28039, - [SMALL_STATE(1461)] = 28099, - [SMALL_STATE(1462)] = 28159, - [SMALL_STATE(1463)] = 28219, - [SMALL_STATE(1464)] = 28279, - [SMALL_STATE(1465)] = 28339, - [SMALL_STATE(1466)] = 28413, - [SMALL_STATE(1467)] = 28473, - [SMALL_STATE(1468)] = 28533, - [SMALL_STATE(1469)] = 28593, - [SMALL_STATE(1470)] = 28653, - [SMALL_STATE(1471)] = 28713, - [SMALL_STATE(1472)] = 28773, - [SMALL_STATE(1473)] = 28833, - [SMALL_STATE(1474)] = 28893, - [SMALL_STATE(1475)] = 28953, - [SMALL_STATE(1476)] = 29013, - [SMALL_STATE(1477)] = 29073, - [SMALL_STATE(1478)] = 29133, - [SMALL_STATE(1479)] = 29193, - [SMALL_STATE(1480)] = 29253, - [SMALL_STATE(1481)] = 29313, - [SMALL_STATE(1482)] = 29373, - [SMALL_STATE(1483)] = 29433, - [SMALL_STATE(1484)] = 29493, - [SMALL_STATE(1485)] = 29553, - [SMALL_STATE(1486)] = 29613, - [SMALL_STATE(1487)] = 29673, - [SMALL_STATE(1488)] = 29737, - [SMALL_STATE(1489)] = 29797, - [SMALL_STATE(1490)] = 29857, - [SMALL_STATE(1491)] = 29917, - [SMALL_STATE(1492)] = 29977, - [SMALL_STATE(1493)] = 30037, - [SMALL_STATE(1494)] = 30097, - [SMALL_STATE(1495)] = 30157, - [SMALL_STATE(1496)] = 30256, - [SMALL_STATE(1497)] = 30317, - [SMALL_STATE(1498)] = 30386, - [SMALL_STATE(1499)] = 30485, - [SMALL_STATE(1500)] = 30556, - [SMALL_STATE(1501)] = 30655, - [SMALL_STATE(1502)] = 30716, - [SMALL_STATE(1503)] = 30808, - [SMALL_STATE(1504)] = 30898, - [SMALL_STATE(1505)] = 30984, - [SMALL_STATE(1506)] = 31068, - [SMALL_STATE(1507)] = 31138, - [SMALL_STATE(1508)] = 31228, - [SMALL_STATE(1509)] = 31318, - [SMALL_STATE(1510)] = 31404, - [SMALL_STATE(1511)] = 31482, - [SMALL_STATE(1512)] = 31568, - [SMALL_STATE(1513)] = 31638, - [SMALL_STATE(1514)] = 31706, - [SMALL_STATE(1515)] = 31796, - [SMALL_STATE(1516)] = 31862, - [SMALL_STATE(1517)] = 31948, - [SMALL_STATE(1518)] = 32038, - [SMALL_STATE(1519)] = 32130, - [SMALL_STATE(1520)] = 32220, - [SMALL_STATE(1521)] = 32306, - [SMALL_STATE(1522)] = 32380, - [SMALL_STATE(1523)] = 32452, - [SMALL_STATE(1524)] = 32538, - [SMALL_STATE(1525)] = 32614, - [SMALL_STATE(1526)] = 32696, - [SMALL_STATE(1527)] = 32788, - [SMALL_STATE(1528)] = 32851, - [SMALL_STATE(1529)] = 32918, - [SMALL_STATE(1530)] = 32975, - [SMALL_STATE(1531)] = 33042, - [SMALL_STATE(1532)] = 33099, - [SMALL_STATE(1533)] = 33158, - [SMALL_STATE(1534)] = 33215, - [SMALL_STATE(1535)] = 33272, - [SMALL_STATE(1536)] = 33329, - [SMALL_STATE(1537)] = 33396, - [SMALL_STATE(1538)] = 33455, - [SMALL_STATE(1539)] = 33518, - [SMALL_STATE(1540)] = 33583, - [SMALL_STATE(1541)] = 33647, - [SMALL_STATE(1542)] = 33703, - [SMALL_STATE(1543)] = 33761, - [SMALL_STATE(1544)] = 33821, - [SMALL_STATE(1545)] = 33881, - [SMALL_STATE(1546)] = 33941, - [SMALL_STATE(1547)] = 34001, - [SMALL_STATE(1548)] = 34057, - [SMALL_STATE(1549)] = 34121, - [SMALL_STATE(1550)] = 34177, - [SMALL_STATE(1551)] = 34235, - [SMALL_STATE(1552)] = 34293, - [SMALL_STATE(1553)] = 34353, - [SMALL_STATE(1554)] = 34411, - [SMALL_STATE(1555)] = 34467, - [SMALL_STATE(1556)] = 34527, - [SMALL_STATE(1557)] = 34591, - [SMALL_STATE(1558)] = 34655, - [SMALL_STATE(1559)] = 34715, - [SMALL_STATE(1560)] = 34772, - [SMALL_STATE(1561)] = 34867, - [SMALL_STATE(1562)] = 34962, - [SMALL_STATE(1563)] = 35057, - [SMALL_STATE(1564)] = 35114, - [SMALL_STATE(1565)] = 35209, - [SMALL_STATE(1566)] = 35298, - [SMALL_STATE(1567)] = 35393, - [SMALL_STATE(1568)] = 35452, - [SMALL_STATE(1569)] = 35509, - [SMALL_STATE(1570)] = 35564, - [SMALL_STATE(1571)] = 35623, - [SMALL_STATE(1572)] = 35678, - [SMALL_STATE(1573)] = 35773, - [SMALL_STATE(1574)] = 35832, - [SMALL_STATE(1575)] = 35927, - [SMALL_STATE(1576)] = 35986, - [SMALL_STATE(1577)] = 36081, - [SMALL_STATE(1578)] = 36176, - [SMALL_STATE(1579)] = 36231, - [SMALL_STATE(1580)] = 36326, - [SMALL_STATE(1581)] = 36383, - [SMALL_STATE(1582)] = 36478, - [SMALL_STATE(1583)] = 36535, - [SMALL_STATE(1584)] = 36590, - [SMALL_STATE(1585)] = 36679, - [SMALL_STATE(1586)] = 36734, - [SMALL_STATE(1587)] = 36791, - [SMALL_STATE(1588)] = 36846, - [SMALL_STATE(1589)] = 36901, - [SMALL_STATE(1590)] = 36996, - [SMALL_STATE(1591)] = 37051, - [SMALL_STATE(1592)] = 37140, - [SMALL_STATE(1593)] = 37197, - [SMALL_STATE(1594)] = 37269, - [SMALL_STATE(1595)] = 37323, - [SMALL_STATE(1596)] = 37405, - [SMALL_STATE(1597)] = 37483, - [SMALL_STATE(1598)] = 37539, - [SMALL_STATE(1599)] = 37593, - [SMALL_STATE(1600)] = 37685, - [SMALL_STATE(1601)] = 37759, - [SMALL_STATE(1602)] = 37813, - [SMALL_STATE(1603)] = 37867, - [SMALL_STATE(1604)] = 37923, - [SMALL_STATE(1605)] = 38011, - [SMALL_STATE(1606)] = 38091, - [SMALL_STATE(1607)] = 38173, - [SMALL_STATE(1608)] = 38259, - [SMALL_STATE(1609)] = 38345, - [SMALL_STATE(1610)] = 38431, - [SMALL_STATE(1611)] = 38487, - [SMALL_STATE(1612)] = 38543, - [SMALL_STATE(1613)] = 38597, - [SMALL_STATE(1614)] = 38689, - [SMALL_STATE(1615)] = 38781, - [SMALL_STATE(1616)] = 38835, - [SMALL_STATE(1617)] = 38889, - [SMALL_STATE(1618)] = 38981, - [SMALL_STATE(1619)] = 39035, - [SMALL_STATE(1620)] = 39091, - [SMALL_STATE(1621)] = 39145, - [SMALL_STATE(1622)] = 39231, - [SMALL_STATE(1623)] = 39287, - [SMALL_STATE(1624)] = 39375, - [SMALL_STATE(1625)] = 39467, - [SMALL_STATE(1626)] = 39523, - [SMALL_STATE(1627)] = 39581, - [SMALL_STATE(1628)] = 39647, - [SMALL_STATE(1629)] = 39703, - [SMALL_STATE(1630)] = 39757, - [SMALL_STATE(1631)] = 39849, - [SMALL_STATE(1632)] = 39935, - [SMALL_STATE(1633)] = 40021, - [SMALL_STATE(1634)] = 40077, - [SMALL_STATE(1635)] = 40131, - [SMALL_STATE(1636)] = 40187, - [SMALL_STATE(1637)] = 40241, - [SMALL_STATE(1638)] = 40297, - [SMALL_STATE(1639)] = 40385, - [SMALL_STATE(1640)] = 40449, - [SMALL_STATE(1641)] = 40519, - [SMALL_STATE(1642)] = 40607, - [SMALL_STATE(1643)] = 40663, - [SMALL_STATE(1644)] = 40743, - [SMALL_STATE(1645)] = 40799, - [SMALL_STATE(1646)] = 40867, - [SMALL_STATE(1647)] = 40923, - [SMALL_STATE(1648)] = 40979, - [SMALL_STATE(1649)] = 41033, - [SMALL_STATE(1650)] = 41089, - [SMALL_STATE(1651)] = 41143, - [SMALL_STATE(1652)] = 41197, - [SMALL_STATE(1653)] = 41251, - [SMALL_STATE(1654)] = 41339, - [SMALL_STATE(1655)] = 41428, - [SMALL_STATE(1656)] = 41481, - [SMALL_STATE(1657)] = 41570, - [SMALL_STATE(1658)] = 41629, - [SMALL_STATE(1659)] = 41718, - [SMALL_STATE(1660)] = 41771, - [SMALL_STATE(1661)] = 41824, - [SMALL_STATE(1662)] = 41877, - [SMALL_STATE(1663)] = 41964, - [SMALL_STATE(1664)] = 42017, - [SMALL_STATE(1665)] = 42070, - [SMALL_STATE(1666)] = 42159, - [SMALL_STATE(1667)] = 42212, - [SMALL_STATE(1668)] = 42265, - [SMALL_STATE(1669)] = 42318, - [SMALL_STATE(1670)] = 42371, - [SMALL_STATE(1671)] = 42424, - [SMALL_STATE(1672)] = 42477, - [SMALL_STATE(1673)] = 42530, - [SMALL_STATE(1674)] = 42583, - [SMALL_STATE(1675)] = 42636, - [SMALL_STATE(1676)] = 42689, - [SMALL_STATE(1677)] = 42748, - [SMALL_STATE(1678)] = 42807, - [SMALL_STATE(1679)] = 42896, - [SMALL_STATE(1680)] = 42985, - [SMALL_STATE(1681)] = 43066, - [SMALL_STATE(1682)] = 43151, - [SMALL_STATE(1683)] = 43204, - [SMALL_STATE(1684)] = 43257, - [SMALL_STATE(1685)] = 43310, - [SMALL_STATE(1686)] = 43395, - [SMALL_STATE(1687)] = 43480, - [SMALL_STATE(1688)] = 43567, - [SMALL_STATE(1689)] = 43654, - [SMALL_STATE(1690)] = 43707, - [SMALL_STATE(1691)] = 43796, - [SMALL_STATE(1692)] = 43849, - [SMALL_STATE(1693)] = 43902, - [SMALL_STATE(1694)] = 43955, - [SMALL_STATE(1695)] = 44008, - [SMALL_STATE(1696)] = 44095, - [SMALL_STATE(1697)] = 44148, - [SMALL_STATE(1698)] = 44201, - [SMALL_STATE(1699)] = 44254, - [SMALL_STATE(1700)] = 44307, - [SMALL_STATE(1701)] = 44360, - [SMALL_STATE(1702)] = 44413, - [SMALL_STATE(1703)] = 44502, - [SMALL_STATE(1704)] = 44587, - [SMALL_STATE(1705)] = 44674, - [SMALL_STATE(1706)] = 44761, - [SMALL_STATE(1707)] = 44814, - [SMALL_STATE(1708)] = 44867, - [SMALL_STATE(1709)] = 44930, - [SMALL_STATE(1710)] = 44999, - [SMALL_STATE(1711)] = 45066, - [SMALL_STATE(1712)] = 45137, - [SMALL_STATE(1713)] = 45214, - [SMALL_STATE(1714)] = 45293, - [SMALL_STATE(1715)] = 45358, - [SMALL_STATE(1716)] = 45443, - [SMALL_STATE(1717)] = 45528, - [SMALL_STATE(1718)] = 45601, - [SMALL_STATE(1719)] = 45682, - [SMALL_STATE(1720)] = 45735, - [SMALL_STATE(1721)] = 45788, - [SMALL_STATE(1722)] = 45841, - [SMALL_STATE(1723)] = 45894, - [SMALL_STATE(1724)] = 45947, - [SMALL_STATE(1725)] = 46000, - [SMALL_STATE(1726)] = 46059, - [SMALL_STATE(1727)] = 46146, - [SMALL_STATE(1728)] = 46199, - [SMALL_STATE(1729)] = 46252, - [SMALL_STATE(1730)] = 46305, - [SMALL_STATE(1731)] = 46358, - [SMALL_STATE(1732)] = 46411, - [SMALL_STATE(1733)] = 46488, - [SMALL_STATE(1734)] = 46541, - [SMALL_STATE(1735)] = 46594, - [SMALL_STATE(1736)] = 46647, - [SMALL_STATE(1737)] = 46700, - [SMALL_STATE(1738)] = 46753, - [SMALL_STATE(1739)] = 46806, - [SMALL_STATE(1740)] = 46859, - [SMALL_STATE(1741)] = 46946, - [SMALL_STATE(1742)] = 46999, - [SMALL_STATE(1743)] = 47084, - [SMALL_STATE(1744)] = 47137, - [SMALL_STATE(1745)] = 47190, - [SMALL_STATE(1746)] = 47243, - [SMALL_STATE(1747)] = 47296, - [SMALL_STATE(1748)] = 47349, - [SMALL_STATE(1749)] = 47402, - [SMALL_STATE(1750)] = 47455, - [SMALL_STATE(1751)] = 47508, - [SMALL_STATE(1752)] = 47595, - [SMALL_STATE(1753)] = 47648, - [SMALL_STATE(1754)] = 47701, - [SMALL_STATE(1755)] = 47786, - [SMALL_STATE(1756)] = 47873, - [SMALL_STATE(1757)] = 47926, - [SMALL_STATE(1758)] = 47979, - [SMALL_STATE(1759)] = 48066, - [SMALL_STATE(1760)] = 48119, - [SMALL_STATE(1761)] = 48182, - [SMALL_STATE(1762)] = 48251, - [SMALL_STATE(1763)] = 48318, - [SMALL_STATE(1764)] = 48389, - [SMALL_STATE(1765)] = 48466, - [SMALL_STATE(1766)] = 48545, - [SMALL_STATE(1767)] = 48610, - [SMALL_STATE(1768)] = 48695, - [SMALL_STATE(1769)] = 48780, - [SMALL_STATE(1770)] = 48853, - [SMALL_STATE(1771)] = 48906, - [SMALL_STATE(1772)] = 48959, - [SMALL_STATE(1773)] = 49012, - [SMALL_STATE(1774)] = 49065, - [SMALL_STATE(1775)] = 49118, - [SMALL_STATE(1776)] = 49205, - [SMALL_STATE(1777)] = 49258, - [SMALL_STATE(1778)] = 49311, - [SMALL_STATE(1779)] = 49364, - [SMALL_STATE(1780)] = 49417, - [SMALL_STATE(1781)] = 49470, - [SMALL_STATE(1782)] = 49523, - [SMALL_STATE(1783)] = 49576, - [SMALL_STATE(1784)] = 49629, - [SMALL_STATE(1785)] = 49718, - [SMALL_STATE(1786)] = 49771, - [SMALL_STATE(1787)] = 49824, - [SMALL_STATE(1788)] = 49877, - [SMALL_STATE(1789)] = 49930, - [SMALL_STATE(1790)] = 49983, - [SMALL_STATE(1791)] = 50070, - [SMALL_STATE(1792)] = 50123, - [SMALL_STATE(1793)] = 50176, - [SMALL_STATE(1794)] = 50263, - [SMALL_STATE(1795)] = 50316, - [SMALL_STATE(1796)] = 50369, - [SMALL_STATE(1797)] = 50456, - [SMALL_STATE(1798)] = 50509, - [SMALL_STATE(1799)] = 50562, - [SMALL_STATE(1800)] = 50651, - [SMALL_STATE(1801)] = 50738, - [SMALL_STATE(1802)] = 50827, - [SMALL_STATE(1803)] = 50914, - [SMALL_STATE(1804)] = 50967, - [SMALL_STATE(1805)] = 51056, - [SMALL_STATE(1806)] = 51109, - [SMALL_STATE(1807)] = 51198, - [SMALL_STATE(1808)] = 51287, - [SMALL_STATE(1809)] = 51376, - [SMALL_STATE(1810)] = 51429, - [SMALL_STATE(1811)] = 51518, - [SMALL_STATE(1812)] = 51595, - [SMALL_STATE(1813)] = 51684, - [SMALL_STATE(1814)] = 51773, - [SMALL_STATE(1815)] = 51862, - [SMALL_STATE(1816)] = 51951, - [SMALL_STATE(1817)] = 52038, - [SMALL_STATE(1818)] = 52127, - [SMALL_STATE(1819)] = 52216, - [SMALL_STATE(1820)] = 52305, - [SMALL_STATE(1821)] = 52394, - [SMALL_STATE(1822)] = 52447, - [SMALL_STATE(1823)] = 52536, - [SMALL_STATE(1824)] = 52625, - [SMALL_STATE(1825)] = 52706, - [SMALL_STATE(1826)] = 52791, - [SMALL_STATE(1827)] = 52880, - [SMALL_STATE(1828)] = 52965, - [SMALL_STATE(1829)] = 53050, - [SMALL_STATE(1830)] = 53139, - [SMALL_STATE(1831)] = 53192, - [SMALL_STATE(1832)] = 53281, - [SMALL_STATE(1833)] = 53370, - [SMALL_STATE(1834)] = 53459, - [SMALL_STATE(1835)] = 53548, - [SMALL_STATE(1836)] = 53601, - [SMALL_STATE(1837)] = 53662, - [SMALL_STATE(1838)] = 53751, - [SMALL_STATE(1839)] = 53840, - [SMALL_STATE(1840)] = 53929, - [SMALL_STATE(1841)] = 54018, + [SMALL_STATE(1018)] = 0, + [SMALL_STATE(1019)] = 75, + [SMALL_STATE(1020)] = 146, + [SMALL_STATE(1021)] = 216, + [SMALL_STATE(1022)] = 316, + [SMALL_STATE(1023)] = 416, + [SMALL_STATE(1024)] = 493, + [SMALL_STATE(1025)] = 572, + [SMALL_STATE(1026)] = 646, + [SMALL_STATE(1027)] = 720, + [SMALL_STATE(1028)] = 784, + [SMALL_STATE(1029)] = 848, + [SMALL_STATE(1030)] = 922, + [SMALL_STATE(1031)] = 986, + [SMALL_STATE(1032)] = 1050, + [SMALL_STATE(1033)] = 1114, + [SMALL_STATE(1034)] = 1178, + [SMALL_STATE(1035)] = 1242, + [SMALL_STATE(1036)] = 1306, + [SMALL_STATE(1037)] = 1370, + [SMALL_STATE(1038)] = 1441, + [SMALL_STATE(1039)] = 1508, + [SMALL_STATE(1040)] = 1571, + [SMALL_STATE(1041)] = 1634, + [SMALL_STATE(1042)] = 1705, + [SMALL_STATE(1043)] = 1768, + [SMALL_STATE(1044)] = 1831, + [SMALL_STATE(1045)] = 1902, + [SMALL_STATE(1046)] = 1969, + [SMALL_STATE(1047)] = 2032, + [SMALL_STATE(1048)] = 2099, + [SMALL_STATE(1049)] = 2166, + [SMALL_STATE(1050)] = 2237, + [SMALL_STATE(1051)] = 2304, + [SMALL_STATE(1052)] = 2374, + [SMALL_STATE(1053)] = 2436, + [SMALL_STATE(1054)] = 2498, + [SMALL_STATE(1055)] = 2604, + [SMALL_STATE(1056)] = 2666, + [SMALL_STATE(1057)] = 2766, + [SMALL_STATE(1058)] = 2828, + [SMALL_STATE(1059)] = 2934, + [SMALL_STATE(1060)] = 3040, + [SMALL_STATE(1061)] = 3146, + [SMALL_STATE(1062)] = 3246, + [SMALL_STATE(1063)] = 3312, + [SMALL_STATE(1064)] = 3418, + [SMALL_STATE(1065)] = 3524, + [SMALL_STATE(1066)] = 3592, + [SMALL_STATE(1067)] = 3653, + [SMALL_STATE(1068)] = 3714, + [SMALL_STATE(1069)] = 3775, + [SMALL_STATE(1070)] = 3836, + [SMALL_STATE(1071)] = 3897, + [SMALL_STATE(1072)] = 3958, + [SMALL_STATE(1073)] = 4019, + [SMALL_STATE(1074)] = 4080, + [SMALL_STATE(1075)] = 4141, + [SMALL_STATE(1076)] = 4202, + [SMALL_STATE(1077)] = 4263, + [SMALL_STATE(1078)] = 4324, + [SMALL_STATE(1079)] = 4385, + [SMALL_STATE(1080)] = 4446, + [SMALL_STATE(1081)] = 4507, + [SMALL_STATE(1082)] = 4568, + [SMALL_STATE(1083)] = 4629, + [SMALL_STATE(1084)] = 4690, + [SMALL_STATE(1085)] = 4751, + [SMALL_STATE(1086)] = 4812, + [SMALL_STATE(1087)] = 4873, + [SMALL_STATE(1088)] = 4934, + [SMALL_STATE(1089)] = 4995, + [SMALL_STATE(1090)] = 5056, + [SMALL_STATE(1091)] = 5117, + [SMALL_STATE(1092)] = 5178, + [SMALL_STATE(1093)] = 5239, + [SMALL_STATE(1094)] = 5300, + [SMALL_STATE(1095)] = 5361, + [SMALL_STATE(1096)] = 5422, + [SMALL_STATE(1097)] = 5483, + [SMALL_STATE(1098)] = 5544, + [SMALL_STATE(1099)] = 5605, + [SMALL_STATE(1100)] = 5666, + [SMALL_STATE(1101)] = 5727, + [SMALL_STATE(1102)] = 5788, + [SMALL_STATE(1103)] = 5849, + [SMALL_STATE(1104)] = 5910, + [SMALL_STATE(1105)] = 5971, + [SMALL_STATE(1106)] = 6032, + [SMALL_STATE(1107)] = 6093, + [SMALL_STATE(1108)] = 6154, + [SMALL_STATE(1109)] = 6215, + [SMALL_STATE(1110)] = 6276, + [SMALL_STATE(1111)] = 6337, + [SMALL_STATE(1112)] = 6398, + [SMALL_STATE(1113)] = 6459, + [SMALL_STATE(1114)] = 6520, + [SMALL_STATE(1115)] = 6581, + [SMALL_STATE(1116)] = 6642, + [SMALL_STATE(1117)] = 6703, + [SMALL_STATE(1118)] = 6764, + [SMALL_STATE(1119)] = 6825, + [SMALL_STATE(1120)] = 6886, + [SMALL_STATE(1121)] = 6947, + [SMALL_STATE(1122)] = 7008, + [SMALL_STATE(1123)] = 7069, + [SMALL_STATE(1124)] = 7130, + [SMALL_STATE(1125)] = 7191, + [SMALL_STATE(1126)] = 7252, + [SMALL_STATE(1127)] = 7313, + [SMALL_STATE(1128)] = 7374, + [SMALL_STATE(1129)] = 7435, + [SMALL_STATE(1130)] = 7496, + [SMALL_STATE(1131)] = 7557, + [SMALL_STATE(1132)] = 7618, + [SMALL_STATE(1133)] = 7679, + [SMALL_STATE(1134)] = 7740, + [SMALL_STATE(1135)] = 7801, + [SMALL_STATE(1136)] = 7862, + [SMALL_STATE(1137)] = 7923, + [SMALL_STATE(1138)] = 7984, + [SMALL_STATE(1139)] = 8045, + [SMALL_STATE(1140)] = 8106, + [SMALL_STATE(1141)] = 8167, + [SMALL_STATE(1142)] = 8228, + [SMALL_STATE(1143)] = 8289, + [SMALL_STATE(1144)] = 8350, + [SMALL_STATE(1145)] = 8411, + [SMALL_STATE(1146)] = 8472, + [SMALL_STATE(1147)] = 8533, + [SMALL_STATE(1148)] = 8594, + [SMALL_STATE(1149)] = 8655, + [SMALL_STATE(1150)] = 8716, + [SMALL_STATE(1151)] = 8779, + [SMALL_STATE(1152)] = 8840, + [SMALL_STATE(1153)] = 8901, + [SMALL_STATE(1154)] = 8962, + [SMALL_STATE(1155)] = 9023, + [SMALL_STATE(1156)] = 9084, + [SMALL_STATE(1157)] = 9145, + [SMALL_STATE(1158)] = 9206, + [SMALL_STATE(1159)] = 9267, + [SMALL_STATE(1160)] = 9328, + [SMALL_STATE(1161)] = 9389, + [SMALL_STATE(1162)] = 9450, + [SMALL_STATE(1163)] = 9511, + [SMALL_STATE(1164)] = 9572, + [SMALL_STATE(1165)] = 9633, + [SMALL_STATE(1166)] = 9694, + [SMALL_STATE(1167)] = 9755, + [SMALL_STATE(1168)] = 9816, + [SMALL_STATE(1169)] = 9877, + [SMALL_STATE(1170)] = 9938, + [SMALL_STATE(1171)] = 9999, + [SMALL_STATE(1172)] = 10060, + [SMALL_STATE(1173)] = 10121, + [SMALL_STATE(1174)] = 10182, + [SMALL_STATE(1175)] = 10245, + [SMALL_STATE(1176)] = 10306, + [SMALL_STATE(1177)] = 10367, + [SMALL_STATE(1178)] = 10428, + [SMALL_STATE(1179)] = 10491, + [SMALL_STATE(1180)] = 10552, + [SMALL_STATE(1181)] = 10615, + [SMALL_STATE(1182)] = 10678, + [SMALL_STATE(1183)] = 10739, + [SMALL_STATE(1184)] = 10802, + [SMALL_STATE(1185)] = 10865, + [SMALL_STATE(1186)] = 10928, + [SMALL_STATE(1187)] = 10991, + [SMALL_STATE(1188)] = 11056, + [SMALL_STATE(1189)] = 11117, + [SMALL_STATE(1190)] = 11178, + [SMALL_STATE(1191)] = 11239, + [SMALL_STATE(1192)] = 11300, + [SMALL_STATE(1193)] = 11361, + [SMALL_STATE(1194)] = 11422, + [SMALL_STATE(1195)] = 11483, + [SMALL_STATE(1196)] = 11544, + [SMALL_STATE(1197)] = 11605, + [SMALL_STATE(1198)] = 11666, + [SMALL_STATE(1199)] = 11727, + [SMALL_STATE(1200)] = 11788, + [SMALL_STATE(1201)] = 11849, + [SMALL_STATE(1202)] = 11910, + [SMALL_STATE(1203)] = 11971, + [SMALL_STATE(1204)] = 12032, + [SMALL_STATE(1205)] = 12093, + [SMALL_STATE(1206)] = 12154, + [SMALL_STATE(1207)] = 12215, + [SMALL_STATE(1208)] = 12276, + [SMALL_STATE(1209)] = 12337, + [SMALL_STATE(1210)] = 12398, + [SMALL_STATE(1211)] = 12459, + [SMALL_STATE(1212)] = 12520, + [SMALL_STATE(1213)] = 12581, + [SMALL_STATE(1214)] = 12642, + [SMALL_STATE(1215)] = 12703, + [SMALL_STATE(1216)] = 12764, + [SMALL_STATE(1217)] = 12825, + [SMALL_STATE(1218)] = 12886, + [SMALL_STATE(1219)] = 12947, + [SMALL_STATE(1220)] = 13008, + [SMALL_STATE(1221)] = 13069, + [SMALL_STATE(1222)] = 13130, + [SMALL_STATE(1223)] = 13191, + [SMALL_STATE(1224)] = 13252, + [SMALL_STATE(1225)] = 13313, + [SMALL_STATE(1226)] = 13374, + [SMALL_STATE(1227)] = 13435, + [SMALL_STATE(1228)] = 13498, + [SMALL_STATE(1229)] = 13559, + [SMALL_STATE(1230)] = 13622, + [SMALL_STATE(1231)] = 13683, + [SMALL_STATE(1232)] = 13744, + [SMALL_STATE(1233)] = 13805, + [SMALL_STATE(1234)] = 13866, + [SMALL_STATE(1235)] = 13927, + [SMALL_STATE(1236)] = 13988, + [SMALL_STATE(1237)] = 14049, + [SMALL_STATE(1238)] = 14110, + [SMALL_STATE(1239)] = 14171, + [SMALL_STATE(1240)] = 14232, + [SMALL_STATE(1241)] = 14293, + [SMALL_STATE(1242)] = 14354, + [SMALL_STATE(1243)] = 14415, + [SMALL_STATE(1244)] = 14478, + [SMALL_STATE(1245)] = 14539, + [SMALL_STATE(1246)] = 14602, + [SMALL_STATE(1247)] = 14663, + [SMALL_STATE(1248)] = 14726, + [SMALL_STATE(1249)] = 14787, + [SMALL_STATE(1250)] = 14848, + [SMALL_STATE(1251)] = 14909, + [SMALL_STATE(1252)] = 14970, + [SMALL_STATE(1253)] = 15031, + [SMALL_STATE(1254)] = 15092, + [SMALL_STATE(1255)] = 15153, + [SMALL_STATE(1256)] = 15214, + [SMALL_STATE(1257)] = 15275, + [SMALL_STATE(1258)] = 15336, + [SMALL_STATE(1259)] = 15397, + [SMALL_STATE(1260)] = 15458, + [SMALL_STATE(1261)] = 15519, + [SMALL_STATE(1262)] = 15580, + [SMALL_STATE(1263)] = 15641, + [SMALL_STATE(1264)] = 15702, + [SMALL_STATE(1265)] = 15763, + [SMALL_STATE(1266)] = 15824, + [SMALL_STATE(1267)] = 15885, + [SMALL_STATE(1268)] = 15946, + [SMALL_STATE(1269)] = 16007, + [SMALL_STATE(1270)] = 16068, + [SMALL_STATE(1271)] = 16129, + [SMALL_STATE(1272)] = 16190, + [SMALL_STATE(1273)] = 16251, + [SMALL_STATE(1274)] = 16312, + [SMALL_STATE(1275)] = 16373, + [SMALL_STATE(1276)] = 16434, + [SMALL_STATE(1277)] = 16495, + [SMALL_STATE(1278)] = 16556, + [SMALL_STATE(1279)] = 16617, + [SMALL_STATE(1280)] = 16678, + [SMALL_STATE(1281)] = 16739, + [SMALL_STATE(1282)] = 16800, + [SMALL_STATE(1283)] = 16861, + [SMALL_STATE(1284)] = 16922, + [SMALL_STATE(1285)] = 16983, + [SMALL_STATE(1286)] = 17044, + [SMALL_STATE(1287)] = 17105, + [SMALL_STATE(1288)] = 17166, + [SMALL_STATE(1289)] = 17231, + [SMALL_STATE(1290)] = 17292, + [SMALL_STATE(1291)] = 17353, + [SMALL_STATE(1292)] = 17414, + [SMALL_STATE(1293)] = 17475, + [SMALL_STATE(1294)] = 17536, + [SMALL_STATE(1295)] = 17597, + [SMALL_STATE(1296)] = 17658, + [SMALL_STATE(1297)] = 17733, + [SMALL_STATE(1298)] = 17794, + [SMALL_STATE(1299)] = 17855, + [SMALL_STATE(1300)] = 17916, + [SMALL_STATE(1301)] = 17977, + [SMALL_STATE(1302)] = 18038, + [SMALL_STATE(1303)] = 18101, + [SMALL_STATE(1304)] = 18162, + [SMALL_STATE(1305)] = 18223, + [SMALL_STATE(1306)] = 18286, + [SMALL_STATE(1307)] = 18349, + [SMALL_STATE(1308)] = 18410, + [SMALL_STATE(1309)] = 18471, + [SMALL_STATE(1310)] = 18532, + [SMALL_STATE(1311)] = 18593, + [SMALL_STATE(1312)] = 18656, + [SMALL_STATE(1313)] = 18717, + [SMALL_STATE(1314)] = 18778, + [SMALL_STATE(1315)] = 18839, + [SMALL_STATE(1316)] = 18902, + [SMALL_STATE(1317)] = 18963, + [SMALL_STATE(1318)] = 19024, + [SMALL_STATE(1319)] = 19085, + [SMALL_STATE(1320)] = 19146, + [SMALL_STATE(1321)] = 19207, + [SMALL_STATE(1322)] = 19268, + [SMALL_STATE(1323)] = 19329, + [SMALL_STATE(1324)] = 19390, + [SMALL_STATE(1325)] = 19451, + [SMALL_STATE(1326)] = 19512, + [SMALL_STATE(1327)] = 19573, + [SMALL_STATE(1328)] = 19634, + [SMALL_STATE(1329)] = 19695, + [SMALL_STATE(1330)] = 19756, + [SMALL_STATE(1331)] = 19817, + [SMALL_STATE(1332)] = 19878, + [SMALL_STATE(1333)] = 19939, + [SMALL_STATE(1334)] = 20000, + [SMALL_STATE(1335)] = 20075, + [SMALL_STATE(1336)] = 20136, + [SMALL_STATE(1337)] = 20197, + [SMALL_STATE(1338)] = 20258, + [SMALL_STATE(1339)] = 20319, + [SMALL_STATE(1340)] = 20380, + [SMALL_STATE(1341)] = 20441, + [SMALL_STATE(1342)] = 20502, + [SMALL_STATE(1343)] = 20563, + [SMALL_STATE(1344)] = 20624, + [SMALL_STATE(1345)] = 20685, + [SMALL_STATE(1346)] = 20746, + [SMALL_STATE(1347)] = 20807, + [SMALL_STATE(1348)] = 20868, + [SMALL_STATE(1349)] = 20929, + [SMALL_STATE(1350)] = 20990, + [SMALL_STATE(1351)] = 21051, + [SMALL_STATE(1352)] = 21112, + [SMALL_STATE(1353)] = 21173, + [SMALL_STATE(1354)] = 21234, + [SMALL_STATE(1355)] = 21295, + [SMALL_STATE(1356)] = 21356, + [SMALL_STATE(1357)] = 21417, + [SMALL_STATE(1358)] = 21478, + [SMALL_STATE(1359)] = 21539, + [SMALL_STATE(1360)] = 21600, + [SMALL_STATE(1361)] = 21661, + [SMALL_STATE(1362)] = 21722, + [SMALL_STATE(1363)] = 21783, + [SMALL_STATE(1364)] = 21844, + [SMALL_STATE(1365)] = 21909, + [SMALL_STATE(1366)] = 21970, + [SMALL_STATE(1367)] = 22031, + [SMALL_STATE(1368)] = 22124, + [SMALL_STATE(1369)] = 22187, + [SMALL_STATE(1370)] = 22248, + [SMALL_STATE(1371)] = 22309, + [SMALL_STATE(1372)] = 22402, + [SMALL_STATE(1373)] = 22463, + [SMALL_STATE(1374)] = 22524, + [SMALL_STATE(1375)] = 22585, + [SMALL_STATE(1376)] = 22646, + [SMALL_STATE(1377)] = 22707, + [SMALL_STATE(1378)] = 22767, + [SMALL_STATE(1379)] = 22827, + [SMALL_STATE(1380)] = 22887, + [SMALL_STATE(1381)] = 22947, + [SMALL_STATE(1382)] = 23007, + [SMALL_STATE(1383)] = 23067, + [SMALL_STATE(1384)] = 23127, + [SMALL_STATE(1385)] = 23187, + [SMALL_STATE(1386)] = 23247, + [SMALL_STATE(1387)] = 23307, + [SMALL_STATE(1388)] = 23367, + [SMALL_STATE(1389)] = 23427, + [SMALL_STATE(1390)] = 23487, + [SMALL_STATE(1391)] = 23547, + [SMALL_STATE(1392)] = 23607, + [SMALL_STATE(1393)] = 23667, + [SMALL_STATE(1394)] = 23727, + [SMALL_STATE(1395)] = 23787, + [SMALL_STATE(1396)] = 23847, + [SMALL_STATE(1397)] = 23907, + [SMALL_STATE(1398)] = 23981, + [SMALL_STATE(1399)] = 24041, + [SMALL_STATE(1400)] = 24101, + [SMALL_STATE(1401)] = 24161, + [SMALL_STATE(1402)] = 24221, + [SMALL_STATE(1403)] = 24281, + [SMALL_STATE(1404)] = 24341, + [SMALL_STATE(1405)] = 24401, + [SMALL_STATE(1406)] = 24461, + [SMALL_STATE(1407)] = 24521, + [SMALL_STATE(1408)] = 24581, + [SMALL_STATE(1409)] = 24641, + [SMALL_STATE(1410)] = 24707, + [SMALL_STATE(1411)] = 24767, + [SMALL_STATE(1412)] = 24827, + [SMALL_STATE(1413)] = 24887, + [SMALL_STATE(1414)] = 24947, + [SMALL_STATE(1415)] = 25007, + [SMALL_STATE(1416)] = 25073, + [SMALL_STATE(1417)] = 25133, + [SMALL_STATE(1418)] = 25193, + [SMALL_STATE(1419)] = 25253, + [SMALL_STATE(1420)] = 25313, + [SMALL_STATE(1421)] = 25373, + [SMALL_STATE(1422)] = 25439, + [SMALL_STATE(1423)] = 25503, + [SMALL_STATE(1424)] = 25563, + [SMALL_STATE(1425)] = 25623, + [SMALL_STATE(1426)] = 25683, + [SMALL_STATE(1427)] = 25743, + [SMALL_STATE(1428)] = 25803, + [SMALL_STATE(1429)] = 25863, + [SMALL_STATE(1430)] = 25923, + [SMALL_STATE(1431)] = 25983, + [SMALL_STATE(1432)] = 26043, + [SMALL_STATE(1433)] = 26103, + [SMALL_STATE(1434)] = 26163, + [SMALL_STATE(1435)] = 26223, + [SMALL_STATE(1436)] = 26283, + [SMALL_STATE(1437)] = 26379, + [SMALL_STATE(1438)] = 26439, + [SMALL_STATE(1439)] = 26499, + [SMALL_STATE(1440)] = 26559, + [SMALL_STATE(1441)] = 26619, + [SMALL_STATE(1442)] = 26679, + [SMALL_STATE(1443)] = 26739, + [SMALL_STATE(1444)] = 26799, + [SMALL_STATE(1445)] = 26859, + [SMALL_STATE(1446)] = 26919, + [SMALL_STATE(1447)] = 26979, + [SMALL_STATE(1448)] = 27039, + [SMALL_STATE(1449)] = 27099, + [SMALL_STATE(1450)] = 27159, + [SMALL_STATE(1451)] = 27219, + [SMALL_STATE(1452)] = 27279, + [SMALL_STATE(1453)] = 27339, + [SMALL_STATE(1454)] = 27399, + [SMALL_STATE(1455)] = 27459, + [SMALL_STATE(1456)] = 27519, + [SMALL_STATE(1457)] = 27579, + [SMALL_STATE(1458)] = 27639, + [SMALL_STATE(1459)] = 27699, + [SMALL_STATE(1460)] = 27759, + [SMALL_STATE(1461)] = 27819, + [SMALL_STATE(1462)] = 27879, + [SMALL_STATE(1463)] = 27939, + [SMALL_STATE(1464)] = 27999, + [SMALL_STATE(1465)] = 28059, + [SMALL_STATE(1466)] = 28119, + [SMALL_STATE(1467)] = 28179, + [SMALL_STATE(1468)] = 28239, + [SMALL_STATE(1469)] = 28301, + [SMALL_STATE(1470)] = 28361, + [SMALL_STATE(1471)] = 28421, + [SMALL_STATE(1472)] = 28481, + [SMALL_STATE(1473)] = 28541, + [SMALL_STATE(1474)] = 28601, + [SMALL_STATE(1475)] = 28661, + [SMALL_STATE(1476)] = 28729, + [SMALL_STATE(1477)] = 28789, + [SMALL_STATE(1478)] = 28849, + [SMALL_STATE(1479)] = 28913, + [SMALL_STATE(1480)] = 28973, + [SMALL_STATE(1481)] = 29033, + [SMALL_STATE(1482)] = 29093, + [SMALL_STATE(1483)] = 29153, + [SMALL_STATE(1484)] = 29213, + [SMALL_STATE(1485)] = 29275, + [SMALL_STATE(1486)] = 29335, + [SMALL_STATE(1487)] = 29395, + [SMALL_STATE(1488)] = 29455, + [SMALL_STATE(1489)] = 29515, + [SMALL_STATE(1490)] = 29575, + [SMALL_STATE(1491)] = 29635, + [SMALL_STATE(1492)] = 29731, + [SMALL_STATE(1493)] = 29791, + [SMALL_STATE(1494)] = 29851, + [SMALL_STATE(1495)] = 29911, + [SMALL_STATE(1496)] = 29971, + [SMALL_STATE(1497)] = 30031, + [SMALL_STATE(1498)] = 30097, + [SMALL_STATE(1499)] = 30157, + [SMALL_STATE(1500)] = 30256, + [SMALL_STATE(1501)] = 30327, + [SMALL_STATE(1502)] = 30388, + [SMALL_STATE(1503)] = 30457, + [SMALL_STATE(1504)] = 30556, + [SMALL_STATE(1505)] = 30655, + [SMALL_STATE(1506)] = 30716, + [SMALL_STATE(1507)] = 30802, + [SMALL_STATE(1508)] = 30888, + [SMALL_STATE(1509)] = 30956, + [SMALL_STATE(1510)] = 31022, + [SMALL_STATE(1511)] = 31096, + [SMALL_STATE(1512)] = 31168, + [SMALL_STATE(1513)] = 31244, + [SMALL_STATE(1514)] = 31326, + [SMALL_STATE(1515)] = 31410, + [SMALL_STATE(1516)] = 31480, + [SMALL_STATE(1517)] = 31570, + [SMALL_STATE(1518)] = 31660, + [SMALL_STATE(1519)] = 31738, + [SMALL_STATE(1520)] = 31824, + [SMALL_STATE(1521)] = 31916, + [SMALL_STATE(1522)] = 31986, + [SMALL_STATE(1523)] = 32078, + [SMALL_STATE(1524)] = 32168, + [SMALL_STATE(1525)] = 32254, + [SMALL_STATE(1526)] = 32344, + [SMALL_STATE(1527)] = 32430, + [SMALL_STATE(1528)] = 32520, + [SMALL_STATE(1529)] = 32606, + [SMALL_STATE(1530)] = 32698, + [SMALL_STATE(1531)] = 32788, + [SMALL_STATE(1532)] = 32847, + [SMALL_STATE(1533)] = 32914, + [SMALL_STATE(1534)] = 32971, + [SMALL_STATE(1535)] = 33028, + [SMALL_STATE(1536)] = 33087, + [SMALL_STATE(1537)] = 33144, + [SMALL_STATE(1538)] = 33207, + [SMALL_STATE(1539)] = 33264, + [SMALL_STATE(1540)] = 33331, + [SMALL_STATE(1541)] = 33394, + [SMALL_STATE(1542)] = 33451, + [SMALL_STATE(1543)] = 33518, + [SMALL_STATE(1544)] = 33583, + [SMALL_STATE(1545)] = 33641, + [SMALL_STATE(1546)] = 33701, + [SMALL_STATE(1547)] = 33759, + [SMALL_STATE(1548)] = 33817, + [SMALL_STATE(1549)] = 33873, + [SMALL_STATE(1550)] = 33933, + [SMALL_STATE(1551)] = 33991, + [SMALL_STATE(1552)] = 34055, + [SMALL_STATE(1553)] = 34115, + [SMALL_STATE(1554)] = 34171, + [SMALL_STATE(1555)] = 34235, + [SMALL_STATE(1556)] = 34291, + [SMALL_STATE(1557)] = 34355, + [SMALL_STATE(1558)] = 34419, + [SMALL_STATE(1559)] = 34479, + [SMALL_STATE(1560)] = 34539, + [SMALL_STATE(1561)] = 34595, + [SMALL_STATE(1562)] = 34655, + [SMALL_STATE(1563)] = 34715, + [SMALL_STATE(1564)] = 34810, + [SMALL_STATE(1565)] = 34905, + [SMALL_STATE(1566)] = 34962, + [SMALL_STATE(1567)] = 35057, + [SMALL_STATE(1568)] = 35112, + [SMALL_STATE(1569)] = 35169, + [SMALL_STATE(1570)] = 35224, + [SMALL_STATE(1571)] = 35283, + [SMALL_STATE(1572)] = 35378, + [SMALL_STATE(1573)] = 35437, + [SMALL_STATE(1574)] = 35494, + [SMALL_STATE(1575)] = 35553, + [SMALL_STATE(1576)] = 35648, + [SMALL_STATE(1577)] = 35707, + [SMALL_STATE(1578)] = 35762, + [SMALL_STATE(1579)] = 35851, + [SMALL_STATE(1580)] = 35908, + [SMALL_STATE(1581)] = 35963, + [SMALL_STATE(1582)] = 36058, + [SMALL_STATE(1583)] = 36153, + [SMALL_STATE(1584)] = 36248, + [SMALL_STATE(1585)] = 36343, + [SMALL_STATE(1586)] = 36398, + [SMALL_STATE(1587)] = 36455, + [SMALL_STATE(1588)] = 36512, + [SMALL_STATE(1589)] = 36601, + [SMALL_STATE(1590)] = 36656, + [SMALL_STATE(1591)] = 36751, + [SMALL_STATE(1592)] = 36806, + [SMALL_STATE(1593)] = 36863, + [SMALL_STATE(1594)] = 36918, + [SMALL_STATE(1595)] = 37013, + [SMALL_STATE(1596)] = 37102, + [SMALL_STATE(1597)] = 37197, + [SMALL_STATE(1598)] = 37251, + [SMALL_STATE(1599)] = 37343, + [SMALL_STATE(1600)] = 37399, + [SMALL_STATE(1601)] = 37491, + [SMALL_STATE(1602)] = 37545, + [SMALL_STATE(1603)] = 37601, + [SMALL_STATE(1604)] = 37681, + [SMALL_STATE(1605)] = 37773, + [SMALL_STATE(1606)] = 37861, + [SMALL_STATE(1607)] = 37917, + [SMALL_STATE(1608)] = 37973, + [SMALL_STATE(1609)] = 38029, + [SMALL_STATE(1610)] = 38085, + [SMALL_STATE(1611)] = 38143, + [SMALL_STATE(1612)] = 38199, + [SMALL_STATE(1613)] = 38281, + [SMALL_STATE(1614)] = 38367, + [SMALL_STATE(1615)] = 38423, + [SMALL_STATE(1616)] = 38515, + [SMALL_STATE(1617)] = 38601, + [SMALL_STATE(1618)] = 38665, + [SMALL_STATE(1619)] = 38751, + [SMALL_STATE(1620)] = 38805, + [SMALL_STATE(1621)] = 38875, + [SMALL_STATE(1622)] = 38967, + [SMALL_STATE(1623)] = 39021, + [SMALL_STATE(1624)] = 39075, + [SMALL_STATE(1625)] = 39143, + [SMALL_STATE(1626)] = 39197, + [SMALL_STATE(1627)] = 39289, + [SMALL_STATE(1628)] = 39361, + [SMALL_STATE(1629)] = 39415, + [SMALL_STATE(1630)] = 39497, + [SMALL_STATE(1631)] = 39553, + [SMALL_STATE(1632)] = 39641, + [SMALL_STATE(1633)] = 39695, + [SMALL_STATE(1634)] = 39783, + [SMALL_STATE(1635)] = 39837, + [SMALL_STATE(1636)] = 39891, + [SMALL_STATE(1637)] = 39945, + [SMALL_STATE(1638)] = 40031, + [SMALL_STATE(1639)] = 40087, + [SMALL_STATE(1640)] = 40141, + [SMALL_STATE(1641)] = 40195, + [SMALL_STATE(1642)] = 40251, + [SMALL_STATE(1643)] = 40307, + [SMALL_STATE(1644)] = 40361, + [SMALL_STATE(1645)] = 40415, + [SMALL_STATE(1646)] = 40471, + [SMALL_STATE(1647)] = 40527, + [SMALL_STATE(1648)] = 40583, + [SMALL_STATE(1649)] = 40671, + [SMALL_STATE(1650)] = 40749, + [SMALL_STATE(1651)] = 40829, + [SMALL_STATE(1652)] = 40917, + [SMALL_STATE(1653)] = 40983, + [SMALL_STATE(1654)] = 41069, + [SMALL_STATE(1655)] = 41123, + [SMALL_STATE(1656)] = 41209, + [SMALL_STATE(1657)] = 41283, + [SMALL_STATE(1658)] = 41339, + [SMALL_STATE(1659)] = 41392, + [SMALL_STATE(1660)] = 41481, + [SMALL_STATE(1661)] = 41534, + [SMALL_STATE(1662)] = 41597, + [SMALL_STATE(1663)] = 41666, + [SMALL_STATE(1664)] = 41719, + [SMALL_STATE(1665)] = 41772, + [SMALL_STATE(1666)] = 41861, + [SMALL_STATE(1667)] = 41928, + [SMALL_STATE(1668)] = 42017, + [SMALL_STATE(1669)] = 42106, + [SMALL_STATE(1670)] = 42195, + [SMALL_STATE(1671)] = 42284, + [SMALL_STATE(1672)] = 42355, + [SMALL_STATE(1673)] = 42432, + [SMALL_STATE(1674)] = 42511, + [SMALL_STATE(1675)] = 42576, + [SMALL_STATE(1676)] = 42661, + [SMALL_STATE(1677)] = 42742, + [SMALL_STATE(1678)] = 42827, + [SMALL_STATE(1679)] = 42916, + [SMALL_STATE(1680)] = 43001, + [SMALL_STATE(1681)] = 43086, + [SMALL_STATE(1682)] = 43175, + [SMALL_STATE(1683)] = 43228, + [SMALL_STATE(1684)] = 43313, + [SMALL_STATE(1685)] = 43386, + [SMALL_STATE(1686)] = 43439, + [SMALL_STATE(1687)] = 43520, + [SMALL_STATE(1688)] = 43579, + [SMALL_STATE(1689)] = 43666, + [SMALL_STATE(1690)] = 43725, + [SMALL_STATE(1691)] = 43814, + [SMALL_STATE(1692)] = 43867, + [SMALL_STATE(1693)] = 43954, + [SMALL_STATE(1694)] = 44007, + [SMALL_STATE(1695)] = 44060, + [SMALL_STATE(1696)] = 44113, + [SMALL_STATE(1697)] = 44202, + [SMALL_STATE(1698)] = 44291, + [SMALL_STATE(1699)] = 44344, + [SMALL_STATE(1700)] = 44397, + [SMALL_STATE(1701)] = 44484, + [SMALL_STATE(1702)] = 44537, + [SMALL_STATE(1703)] = 44626, + [SMALL_STATE(1704)] = 44713, + [SMALL_STATE(1705)] = 44766, + [SMALL_STATE(1706)] = 44855, + [SMALL_STATE(1707)] = 44936, + [SMALL_STATE(1708)] = 44989, + [SMALL_STATE(1709)] = 45078, + [SMALL_STATE(1710)] = 45167, + [SMALL_STATE(1711)] = 45220, + [SMALL_STATE(1712)] = 45309, + [SMALL_STATE(1713)] = 45398, + [SMALL_STATE(1714)] = 45451, + [SMALL_STATE(1715)] = 45536, + [SMALL_STATE(1716)] = 45589, + [SMALL_STATE(1717)] = 45674, + [SMALL_STATE(1718)] = 45727, + [SMALL_STATE(1719)] = 45780, + [SMALL_STATE(1720)] = 45833, + [SMALL_STATE(1721)] = 45886, + [SMALL_STATE(1722)] = 45939, + [SMALL_STATE(1723)] = 46028, + [SMALL_STATE(1724)] = 46081, + [SMALL_STATE(1725)] = 46134, + [SMALL_STATE(1726)] = 46223, + [SMALL_STATE(1727)] = 46284, + [SMALL_STATE(1728)] = 46337, + [SMALL_STATE(1729)] = 46390, + [SMALL_STATE(1730)] = 46443, + [SMALL_STATE(1731)] = 46532, + [SMALL_STATE(1732)] = 46585, + [SMALL_STATE(1733)] = 46674, + [SMALL_STATE(1734)] = 46727, + [SMALL_STATE(1735)] = 46812, + [SMALL_STATE(1736)] = 46865, + [SMALL_STATE(1737)] = 46918, + [SMALL_STATE(1738)] = 47005, + [SMALL_STATE(1739)] = 47094, + [SMALL_STATE(1740)] = 47147, + [SMALL_STATE(1741)] = 47236, + [SMALL_STATE(1742)] = 47289, + [SMALL_STATE(1743)] = 47378, + [SMALL_STATE(1744)] = 47431, + [SMALL_STATE(1745)] = 47520, + [SMALL_STATE(1746)] = 47573, + [SMALL_STATE(1747)] = 47662, + [SMALL_STATE(1748)] = 47715, + [SMALL_STATE(1749)] = 47804, + [SMALL_STATE(1750)] = 47857, + [SMALL_STATE(1751)] = 47910, + [SMALL_STATE(1752)] = 47963, + [SMALL_STATE(1753)] = 48050, + [SMALL_STATE(1754)] = 48103, + [SMALL_STATE(1755)] = 48192, + [SMALL_STATE(1756)] = 48281, + [SMALL_STATE(1757)] = 48370, + [SMALL_STATE(1758)] = 48423, + [SMALL_STATE(1759)] = 48512, + [SMALL_STATE(1760)] = 48565, + [SMALL_STATE(1761)] = 48654, + [SMALL_STATE(1762)] = 48741, + [SMALL_STATE(1763)] = 48830, + [SMALL_STATE(1764)] = 48907, + [SMALL_STATE(1765)] = 48996, + [SMALL_STATE(1766)] = 49049, + [SMALL_STATE(1767)] = 49136, + [SMALL_STATE(1768)] = 49221, + [SMALL_STATE(1769)] = 49274, + [SMALL_STATE(1770)] = 49327, + [SMALL_STATE(1771)] = 49380, + [SMALL_STATE(1772)] = 49433, + [SMALL_STATE(1773)] = 49486, + [SMALL_STATE(1774)] = 49575, + [SMALL_STATE(1775)] = 49628, + [SMALL_STATE(1776)] = 49715, + [SMALL_STATE(1777)] = 49804, + [SMALL_STATE(1778)] = 49893, + [SMALL_STATE(1779)] = 49946, + [SMALL_STATE(1780)] = 49999, + [SMALL_STATE(1781)] = 50052, + [SMALL_STATE(1782)] = 50105, + [SMALL_STATE(1783)] = 50190, + [SMALL_STATE(1784)] = 50243, + [SMALL_STATE(1785)] = 50296, + [SMALL_STATE(1786)] = 50385, + [SMALL_STATE(1787)] = 50462, + [SMALL_STATE(1788)] = 50515, + [SMALL_STATE(1789)] = 50604, + [SMALL_STATE(1790)] = 50657, + [SMALL_STATE(1791)] = 50710, + [SMALL_STATE(1792)] = 50763, + [SMALL_STATE(1793)] = 50816, + [SMALL_STATE(1794)] = 50905, + [SMALL_STATE(1795)] = 50992, + [SMALL_STATE(1796)] = 51045, + [SMALL_STATE(1797)] = 51134, + [SMALL_STATE(1798)] = 51187, + [SMALL_STATE(1799)] = 51240, + [SMALL_STATE(1800)] = 51329, + [SMALL_STATE(1801)] = 51382, + [SMALL_STATE(1802)] = 51435, + [SMALL_STATE(1803)] = 51522, + [SMALL_STATE(1804)] = 51575, + [SMALL_STATE(1805)] = 51628, + [SMALL_STATE(1806)] = 51681, + [SMALL_STATE(1807)] = 51734, + [SMALL_STATE(1808)] = 51823, + [SMALL_STATE(1809)] = 51910, + [SMALL_STATE(1810)] = 51999, + [SMALL_STATE(1811)] = 52052, + [SMALL_STATE(1812)] = 52105, + [SMALL_STATE(1813)] = 52158, + [SMALL_STATE(1814)] = 52243, + [SMALL_STATE(1815)] = 52330, + [SMALL_STATE(1816)] = 52415, + [SMALL_STATE(1817)] = 52468, + [SMALL_STATE(1818)] = 52521, + [SMALL_STATE(1819)] = 52574, + [SMALL_STATE(1820)] = 52661, + [SMALL_STATE(1821)] = 52748, + [SMALL_STATE(1822)] = 52835, + [SMALL_STATE(1823)] = 52888, + [SMALL_STATE(1824)] = 52941, + [SMALL_STATE(1825)] = 52994, + [SMALL_STATE(1826)] = 53047, + [SMALL_STATE(1827)] = 53100, + [SMALL_STATE(1828)] = 53187, + [SMALL_STATE(1829)] = 53240, + [SMALL_STATE(1830)] = 53293, + [SMALL_STATE(1831)] = 53382, + [SMALL_STATE(1832)] = 53469, + [SMALL_STATE(1833)] = 53532, + [SMALL_STATE(1834)] = 53585, + [SMALL_STATE(1835)] = 53654, + [SMALL_STATE(1836)] = 53721, + [SMALL_STATE(1837)] = 53774, + [SMALL_STATE(1838)] = 53845, + [SMALL_STATE(1839)] = 53922, + [SMALL_STATE(1840)] = 53975, + [SMALL_STATE(1841)] = 54028, [SMALL_STATE(1842)] = 54107, - [SMALL_STATE(1843)] = 54196, - [SMALL_STATE(1844)] = 54285, - [SMALL_STATE(1845)] = 54374, - [SMALL_STATE(1846)] = 54463, - [SMALL_STATE(1847)] = 54552, - [SMALL_STATE(1848)] = 54641, - [SMALL_STATE(1849)] = 54730, - [SMALL_STATE(1850)] = 54819, - [SMALL_STATE(1851)] = 54908, - [SMALL_STATE(1852)] = 54997, - [SMALL_STATE(1853)] = 55086, - [SMALL_STATE(1854)] = 55175, - [SMALL_STATE(1855)] = 55264, - [SMALL_STATE(1856)] = 55351, - [SMALL_STATE(1857)] = 55404, - [SMALL_STATE(1858)] = 55457, - [SMALL_STATE(1859)] = 55510, - [SMALL_STATE(1860)] = 55563, - [SMALL_STATE(1861)] = 55616, - [SMALL_STATE(1862)] = 55669, - [SMALL_STATE(1863)] = 55754, - [SMALL_STATE(1864)] = 55835, - [SMALL_STATE(1865)] = 55921, - [SMALL_STATE(1866)] = 56007, - [SMALL_STATE(1867)] = 56091, - [SMALL_STATE(1868)] = 56175, - [SMALL_STATE(1869)] = 56261, - [SMALL_STATE(1870)] = 56347, - [SMALL_STATE(1871)] = 56421, - [SMALL_STATE(1872)] = 56507, - [SMALL_STATE(1873)] = 56593, - [SMALL_STATE(1874)] = 56679, - [SMALL_STATE(1875)] = 56765, - [SMALL_STATE(1876)] = 56851, - [SMALL_STATE(1877)] = 56937, - [SMALL_STATE(1878)] = 57023, - [SMALL_STATE(1879)] = 57097, - [SMALL_STATE(1880)] = 57183, - [SMALL_STATE(1881)] = 57269, - [SMALL_STATE(1882)] = 57355, - [SMALL_STATE(1883)] = 57441, - [SMALL_STATE(1884)] = 57527, - [SMALL_STATE(1885)] = 57613, - [SMALL_STATE(1886)] = 57699, - [SMALL_STATE(1887)] = 57785, - [SMALL_STATE(1888)] = 57871, - [SMALL_STATE(1889)] = 57957, - [SMALL_STATE(1890)] = 58043, - [SMALL_STATE(1891)] = 58129, - [SMALL_STATE(1892)] = 58203, - [SMALL_STATE(1893)] = 58289, - [SMALL_STATE(1894)] = 58363, - [SMALL_STATE(1895)] = 58449, - [SMALL_STATE(1896)] = 58535, - [SMALL_STATE(1897)] = 58621, - [SMALL_STATE(1898)] = 58707, - [SMALL_STATE(1899)] = 58781, - [SMALL_STATE(1900)] = 58867, - [SMALL_STATE(1901)] = 58953, - [SMALL_STATE(1902)] = 59028, - [SMALL_STATE(1903)] = 59103, - [SMALL_STATE(1904)] = 59178, - [SMALL_STATE(1905)] = 59253, - [SMALL_STATE(1906)] = 59328, - [SMALL_STATE(1907)] = 59403, - [SMALL_STATE(1908)] = 59478, - [SMALL_STATE(1909)] = 59553, - [SMALL_STATE(1910)] = 59600, - [SMALL_STATE(1911)] = 59647, - [SMALL_STATE(1912)] = 59694, - [SMALL_STATE(1913)] = 59756, - [SMALL_STATE(1914)] = 59818, - [SMALL_STATE(1915)] = 59880, - [SMALL_STATE(1916)] = 59942, - [SMALL_STATE(1917)] = 60004, - [SMALL_STATE(1918)] = 60066, - [SMALL_STATE(1919)] = 60128, - [SMALL_STATE(1920)] = 60190, - [SMALL_STATE(1921)] = 60249, - [SMALL_STATE(1922)] = 60308, - [SMALL_STATE(1923)] = 60356, - [SMALL_STATE(1924)] = 60392, - [SMALL_STATE(1925)] = 60428, - [SMALL_STATE(1926)] = 60465, - [SMALL_STATE(1927)] = 60510, - [SMALL_STATE(1928)] = 60555, - [SMALL_STATE(1929)] = 60592, - [SMALL_STATE(1930)] = 60637, - [SMALL_STATE(1931)] = 60674, - [SMALL_STATE(1932)] = 60727, - [SMALL_STATE(1933)] = 60764, - [SMALL_STATE(1934)] = 60804, - [SMALL_STATE(1935)] = 60840, - [SMALL_STATE(1936)] = 60880, - [SMALL_STATE(1937)] = 60920, - [SMALL_STATE(1938)] = 60956, - [SMALL_STATE(1939)] = 60996, - [SMALL_STATE(1940)] = 61032, - [SMALL_STATE(1941)] = 61068, - [SMALL_STATE(1942)] = 61101, - [SMALL_STATE(1943)] = 61134, - [SMALL_STATE(1944)] = 61167, - [SMALL_STATE(1945)] = 61200, - [SMALL_STATE(1946)] = 61233, - [SMALL_STATE(1947)] = 61266, - [SMALL_STATE(1948)] = 61299, - [SMALL_STATE(1949)] = 61330, - [SMALL_STATE(1950)] = 61363, - [SMALL_STATE(1951)] = 61423, - [SMALL_STATE(1952)] = 61467, - [SMALL_STATE(1953)] = 61499, - [SMALL_STATE(1954)] = 61531, - [SMALL_STATE(1955)] = 61591, - [SMALL_STATE(1956)] = 61623, - [SMALL_STATE(1957)] = 61669, - [SMALL_STATE(1958)] = 61702, - [SMALL_STATE(1959)] = 61731, - [SMALL_STATE(1960)] = 61762, - [SMALL_STATE(1961)] = 61793, - [SMALL_STATE(1962)] = 61824, - [SMALL_STATE(1963)] = 61857, - [SMALL_STATE(1964)] = 61898, - [SMALL_STATE(1965)] = 61927, - [SMALL_STATE(1966)] = 61958, - [SMALL_STATE(1967)] = 61991, - [SMALL_STATE(1968)] = 62044, - [SMALL_STATE(1969)] = 62099, - [SMALL_STATE(1970)] = 62128, - [SMALL_STATE(1971)] = 62161, - [SMALL_STATE(1972)] = 62190, - [SMALL_STATE(1973)] = 62221, - [SMALL_STATE(1974)] = 62250, - [SMALL_STATE(1975)] = 62303, - [SMALL_STATE(1976)] = 62334, - [SMALL_STATE(1977)] = 62363, - [SMALL_STATE(1978)] = 62392, - [SMALL_STATE(1979)] = 62425, - [SMALL_STATE(1980)] = 62454, - [SMALL_STATE(1981)] = 62487, - [SMALL_STATE(1982)] = 62518, - [SMALL_STATE(1983)] = 62549, - [SMALL_STATE(1984)] = 62592, - [SMALL_STATE(1985)] = 62621, - [SMALL_STATE(1986)] = 62649, - [SMALL_STATE(1987)] = 62677, - [SMALL_STATE(1988)] = 62705, - [SMALL_STATE(1989)] = 62735, - [SMALL_STATE(1990)] = 62763, - [SMALL_STATE(1991)] = 62807, - [SMALL_STATE(1992)] = 62835, - [SMALL_STATE(1993)] = 62863, - [SMALL_STATE(1994)] = 62891, - [SMALL_STATE(1995)] = 62919, - [SMALL_STATE(1996)] = 62947, - [SMALL_STATE(1997)] = 62975, - [SMALL_STATE(1998)] = 63003, - [SMALL_STATE(1999)] = 63031, - [SMALL_STATE(2000)] = 63059, - [SMALL_STATE(2001)] = 63087, - [SMALL_STATE(2002)] = 63115, - [SMALL_STATE(2003)] = 63143, - [SMALL_STATE(2004)] = 63171, - [SMALL_STATE(2005)] = 63199, - [SMALL_STATE(2006)] = 63227, - [SMALL_STATE(2007)] = 63255, - [SMALL_STATE(2008)] = 63283, - [SMALL_STATE(2009)] = 63311, - [SMALL_STATE(2010)] = 63339, - [SMALL_STATE(2011)] = 63367, - [SMALL_STATE(2012)] = 63395, - [SMALL_STATE(2013)] = 63423, - [SMALL_STATE(2014)] = 63453, - [SMALL_STATE(2015)] = 63481, - [SMALL_STATE(2016)] = 63509, - [SMALL_STATE(2017)] = 63537, - [SMALL_STATE(2018)] = 63572, - [SMALL_STATE(2019)] = 63623, - [SMALL_STATE(2020)] = 63652, - [SMALL_STATE(2021)] = 63681, - [SMALL_STATE(2022)] = 63712, - [SMALL_STATE(2023)] = 63744, - [SMALL_STATE(2024)] = 63776, - [SMALL_STATE(2025)] = 63808, - [SMALL_STATE(2026)] = 63838, - [SMALL_STATE(2027)] = 63870, - [SMALL_STATE(2028)] = 63902, - [SMALL_STATE(2029)] = 63934, - [SMALL_STATE(2030)] = 63966, - [SMALL_STATE(2031)] = 63998, - [SMALL_STATE(2032)] = 64030, - [SMALL_STATE(2033)] = 64074, - [SMALL_STATE(2034)] = 64106, - [SMALL_STATE(2035)] = 64134, - [SMALL_STATE(2036)] = 64166, - [SMALL_STATE(2037)] = 64198, - [SMALL_STATE(2038)] = 64226, - [SMALL_STATE(2039)] = 64271, - [SMALL_STATE(2040)] = 64316, - [SMALL_STATE(2041)] = 64361, - [SMALL_STATE(2042)] = 64406, - [SMALL_STATE(2043)] = 64443, - [SMALL_STATE(2044)] = 64488, - [SMALL_STATE(2045)] = 64533, - [SMALL_STATE(2046)] = 64578, - [SMALL_STATE(2047)] = 64623, - [SMALL_STATE(2048)] = 64668, - [SMALL_STATE(2049)] = 64713, - [SMALL_STATE(2050)] = 64758, - [SMALL_STATE(2051)] = 64803, - [SMALL_STATE(2052)] = 64848, - [SMALL_STATE(2053)] = 64893, - [SMALL_STATE(2054)] = 64938, - [SMALL_STATE(2055)] = 64976, - [SMALL_STATE(2056)] = 65014, - [SMALL_STATE(2057)] = 65042, - [SMALL_STATE(2058)] = 65072, - [SMALL_STATE(2059)] = 65106, - [SMALL_STATE(2060)] = 65148, - [SMALL_STATE(2061)] = 65176, - [SMALL_STATE(2062)] = 65218, - [SMALL_STATE(2063)] = 65256, - [SMALL_STATE(2064)] = 65296, - [SMALL_STATE(2065)] = 65320, - [SMALL_STATE(2066)] = 65344, - [SMALL_STATE(2067)] = 65372, - [SMALL_STATE(2068)] = 65400, - [SMALL_STATE(2069)] = 65428, - [SMALL_STATE(2070)] = 65456, - [SMALL_STATE(2071)] = 65498, - [SMALL_STATE(2072)] = 65540, - [SMALL_STATE(2073)] = 65570, - [SMALL_STATE(2074)] = 65612, - [SMALL_STATE(2075)] = 65640, - [SMALL_STATE(2076)] = 65682, - [SMALL_STATE(2077)] = 65710, - [SMALL_STATE(2078)] = 65752, - [SMALL_STATE(2079)] = 65776, - [SMALL_STATE(2080)] = 65804, - [SMALL_STATE(2081)] = 65832, - [SMALL_STATE(2082)] = 65866, - [SMALL_STATE(2083)] = 65906, - [SMALL_STATE(2084)] = 65934, - [SMALL_STATE(2085)] = 65972, - [SMALL_STATE(2086)] = 66012, - [SMALL_STATE(2087)] = 66050, - [SMALL_STATE(2088)] = 66074, - [SMALL_STATE(2089)] = 66104, - [SMALL_STATE(2090)] = 66134, - [SMALL_STATE(2091)] = 66172, - [SMALL_STATE(2092)] = 66210, - [SMALL_STATE(2093)] = 66248, - [SMALL_STATE(2094)] = 66272, - [SMALL_STATE(2095)] = 66310, - [SMALL_STATE(2096)] = 66338, - [SMALL_STATE(2097)] = 66361, - [SMALL_STATE(2098)] = 66392, - [SMALL_STATE(2099)] = 66415, - [SMALL_STATE(2100)] = 66438, - [SMALL_STATE(2101)] = 66461, - [SMALL_STATE(2102)] = 66484, - [SMALL_STATE(2103)] = 66507, - [SMALL_STATE(2104)] = 66530, - [SMALL_STATE(2105)] = 66553, - [SMALL_STATE(2106)] = 66576, - [SMALL_STATE(2107)] = 66599, - [SMALL_STATE(2108)] = 66622, - [SMALL_STATE(2109)] = 66645, - [SMALL_STATE(2110)] = 66682, - [SMALL_STATE(2111)] = 66713, - [SMALL_STATE(2112)] = 66736, - [SMALL_STATE(2113)] = 66767, - [SMALL_STATE(2114)] = 66790, - [SMALL_STATE(2115)] = 66813, - [SMALL_STATE(2116)] = 66836, - [SMALL_STATE(2117)] = 66859, - [SMALL_STATE(2118)] = 66896, - [SMALL_STATE(2119)] = 66929, - [SMALL_STATE(2120)] = 66952, - [SMALL_STATE(2121)] = 66975, - [SMALL_STATE(2122)] = 66998, - [SMALL_STATE(2123)] = 67021, - [SMALL_STATE(2124)] = 67058, - [SMALL_STATE(2125)] = 67081, - [SMALL_STATE(2126)] = 67116, - [SMALL_STATE(2127)] = 67139, - [SMALL_STATE(2128)] = 67170, - [SMALL_STATE(2129)] = 67193, - [SMALL_STATE(2130)] = 67216, - [SMALL_STATE(2131)] = 67257, - [SMALL_STATE(2132)] = 67280, - [SMALL_STATE(2133)] = 67315, - [SMALL_STATE(2134)] = 67356, - [SMALL_STATE(2135)] = 67379, - [SMALL_STATE(2136)] = 67402, - [SMALL_STATE(2137)] = 67425, - [SMALL_STATE(2138)] = 67448, - [SMALL_STATE(2139)] = 67485, - [SMALL_STATE(2140)] = 67520, - [SMALL_STATE(2141)] = 67543, - [SMALL_STATE(2142)] = 67584, - [SMALL_STATE(2143)] = 67607, - [SMALL_STATE(2144)] = 67630, - [SMALL_STATE(2145)] = 67653, - [SMALL_STATE(2146)] = 67676, - [SMALL_STATE(2147)] = 67717, - [SMALL_STATE(2148)] = 67740, - [SMALL_STATE(2149)] = 67778, - [SMALL_STATE(2150)] = 67804, - [SMALL_STATE(2151)] = 67842, - [SMALL_STATE(2152)] = 67874, - [SMALL_STATE(2153)] = 67906, - [SMALL_STATE(2154)] = 67938, - [SMALL_STATE(2155)] = 67962, - [SMALL_STATE(2156)] = 67994, - [SMALL_STATE(2157)] = 68028, - [SMALL_STATE(2158)] = 68066, - [SMALL_STATE(2159)] = 68090, - [SMALL_STATE(2160)] = 68114, - [SMALL_STATE(2161)] = 68142, - [SMALL_STATE(2162)] = 68166, - [SMALL_STATE(2163)] = 68190, - [SMALL_STATE(2164)] = 68224, - [SMALL_STATE(2165)] = 68252, - [SMALL_STATE(2166)] = 68280, - [SMALL_STATE(2167)] = 68306, - [SMALL_STATE(2168)] = 68338, - [SMALL_STATE(2169)] = 68370, - [SMALL_STATE(2170)] = 68396, - [SMALL_STATE(2171)] = 68424, - [SMALL_STATE(2172)] = 68450, - [SMALL_STATE(2173)] = 68488, - [SMALL_STATE(2174)] = 68516, - [SMALL_STATE(2175)] = 68554, - [SMALL_STATE(2176)] = 68586, - [SMALL_STATE(2177)] = 68624, - [SMALL_STATE(2178)] = 68656, - [SMALL_STATE(2179)] = 68694, - [SMALL_STATE(2180)] = 68732, - [SMALL_STATE(2181)] = 68770, - [SMALL_STATE(2182)] = 68798, - [SMALL_STATE(2183)] = 68836, - [SMALL_STATE(2184)] = 68874, - [SMALL_STATE(2185)] = 68902, - [SMALL_STATE(2186)] = 68940, - [SMALL_STATE(2187)] = 68972, - [SMALL_STATE(2188)] = 69010, - [SMALL_STATE(2189)] = 69046, - [SMALL_STATE(2190)] = 69084, - [SMALL_STATE(2191)] = 69122, - [SMALL_STATE(2192)] = 69154, - [SMALL_STATE(2193)] = 69186, - [SMALL_STATE(2194)] = 69218, - [SMALL_STATE(2195)] = 69250, - [SMALL_STATE(2196)] = 69288, - [SMALL_STATE(2197)] = 69323, - [SMALL_STATE(2198)] = 69358, - [SMALL_STATE(2199)] = 69393, - [SMALL_STATE(2200)] = 69414, - [SMALL_STATE(2201)] = 69449, - [SMALL_STATE(2202)] = 69484, - [SMALL_STATE(2203)] = 69519, - [SMALL_STATE(2204)] = 69554, - [SMALL_STATE(2205)] = 69589, - [SMALL_STATE(2206)] = 69624, - [SMALL_STATE(2207)] = 69657, - [SMALL_STATE(2208)] = 69692, - [SMALL_STATE(2209)] = 69727, - [SMALL_STATE(2210)] = 69760, - [SMALL_STATE(2211)] = 69793, - [SMALL_STATE(2212)] = 69828, - [SMALL_STATE(2213)] = 69863, - [SMALL_STATE(2214)] = 69898, - [SMALL_STATE(2215)] = 69933, - [SMALL_STATE(2216)] = 69968, - [SMALL_STATE(2217)] = 70003, - [SMALL_STATE(2218)] = 70038, - [SMALL_STATE(2219)] = 70073, - [SMALL_STATE(2220)] = 70094, - [SMALL_STATE(2221)] = 70115, - [SMALL_STATE(2222)] = 70150, - [SMALL_STATE(2223)] = 70185, - [SMALL_STATE(2224)] = 70220, - [SMALL_STATE(2225)] = 70241, - [SMALL_STATE(2226)] = 70276, - [SMALL_STATE(2227)] = 70311, - [SMALL_STATE(2228)] = 70332, - [SMALL_STATE(2229)] = 70353, - [SMALL_STATE(2230)] = 70388, - [SMALL_STATE(2231)] = 70423, - [SMALL_STATE(2232)] = 70458, - [SMALL_STATE(2233)] = 70493, - [SMALL_STATE(2234)] = 70518, - [SMALL_STATE(2235)] = 70553, - [SMALL_STATE(2236)] = 70588, - [SMALL_STATE(2237)] = 70613, - [SMALL_STATE(2238)] = 70648, - [SMALL_STATE(2239)] = 70673, - [SMALL_STATE(2240)] = 70702, - [SMALL_STATE(2241)] = 70737, - [SMALL_STATE(2242)] = 70772, - [SMALL_STATE(2243)] = 70805, - [SMALL_STATE(2244)] = 70840, - [SMALL_STATE(2245)] = 70875, - [SMALL_STATE(2246)] = 70902, - [SMALL_STATE(2247)] = 70937, - [SMALL_STATE(2248)] = 70970, - [SMALL_STATE(2249)] = 71005, - [SMALL_STATE(2250)] = 71040, - [SMALL_STATE(2251)] = 71075, - [SMALL_STATE(2252)] = 71110, - [SMALL_STATE(2253)] = 71140, - [SMALL_STATE(2254)] = 71172, - [SMALL_STATE(2255)] = 71204, - [SMALL_STATE(2256)] = 71236, - [SMALL_STATE(2257)] = 71258, - [SMALL_STATE(2258)] = 71290, - [SMALL_STATE(2259)] = 71312, - [SMALL_STATE(2260)] = 71344, - [SMALL_STATE(2261)] = 71376, - [SMALL_STATE(2262)] = 71408, - [SMALL_STATE(2263)] = 71438, - [SMALL_STATE(2264)] = 71468, - [SMALL_STATE(2265)] = 71500, - [SMALL_STATE(2266)] = 71522, - [SMALL_STATE(2267)] = 71552, - [SMALL_STATE(2268)] = 71584, - [SMALL_STATE(2269)] = 71616, - [SMALL_STATE(2270)] = 71646, - [SMALL_STATE(2271)] = 71674, - [SMALL_STATE(2272)] = 71706, - [SMALL_STATE(2273)] = 71738, - [SMALL_STATE(2274)] = 71770, - [SMALL_STATE(2275)] = 71802, - [SMALL_STATE(2276)] = 71834, - [SMALL_STATE(2277)] = 71866, - [SMALL_STATE(2278)] = 71898, - [SMALL_STATE(2279)] = 71930, - [SMALL_STATE(2280)] = 71960, - [SMALL_STATE(2281)] = 71988, - [SMALL_STATE(2282)] = 72020, - [SMALL_STATE(2283)] = 72052, - [SMALL_STATE(2284)] = 72084, - [SMALL_STATE(2285)] = 72116, - [SMALL_STATE(2286)] = 72144, - [SMALL_STATE(2287)] = 72170, - [SMALL_STATE(2288)] = 72196, - [SMALL_STATE(2289)] = 72218, - [SMALL_STATE(2290)] = 72246, - [SMALL_STATE(2291)] = 72276, - [SMALL_STATE(2292)] = 72306, - [SMALL_STATE(2293)] = 72338, - [SMALL_STATE(2294)] = 72370, - [SMALL_STATE(2295)] = 72402, - [SMALL_STATE(2296)] = 72434, - [SMALL_STATE(2297)] = 72466, - [SMALL_STATE(2298)] = 72498, - [SMALL_STATE(2299)] = 72530, - [SMALL_STATE(2300)] = 72558, - [SMALL_STATE(2301)] = 72584, - [SMALL_STATE(2302)] = 72616, - [SMALL_STATE(2303)] = 72646, - [SMALL_STATE(2304)] = 72678, - [SMALL_STATE(2305)] = 72700, - [SMALL_STATE(2306)] = 72732, - [SMALL_STATE(2307)] = 72764, - [SMALL_STATE(2308)] = 72790, - [SMALL_STATE(2309)] = 72812, - [SMALL_STATE(2310)] = 72842, - [SMALL_STATE(2311)] = 72871, - [SMALL_STATE(2312)] = 72900, - [SMALL_STATE(2313)] = 72929, - [SMALL_STATE(2314)] = 72958, - [SMALL_STATE(2315)] = 72987, - [SMALL_STATE(2316)] = 73010, - [SMALL_STATE(2317)] = 73039, - [SMALL_STATE(2318)] = 73068, - [SMALL_STATE(2319)] = 73097, - [SMALL_STATE(2320)] = 73126, - [SMALL_STATE(2321)] = 73155, - [SMALL_STATE(2322)] = 73176, - [SMALL_STATE(2323)] = 73205, - [SMALL_STATE(2324)] = 73234, - [SMALL_STATE(2325)] = 73263, - [SMALL_STATE(2326)] = 73292, - [SMALL_STATE(2327)] = 73321, - [SMALL_STATE(2328)] = 73350, - [SMALL_STATE(2329)] = 73379, - [SMALL_STATE(2330)] = 73402, - [SMALL_STATE(2331)] = 73425, - [SMALL_STATE(2332)] = 73454, - [SMALL_STATE(2333)] = 73483, - [SMALL_STATE(2334)] = 73506, - [SMALL_STATE(2335)] = 73533, - [SMALL_STATE(2336)] = 73560, - [SMALL_STATE(2337)] = 73583, - [SMALL_STATE(2338)] = 73612, - [SMALL_STATE(2339)] = 73641, - [SMALL_STATE(2340)] = 73670, - [SMALL_STATE(2341)] = 73699, - [SMALL_STATE(2342)] = 73728, - [SMALL_STATE(2343)] = 73755, - [SMALL_STATE(2344)] = 73784, - [SMALL_STATE(2345)] = 73813, - [SMALL_STATE(2346)] = 73842, - [SMALL_STATE(2347)] = 73871, - [SMALL_STATE(2348)] = 73890, - [SMALL_STATE(2349)] = 73919, - [SMALL_STATE(2350)] = 73946, - [SMALL_STATE(2351)] = 73975, - [SMALL_STATE(2352)] = 74004, - [SMALL_STATE(2353)] = 74033, - [SMALL_STATE(2354)] = 74062, - [SMALL_STATE(2355)] = 74091, - [SMALL_STATE(2356)] = 74120, - [SMALL_STATE(2357)] = 74149, - [SMALL_STATE(2358)] = 74178, - [SMALL_STATE(2359)] = 74201, - [SMALL_STATE(2360)] = 74230, - [SMALL_STATE(2361)] = 74259, - [SMALL_STATE(2362)] = 74288, - [SMALL_STATE(2363)] = 74309, - [SMALL_STATE(2364)] = 74338, - [SMALL_STATE(2365)] = 74359, - [SMALL_STATE(2366)] = 74388, - [SMALL_STATE(2367)] = 74411, - [SMALL_STATE(2368)] = 74434, - [SMALL_STATE(2369)] = 74463, - [SMALL_STATE(2370)] = 74492, - [SMALL_STATE(2371)] = 74521, - [SMALL_STATE(2372)] = 74550, - [SMALL_STATE(2373)] = 74571, - [SMALL_STATE(2374)] = 74600, - [SMALL_STATE(2375)] = 74629, - [SMALL_STATE(2376)] = 74658, - [SMALL_STATE(2377)] = 74687, - [SMALL_STATE(2378)] = 74712, - [SMALL_STATE(2379)] = 74739, - [SMALL_STATE(2380)] = 74768, - [SMALL_STATE(2381)] = 74797, - [SMALL_STATE(2382)] = 74822, - [SMALL_STATE(2383)] = 74851, - [SMALL_STATE(2384)] = 74880, - [SMALL_STATE(2385)] = 74905, - [SMALL_STATE(2386)] = 74934, - [SMALL_STATE(2387)] = 74963, - [SMALL_STATE(2388)] = 74982, - [SMALL_STATE(2389)] = 75011, - [SMALL_STATE(2390)] = 75032, - [SMALL_STATE(2391)] = 75061, - [SMALL_STATE(2392)] = 75082, - [SMALL_STATE(2393)] = 75103, - [SMALL_STATE(2394)] = 75124, - [SMALL_STATE(2395)] = 75153, - [SMALL_STATE(2396)] = 75180, - [SMALL_STATE(2397)] = 75209, - [SMALL_STATE(2398)] = 75232, - [SMALL_STATE(2399)] = 75255, - [SMALL_STATE(2400)] = 75284, - [SMALL_STATE(2401)] = 75307, - [SMALL_STATE(2402)] = 75336, - [SMALL_STATE(2403)] = 75359, - [SMALL_STATE(2404)] = 75388, - [SMALL_STATE(2405)] = 75411, - [SMALL_STATE(2406)] = 75434, - [SMALL_STATE(2407)] = 75459, - [SMALL_STATE(2408)] = 75488, - [SMALL_STATE(2409)] = 75517, - [SMALL_STATE(2410)] = 75543, - [SMALL_STATE(2411)] = 75563, - [SMALL_STATE(2412)] = 75589, - [SMALL_STATE(2413)] = 75615, - [SMALL_STATE(2414)] = 75641, - [SMALL_STATE(2415)] = 75665, - [SMALL_STATE(2416)] = 75691, - [SMALL_STATE(2417)] = 75717, - [SMALL_STATE(2418)] = 75743, - [SMALL_STATE(2419)] = 75769, - [SMALL_STATE(2420)] = 75795, - [SMALL_STATE(2421)] = 75819, - [SMALL_STATE(2422)] = 75845, - [SMALL_STATE(2423)] = 75871, - [SMALL_STATE(2424)] = 75897, - [SMALL_STATE(2425)] = 75923, - [SMALL_STATE(2426)] = 75949, - [SMALL_STATE(2427)] = 75973, - [SMALL_STATE(2428)] = 75999, - [SMALL_STATE(2429)] = 76025, - [SMALL_STATE(2430)] = 76049, - [SMALL_STATE(2431)] = 76071, - [SMALL_STATE(2432)] = 76097, - [SMALL_STATE(2433)] = 76115, - [SMALL_STATE(2434)] = 76139, - [SMALL_STATE(2435)] = 76165, - [SMALL_STATE(2436)] = 76187, - [SMALL_STATE(2437)] = 76213, - [SMALL_STATE(2438)] = 76239, - [SMALL_STATE(2439)] = 76265, - [SMALL_STATE(2440)] = 76289, - [SMALL_STATE(2441)] = 76311, - [SMALL_STATE(2442)] = 76337, - [SMALL_STATE(2443)] = 76363, - [SMALL_STATE(2444)] = 76389, - [SMALL_STATE(2445)] = 76413, - [SMALL_STATE(2446)] = 76431, - [SMALL_STATE(2447)] = 76453, - [SMALL_STATE(2448)] = 76475, - [SMALL_STATE(2449)] = 76501, - [SMALL_STATE(2450)] = 76527, - [SMALL_STATE(2451)] = 76553, - [SMALL_STATE(2452)] = 76579, - [SMALL_STATE(2453)] = 76597, - [SMALL_STATE(2454)] = 76615, - [SMALL_STATE(2455)] = 76641, - [SMALL_STATE(2456)] = 76667, - [SMALL_STATE(2457)] = 76693, - [SMALL_STATE(2458)] = 76719, - [SMALL_STATE(2459)] = 76745, - [SMALL_STATE(2460)] = 76771, - [SMALL_STATE(2461)] = 76789, - [SMALL_STATE(2462)] = 76815, - [SMALL_STATE(2463)] = 76833, - [SMALL_STATE(2464)] = 76851, - [SMALL_STATE(2465)] = 76869, - [SMALL_STATE(2466)] = 76895, - [SMALL_STATE(2467)] = 76921, - [SMALL_STATE(2468)] = 76939, - [SMALL_STATE(2469)] = 76957, - [SMALL_STATE(2470)] = 76975, - [SMALL_STATE(2471)] = 77001, - [SMALL_STATE(2472)] = 77019, - [SMALL_STATE(2473)] = 77045, - [SMALL_STATE(2474)] = 77063, - [SMALL_STATE(2475)] = 77081, - [SMALL_STATE(2476)] = 77105, - [SMALL_STATE(2477)] = 77129, - [SMALL_STATE(2478)] = 77151, - [SMALL_STATE(2479)] = 77177, - [SMALL_STATE(2480)] = 77195, - [SMALL_STATE(2481)] = 77213, - [SMALL_STATE(2482)] = 77239, - [SMALL_STATE(2483)] = 77257, - [SMALL_STATE(2484)] = 77275, - [SMALL_STATE(2485)] = 77301, - [SMALL_STATE(2486)] = 77327, - [SMALL_STATE(2487)] = 77353, - [SMALL_STATE(2488)] = 77379, - [SMALL_STATE(2489)] = 77399, - [SMALL_STATE(2490)] = 77421, - [SMALL_STATE(2491)] = 77447, - [SMALL_STATE(2492)] = 77467, - [SMALL_STATE(2493)] = 77489, - [SMALL_STATE(2494)] = 77515, - [SMALL_STATE(2495)] = 77541, - [SMALL_STATE(2496)] = 77565, - [SMALL_STATE(2497)] = 77583, - [SMALL_STATE(2498)] = 77601, - [SMALL_STATE(2499)] = 77619, - [SMALL_STATE(2500)] = 77643, - [SMALL_STATE(2501)] = 77665, - [SMALL_STATE(2502)] = 77689, - [SMALL_STATE(2503)] = 77713, - [SMALL_STATE(2504)] = 77739, - [SMALL_STATE(2505)] = 77761, - [SMALL_STATE(2506)] = 77779, - [SMALL_STATE(2507)] = 77797, - [SMALL_STATE(2508)] = 77823, - [SMALL_STATE(2509)] = 77841, - [SMALL_STATE(2510)] = 77865, - [SMALL_STATE(2511)] = 77889, - [SMALL_STATE(2512)] = 77915, - [SMALL_STATE(2513)] = 77941, - [SMALL_STATE(2514)] = 77959, - [SMALL_STATE(2515)] = 77982, - [SMALL_STATE(2516)] = 78003, - [SMALL_STATE(2517)] = 78024, - [SMALL_STATE(2518)] = 78047, - [SMALL_STATE(2519)] = 78066, - [SMALL_STATE(2520)] = 78089, - [SMALL_STATE(2521)] = 78110, - [SMALL_STATE(2522)] = 78133, - [SMALL_STATE(2523)] = 78156, - [SMALL_STATE(2524)] = 78179, - [SMALL_STATE(2525)] = 78200, - [SMALL_STATE(2526)] = 78223, - [SMALL_STATE(2527)] = 78246, - [SMALL_STATE(2528)] = 78269, - [SMALL_STATE(2529)] = 78290, - [SMALL_STATE(2530)] = 78311, - [SMALL_STATE(2531)] = 78330, - [SMALL_STATE(2532)] = 78353, - [SMALL_STATE(2533)] = 78372, - [SMALL_STATE(2534)] = 78389, - [SMALL_STATE(2535)] = 78412, - [SMALL_STATE(2536)] = 78435, - [SMALL_STATE(2537)] = 78458, - [SMALL_STATE(2538)] = 78479, - [SMALL_STATE(2539)] = 78500, - [SMALL_STATE(2540)] = 78523, - [SMALL_STATE(2541)] = 78546, - [SMALL_STATE(2542)] = 78569, - [SMALL_STATE(2543)] = 78592, - [SMALL_STATE(2544)] = 78615, - [SMALL_STATE(2545)] = 78638, - [SMALL_STATE(2546)] = 78661, - [SMALL_STATE(2547)] = 78682, - [SMALL_STATE(2548)] = 78705, - [SMALL_STATE(2549)] = 78728, - [SMALL_STATE(2550)] = 78751, - [SMALL_STATE(2551)] = 78774, - [SMALL_STATE(2552)] = 78797, - [SMALL_STATE(2553)] = 78820, - [SMALL_STATE(2554)] = 78843, - [SMALL_STATE(2555)] = 78866, - [SMALL_STATE(2556)] = 78889, - [SMALL_STATE(2557)] = 78912, - [SMALL_STATE(2558)] = 78935, - [SMALL_STATE(2559)] = 78958, - [SMALL_STATE(2560)] = 78981, - [SMALL_STATE(2561)] = 79004, - [SMALL_STATE(2562)] = 79027, - [SMALL_STATE(2563)] = 79050, - [SMALL_STATE(2564)] = 79073, - [SMALL_STATE(2565)] = 79094, - [SMALL_STATE(2566)] = 79117, - [SMALL_STATE(2567)] = 79140, - [SMALL_STATE(2568)] = 79163, - [SMALL_STATE(2569)] = 79186, - [SMALL_STATE(2570)] = 79209, - [SMALL_STATE(2571)] = 79232, - [SMALL_STATE(2572)] = 79255, - [SMALL_STATE(2573)] = 79276, - [SMALL_STATE(2574)] = 79299, - [SMALL_STATE(2575)] = 79322, - [SMALL_STATE(2576)] = 79345, - [SMALL_STATE(2577)] = 79368, - [SMALL_STATE(2578)] = 79391, - [SMALL_STATE(2579)] = 79410, - [SMALL_STATE(2580)] = 79433, - [SMALL_STATE(2581)] = 79450, - [SMALL_STATE(2582)] = 79473, - [SMALL_STATE(2583)] = 79496, - [SMALL_STATE(2584)] = 79519, - [SMALL_STATE(2585)] = 79542, - [SMALL_STATE(2586)] = 79565, - [SMALL_STATE(2587)] = 79588, - [SMALL_STATE(2588)] = 79611, - [SMALL_STATE(2589)] = 79634, - [SMALL_STATE(2590)] = 79657, - [SMALL_STATE(2591)] = 79680, - [SMALL_STATE(2592)] = 79703, - [SMALL_STATE(2593)] = 79726, - [SMALL_STATE(2594)] = 79749, - [SMALL_STATE(2595)] = 79768, - [SMALL_STATE(2596)] = 79787, - [SMALL_STATE(2597)] = 79810, - [SMALL_STATE(2598)] = 79833, - [SMALL_STATE(2599)] = 79854, - [SMALL_STATE(2600)] = 79877, - [SMALL_STATE(2601)] = 79900, - [SMALL_STATE(2602)] = 79923, - [SMALL_STATE(2603)] = 79946, - [SMALL_STATE(2604)] = 79969, - [SMALL_STATE(2605)] = 79992, - [SMALL_STATE(2606)] = 80015, - [SMALL_STATE(2607)] = 80036, - [SMALL_STATE(2608)] = 80059, - [SMALL_STATE(2609)] = 80082, - [SMALL_STATE(2610)] = 80105, - [SMALL_STATE(2611)] = 80128, - [SMALL_STATE(2612)] = 80151, - [SMALL_STATE(2613)] = 80170, - [SMALL_STATE(2614)] = 80193, - [SMALL_STATE(2615)] = 80212, - [SMALL_STATE(2616)] = 80235, - [SMALL_STATE(2617)] = 80258, - [SMALL_STATE(2618)] = 80281, - [SMALL_STATE(2619)] = 80304, - [SMALL_STATE(2620)] = 80325, - [SMALL_STATE(2621)] = 80348, - [SMALL_STATE(2622)] = 80371, - [SMALL_STATE(2623)] = 80394, - [SMALL_STATE(2624)] = 80415, - [SMALL_STATE(2625)] = 80438, - [SMALL_STATE(2626)] = 80461, - [SMALL_STATE(2627)] = 80484, - [SMALL_STATE(2628)] = 80507, - [SMALL_STATE(2629)] = 80526, - [SMALL_STATE(2630)] = 80549, - [SMALL_STATE(2631)] = 80570, - [SMALL_STATE(2632)] = 80591, - [SMALL_STATE(2633)] = 80610, - [SMALL_STATE(2634)] = 80633, - [SMALL_STATE(2635)] = 80656, - [SMALL_STATE(2636)] = 80677, - [SMALL_STATE(2637)] = 80694, - [SMALL_STATE(2638)] = 80717, - [SMALL_STATE(2639)] = 80736, - [SMALL_STATE(2640)] = 80759, - [SMALL_STATE(2641)] = 80782, - [SMALL_STATE(2642)] = 80801, - [SMALL_STATE(2643)] = 80824, - [SMALL_STATE(2644)] = 80847, - [SMALL_STATE(2645)] = 80870, - [SMALL_STATE(2646)] = 80893, - [SMALL_STATE(2647)] = 80916, - [SMALL_STATE(2648)] = 80939, - [SMALL_STATE(2649)] = 80962, - [SMALL_STATE(2650)] = 80985, - [SMALL_STATE(2651)] = 81008, - [SMALL_STATE(2652)] = 81031, - [SMALL_STATE(2653)] = 81054, - [SMALL_STATE(2654)] = 81071, - [SMALL_STATE(2655)] = 81094, - [SMALL_STATE(2656)] = 81117, - [SMALL_STATE(2657)] = 81140, - [SMALL_STATE(2658)] = 81161, - [SMALL_STATE(2659)] = 81184, - [SMALL_STATE(2660)] = 81207, - [SMALL_STATE(2661)] = 81230, - [SMALL_STATE(2662)] = 81249, - [SMALL_STATE(2663)] = 81268, - [SMALL_STATE(2664)] = 81291, - [SMALL_STATE(2665)] = 81308, - [SMALL_STATE(2666)] = 81329, - [SMALL_STATE(2667)] = 81352, - [SMALL_STATE(2668)] = 81373, - [SMALL_STATE(2669)] = 81396, - [SMALL_STATE(2670)] = 81419, - [SMALL_STATE(2671)] = 81442, - [SMALL_STATE(2672)] = 81465, - [SMALL_STATE(2673)] = 81488, - [SMALL_STATE(2674)] = 81507, - [SMALL_STATE(2675)] = 81530, - [SMALL_STATE(2676)] = 81547, - [SMALL_STATE(2677)] = 81570, - [SMALL_STATE(2678)] = 81593, - [SMALL_STATE(2679)] = 81616, - [SMALL_STATE(2680)] = 81639, - [SMALL_STATE(2681)] = 81662, - [SMALL_STATE(2682)] = 81685, - [SMALL_STATE(2683)] = 81708, - [SMALL_STATE(2684)] = 81727, - [SMALL_STATE(2685)] = 81750, - [SMALL_STATE(2686)] = 81769, - [SMALL_STATE(2687)] = 81792, - [SMALL_STATE(2688)] = 81815, - [SMALL_STATE(2689)] = 81838, - [SMALL_STATE(2690)] = 81857, - [SMALL_STATE(2691)] = 81876, - [SMALL_STATE(2692)] = 81895, - [SMALL_STATE(2693)] = 81918, - [SMALL_STATE(2694)] = 81941, - [SMALL_STATE(2695)] = 81964, - [SMALL_STATE(2696)] = 81987, - [SMALL_STATE(2697)] = 82010, - [SMALL_STATE(2698)] = 82033, - [SMALL_STATE(2699)] = 82056, - [SMALL_STATE(2700)] = 82075, - [SMALL_STATE(2701)] = 82098, - [SMALL_STATE(2702)] = 82121, - [SMALL_STATE(2703)] = 82142, - [SMALL_STATE(2704)] = 82165, - [SMALL_STATE(2705)] = 82188, - [SMALL_STATE(2706)] = 82211, - [SMALL_STATE(2707)] = 82230, - [SMALL_STATE(2708)] = 82253, - [SMALL_STATE(2709)] = 82276, - [SMALL_STATE(2710)] = 82295, - [SMALL_STATE(2711)] = 82318, - [SMALL_STATE(2712)] = 82341, - [SMALL_STATE(2713)] = 82360, - [SMALL_STATE(2714)] = 82381, - [SMALL_STATE(2715)] = 82404, - [SMALL_STATE(2716)] = 82427, - [SMALL_STATE(2717)] = 82450, - [SMALL_STATE(2718)] = 82471, - [SMALL_STATE(2719)] = 82490, - [SMALL_STATE(2720)] = 82511, - [SMALL_STATE(2721)] = 82534, - [SMALL_STATE(2722)] = 82555, - [SMALL_STATE(2723)] = 82576, - [SMALL_STATE(2724)] = 82599, - [SMALL_STATE(2725)] = 82622, - [SMALL_STATE(2726)] = 82639, - [SMALL_STATE(2727)] = 82656, - [SMALL_STATE(2728)] = 82679, - [SMALL_STATE(2729)] = 82702, - [SMALL_STATE(2730)] = 82723, - [SMALL_STATE(2731)] = 82746, - [SMALL_STATE(2732)] = 82769, - [SMALL_STATE(2733)] = 82792, - [SMALL_STATE(2734)] = 82815, - [SMALL_STATE(2735)] = 82834, - [SMALL_STATE(2736)] = 82853, - [SMALL_STATE(2737)] = 82876, - [SMALL_STATE(2738)] = 82899, - [SMALL_STATE(2739)] = 82922, - [SMALL_STATE(2740)] = 82945, - [SMALL_STATE(2741)] = 82968, - [SMALL_STATE(2742)] = 82991, - [SMALL_STATE(2743)] = 83014, - [SMALL_STATE(2744)] = 83037, - [SMALL_STATE(2745)] = 83060, - [SMALL_STATE(2746)] = 83083, - [SMALL_STATE(2747)] = 83106, - [SMALL_STATE(2748)] = 83129, - [SMALL_STATE(2749)] = 83152, - [SMALL_STATE(2750)] = 83175, - [SMALL_STATE(2751)] = 83198, - [SMALL_STATE(2752)] = 83221, - [SMALL_STATE(2753)] = 83244, - [SMALL_STATE(2754)] = 83263, - [SMALL_STATE(2755)] = 83286, - [SMALL_STATE(2756)] = 83309, - [SMALL_STATE(2757)] = 83332, - [SMALL_STATE(2758)] = 83348, - [SMALL_STATE(2759)] = 83368, - [SMALL_STATE(2760)] = 83388, - [SMALL_STATE(2761)] = 83408, - [SMALL_STATE(2762)] = 83428, - [SMALL_STATE(2763)] = 83448, - [SMALL_STATE(2764)] = 83464, - [SMALL_STATE(2765)] = 83484, - [SMALL_STATE(2766)] = 83500, - [SMALL_STATE(2767)] = 83520, - [SMALL_STATE(2768)] = 83538, - [SMALL_STATE(2769)] = 83558, - [SMALL_STATE(2770)] = 83576, - [SMALL_STATE(2771)] = 83592, - [SMALL_STATE(2772)] = 83612, - [SMALL_STATE(2773)] = 83628, - [SMALL_STATE(2774)] = 83648, - [SMALL_STATE(2775)] = 83668, - [SMALL_STATE(2776)] = 83688, - [SMALL_STATE(2777)] = 83708, - [SMALL_STATE(2778)] = 83728, - [SMALL_STATE(2779)] = 83744, - [SMALL_STATE(2780)] = 83764, - [SMALL_STATE(2781)] = 83784, - [SMALL_STATE(2782)] = 83802, - [SMALL_STATE(2783)] = 83822, - [SMALL_STATE(2784)] = 83840, - [SMALL_STATE(2785)] = 83860, - [SMALL_STATE(2786)] = 83876, - [SMALL_STATE(2787)] = 83892, - [SMALL_STATE(2788)] = 83912, - [SMALL_STATE(2789)] = 83930, - [SMALL_STATE(2790)] = 83950, - [SMALL_STATE(2791)] = 83970, - [SMALL_STATE(2792)] = 83986, - [SMALL_STATE(2793)] = 84002, - [SMALL_STATE(2794)] = 84022, - [SMALL_STATE(2795)] = 84038, - [SMALL_STATE(2796)] = 84058, - [SMALL_STATE(2797)] = 84078, - [SMALL_STATE(2798)] = 84098, - [SMALL_STATE(2799)] = 84118, - [SMALL_STATE(2800)] = 84138, - [SMALL_STATE(2801)] = 84158, - [SMALL_STATE(2802)] = 84178, - [SMALL_STATE(2803)] = 84198, - [SMALL_STATE(2804)] = 84218, - [SMALL_STATE(2805)] = 84234, - [SMALL_STATE(2806)] = 84254, - [SMALL_STATE(2807)] = 84274, - [SMALL_STATE(2808)] = 84292, - [SMALL_STATE(2809)] = 84312, - [SMALL_STATE(2810)] = 84328, - [SMALL_STATE(2811)] = 84348, - [SMALL_STATE(2812)] = 84368, - [SMALL_STATE(2813)] = 84388, - [SMALL_STATE(2814)] = 84408, - [SMALL_STATE(2815)] = 84424, - [SMALL_STATE(2816)] = 84440, - [SMALL_STATE(2817)] = 84456, - [SMALL_STATE(2818)] = 84472, - [SMALL_STATE(2819)] = 84488, - [SMALL_STATE(2820)] = 84504, - [SMALL_STATE(2821)] = 84520, - [SMALL_STATE(2822)] = 84540, - [SMALL_STATE(2823)] = 84560, - [SMALL_STATE(2824)] = 84580, - [SMALL_STATE(2825)] = 84600, - [SMALL_STATE(2826)] = 84620, - [SMALL_STATE(2827)] = 84640, - [SMALL_STATE(2828)] = 84660, - [SMALL_STATE(2829)] = 84680, - [SMALL_STATE(2830)] = 84700, - [SMALL_STATE(2831)] = 84720, - [SMALL_STATE(2832)] = 84740, - [SMALL_STATE(2833)] = 84756, - [SMALL_STATE(2834)] = 84776, - [SMALL_STATE(2835)] = 84796, - [SMALL_STATE(2836)] = 84816, - [SMALL_STATE(2837)] = 84836, - [SMALL_STATE(2838)] = 84856, - [SMALL_STATE(2839)] = 84876, - [SMALL_STATE(2840)] = 84896, - [SMALL_STATE(2841)] = 84914, - [SMALL_STATE(2842)] = 84934, - [SMALL_STATE(2843)] = 84954, - [SMALL_STATE(2844)] = 84974, - [SMALL_STATE(2845)] = 84994, - [SMALL_STATE(2846)] = 85014, - [SMALL_STATE(2847)] = 85034, - [SMALL_STATE(2848)] = 85054, - [SMALL_STATE(2849)] = 85074, - [SMALL_STATE(2850)] = 85094, - [SMALL_STATE(2851)] = 85114, - [SMALL_STATE(2852)] = 85134, - [SMALL_STATE(2853)] = 85150, - [SMALL_STATE(2854)] = 85170, - [SMALL_STATE(2855)] = 85190, - [SMALL_STATE(2856)] = 85206, - [SMALL_STATE(2857)] = 85224, - [SMALL_STATE(2858)] = 85244, - [SMALL_STATE(2859)] = 85264, - [SMALL_STATE(2860)] = 85282, - [SMALL_STATE(2861)] = 85302, - [SMALL_STATE(2862)] = 85322, - [SMALL_STATE(2863)] = 85338, - [SMALL_STATE(2864)] = 85358, - [SMALL_STATE(2865)] = 85374, - [SMALL_STATE(2866)] = 85394, - [SMALL_STATE(2867)] = 85414, - [SMALL_STATE(2868)] = 85434, - [SMALL_STATE(2869)] = 85454, - [SMALL_STATE(2870)] = 85474, - [SMALL_STATE(2871)] = 85494, - [SMALL_STATE(2872)] = 85514, - [SMALL_STATE(2873)] = 85530, - [SMALL_STATE(2874)] = 85546, - [SMALL_STATE(2875)] = 85566, - [SMALL_STATE(2876)] = 85586, - [SMALL_STATE(2877)] = 85602, - [SMALL_STATE(2878)] = 85618, - [SMALL_STATE(2879)] = 85638, - [SMALL_STATE(2880)] = 85658, - [SMALL_STATE(2881)] = 85678, - [SMALL_STATE(2882)] = 85698, - [SMALL_STATE(2883)] = 85714, - [SMALL_STATE(2884)] = 85732, - [SMALL_STATE(2885)] = 85748, - [SMALL_STATE(2886)] = 85764, - [SMALL_STATE(2887)] = 85780, - [SMALL_STATE(2888)] = 85798, - [SMALL_STATE(2889)] = 85818, - [SMALL_STATE(2890)] = 85838, - [SMALL_STATE(2891)] = 85858, - [SMALL_STATE(2892)] = 85878, - [SMALL_STATE(2893)] = 85898, - [SMALL_STATE(2894)] = 85918, - [SMALL_STATE(2895)] = 85938, - [SMALL_STATE(2896)] = 85958, - [SMALL_STATE(2897)] = 85978, - [SMALL_STATE(2898)] = 85998, - [SMALL_STATE(2899)] = 86018, - [SMALL_STATE(2900)] = 86038, - [SMALL_STATE(2901)] = 86058, - [SMALL_STATE(2902)] = 86078, - [SMALL_STATE(2903)] = 86096, - [SMALL_STATE(2904)] = 86116, - [SMALL_STATE(2905)] = 86136, - [SMALL_STATE(2906)] = 86156, - [SMALL_STATE(2907)] = 86176, - [SMALL_STATE(2908)] = 86196, - [SMALL_STATE(2909)] = 86216, - [SMALL_STATE(2910)] = 86234, - [SMALL_STATE(2911)] = 86250, - [SMALL_STATE(2912)] = 86270, - [SMALL_STATE(2913)] = 86290, - [SMALL_STATE(2914)] = 86308, - [SMALL_STATE(2915)] = 86328, - [SMALL_STATE(2916)] = 86344, + [SMALL_STATE(1843)] = 54160, + [SMALL_STATE(1844)] = 54225, + [SMALL_STATE(1845)] = 54278, + [SMALL_STATE(1846)] = 54331, + [SMALL_STATE(1847)] = 54390, + [SMALL_STATE(1848)] = 54475, + [SMALL_STATE(1849)] = 54564, + [SMALL_STATE(1850)] = 54649, + [SMALL_STATE(1851)] = 54702, + [SMALL_STATE(1852)] = 54755, + [SMALL_STATE(1853)] = 54828, + [SMALL_STATE(1854)] = 54909, + [SMALL_STATE(1855)] = 54968, + [SMALL_STATE(1856)] = 55057, + [SMALL_STATE(1857)] = 55110, + [SMALL_STATE(1858)] = 55163, + [SMALL_STATE(1859)] = 55252, + [SMALL_STATE(1860)] = 55305, + [SMALL_STATE(1861)] = 55392, + [SMALL_STATE(1862)] = 55445, + [SMALL_STATE(1863)] = 55534, + [SMALL_STATE(1864)] = 55587, + [SMALL_STATE(1865)] = 55640, + [SMALL_STATE(1866)] = 55693, + [SMALL_STATE(1867)] = 55782, + [SMALL_STATE(1868)] = 55835, + [SMALL_STATE(1869)] = 55909, + [SMALL_STATE(1870)] = 55995, + [SMALL_STATE(1871)] = 56079, + [SMALL_STATE(1872)] = 56165, + [SMALL_STATE(1873)] = 56251, + [SMALL_STATE(1874)] = 56337, + [SMALL_STATE(1875)] = 56421, + [SMALL_STATE(1876)] = 56507, + [SMALL_STATE(1877)] = 56593, + [SMALL_STATE(1878)] = 56679, + [SMALL_STATE(1879)] = 56765, + [SMALL_STATE(1880)] = 56839, + [SMALL_STATE(1881)] = 56913, + [SMALL_STATE(1882)] = 56999, + [SMALL_STATE(1883)] = 57085, + [SMALL_STATE(1884)] = 57171, + [SMALL_STATE(1885)] = 57257, + [SMALL_STATE(1886)] = 57343, + [SMALL_STATE(1887)] = 57429, + [SMALL_STATE(1888)] = 57515, + [SMALL_STATE(1889)] = 57601, + [SMALL_STATE(1890)] = 57687, + [SMALL_STATE(1891)] = 57773, + [SMALL_STATE(1892)] = 57859, + [SMALL_STATE(1893)] = 57945, + [SMALL_STATE(1894)] = 58031, + [SMALL_STATE(1895)] = 58117, + [SMALL_STATE(1896)] = 58203, + [SMALL_STATE(1897)] = 58289, + [SMALL_STATE(1898)] = 58375, + [SMALL_STATE(1899)] = 58461, + [SMALL_STATE(1900)] = 58547, + [SMALL_STATE(1901)] = 58621, + [SMALL_STATE(1902)] = 58695, + [SMALL_STATE(1903)] = 58781, + [SMALL_STATE(1904)] = 58867, + [SMALL_STATE(1905)] = 58953, + [SMALL_STATE(1906)] = 59028, + [SMALL_STATE(1907)] = 59103, + [SMALL_STATE(1908)] = 59178, + [SMALL_STATE(1909)] = 59253, + [SMALL_STATE(1910)] = 59328, + [SMALL_STATE(1911)] = 59403, + [SMALL_STATE(1912)] = 59478, + [SMALL_STATE(1913)] = 59553, + [SMALL_STATE(1914)] = 59600, + [SMALL_STATE(1915)] = 59647, + [SMALL_STATE(1916)] = 59694, + [SMALL_STATE(1917)] = 59756, + [SMALL_STATE(1918)] = 59818, + [SMALL_STATE(1919)] = 59880, + [SMALL_STATE(1920)] = 59942, + [SMALL_STATE(1921)] = 60004, + [SMALL_STATE(1922)] = 60066, + [SMALL_STATE(1923)] = 60128, + [SMALL_STATE(1924)] = 60190, + [SMALL_STATE(1925)] = 60249, + [SMALL_STATE(1926)] = 60308, + [SMALL_STATE(1927)] = 60356, + [SMALL_STATE(1928)] = 60392, + [SMALL_STATE(1929)] = 60428, + [SMALL_STATE(1930)] = 60465, + [SMALL_STATE(1931)] = 60510, + [SMALL_STATE(1932)] = 60547, + [SMALL_STATE(1933)] = 60584, + [SMALL_STATE(1934)] = 60629, + [SMALL_STATE(1935)] = 60682, + [SMALL_STATE(1936)] = 60719, + [SMALL_STATE(1937)] = 60764, + [SMALL_STATE(1938)] = 60804, + [SMALL_STATE(1939)] = 60840, + [SMALL_STATE(1940)] = 60880, + [SMALL_STATE(1941)] = 60914, + [SMALL_STATE(1942)] = 60950, + [SMALL_STATE(1943)] = 60984, + [SMALL_STATE(1944)] = 61020, + [SMALL_STATE(1945)] = 61054, + [SMALL_STATE(1946)] = 61090, + [SMALL_STATE(1947)] = 61130, + [SMALL_STATE(1948)] = 61164, + [SMALL_STATE(1949)] = 61204, + [SMALL_STATE(1950)] = 61237, + [SMALL_STATE(1951)] = 61270, + [SMALL_STATE(1952)] = 61301, + [SMALL_STATE(1953)] = 61334, + [SMALL_STATE(1954)] = 61367, + [SMALL_STATE(1955)] = 61413, + [SMALL_STATE(1956)] = 61445, + [SMALL_STATE(1957)] = 61477, + [SMALL_STATE(1958)] = 61537, + [SMALL_STATE(1959)] = 61569, + [SMALL_STATE(1960)] = 61629, + [SMALL_STATE(1961)] = 61673, + [SMALL_STATE(1962)] = 61702, + [SMALL_STATE(1963)] = 61735, + [SMALL_STATE(1964)] = 61766, + [SMALL_STATE(1965)] = 61795, + [SMALL_STATE(1966)] = 61824, + [SMALL_STATE(1967)] = 61877, + [SMALL_STATE(1968)] = 61906, + [SMALL_STATE(1969)] = 61935, + [SMALL_STATE(1970)] = 61964, + [SMALL_STATE(1971)] = 61993, + [SMALL_STATE(1972)] = 62026, + [SMALL_STATE(1973)] = 62059, + [SMALL_STATE(1974)] = 62112, + [SMALL_STATE(1975)] = 62143, + [SMALL_STATE(1976)] = 62174, + [SMALL_STATE(1977)] = 62205, + [SMALL_STATE(1978)] = 62236, + [SMALL_STATE(1979)] = 62267, + [SMALL_STATE(1980)] = 62300, + [SMALL_STATE(1981)] = 62331, + [SMALL_STATE(1982)] = 62372, + [SMALL_STATE(1983)] = 62405, + [SMALL_STATE(1984)] = 62438, + [SMALL_STATE(1985)] = 62493, + [SMALL_STATE(1986)] = 62536, + [SMALL_STATE(1987)] = 62567, + [SMALL_STATE(1988)] = 62596, + [SMALL_STATE(1989)] = 62625, + [SMALL_STATE(1990)] = 62655, + [SMALL_STATE(1991)] = 62683, + [SMALL_STATE(1992)] = 62711, + [SMALL_STATE(1993)] = 62739, + [SMALL_STATE(1994)] = 62767, + [SMALL_STATE(1995)] = 62795, + [SMALL_STATE(1996)] = 62823, + [SMALL_STATE(1997)] = 62867, + [SMALL_STATE(1998)] = 62895, + [SMALL_STATE(1999)] = 62925, + [SMALL_STATE(2000)] = 62953, + [SMALL_STATE(2001)] = 62981, + [SMALL_STATE(2002)] = 63009, + [SMALL_STATE(2003)] = 63037, + [SMALL_STATE(2004)] = 63065, + [SMALL_STATE(2005)] = 63093, + [SMALL_STATE(2006)] = 63121, + [SMALL_STATE(2007)] = 63149, + [SMALL_STATE(2008)] = 63177, + [SMALL_STATE(2009)] = 63205, + [SMALL_STATE(2010)] = 63233, + [SMALL_STATE(2011)] = 63261, + [SMALL_STATE(2012)] = 63289, + [SMALL_STATE(2013)] = 63317, + [SMALL_STATE(2014)] = 63345, + [SMALL_STATE(2015)] = 63373, + [SMALL_STATE(2016)] = 63401, + [SMALL_STATE(2017)] = 63429, + [SMALL_STATE(2018)] = 63457, + [SMALL_STATE(2019)] = 63485, + [SMALL_STATE(2020)] = 63513, + [SMALL_STATE(2021)] = 63541, + [SMALL_STATE(2022)] = 63570, + [SMALL_STATE(2023)] = 63601, + [SMALL_STATE(2024)] = 63630, + [SMALL_STATE(2025)] = 63665, + [SMALL_STATE(2026)] = 63716, + [SMALL_STATE(2027)] = 63748, + [SMALL_STATE(2028)] = 63776, + [SMALL_STATE(2029)] = 63808, + [SMALL_STATE(2030)] = 63840, + [SMALL_STATE(2031)] = 63870, + [SMALL_STATE(2032)] = 63914, + [SMALL_STATE(2033)] = 63946, + [SMALL_STATE(2034)] = 63978, + [SMALL_STATE(2035)] = 64010, + [SMALL_STATE(2036)] = 64042, + [SMALL_STATE(2037)] = 64070, + [SMALL_STATE(2038)] = 64102, + [SMALL_STATE(2039)] = 64134, + [SMALL_STATE(2040)] = 64166, + [SMALL_STATE(2041)] = 64198, + [SMALL_STATE(2042)] = 64230, + [SMALL_STATE(2043)] = 64259, + [SMALL_STATE(2044)] = 64304, + [SMALL_STATE(2045)] = 64349, + [SMALL_STATE(2046)] = 64394, + [SMALL_STATE(2047)] = 64439, + [SMALL_STATE(2048)] = 64484, + [SMALL_STATE(2049)] = 64529, + [SMALL_STATE(2050)] = 64574, + [SMALL_STATE(2051)] = 64603, + [SMALL_STATE(2052)] = 64640, + [SMALL_STATE(2053)] = 64685, + [SMALL_STATE(2054)] = 64730, + [SMALL_STATE(2055)] = 64775, + [SMALL_STATE(2056)] = 64820, + [SMALL_STATE(2057)] = 64865, + [SMALL_STATE(2058)] = 64910, + [SMALL_STATE(2059)] = 64955, + [SMALL_STATE(2060)] = 65000, + [SMALL_STATE(2061)] = 65038, + [SMALL_STATE(2062)] = 65078, + [SMALL_STATE(2063)] = 65118, + [SMALL_STATE(2064)] = 65160, + [SMALL_STATE(2065)] = 65184, + [SMALL_STATE(2066)] = 65218, + [SMALL_STATE(2067)] = 65260, + [SMALL_STATE(2068)] = 65294, + [SMALL_STATE(2069)] = 65322, + [SMALL_STATE(2070)] = 65350, + [SMALL_STATE(2071)] = 65378, + [SMALL_STATE(2072)] = 65406, + [SMALL_STATE(2073)] = 65448, + [SMALL_STATE(2074)] = 65490, + [SMALL_STATE(2075)] = 65530, + [SMALL_STATE(2076)] = 65554, + [SMALL_STATE(2077)] = 65596, + [SMALL_STATE(2078)] = 65620, + [SMALL_STATE(2079)] = 65658, + [SMALL_STATE(2080)] = 65688, + [SMALL_STATE(2081)] = 65716, + [SMALL_STATE(2082)] = 65744, + [SMALL_STATE(2083)] = 65772, + [SMALL_STATE(2084)] = 65800, + [SMALL_STATE(2085)] = 65838, + [SMALL_STATE(2086)] = 65866, + [SMALL_STATE(2087)] = 65908, + [SMALL_STATE(2088)] = 65950, + [SMALL_STATE(2089)] = 65988, + [SMALL_STATE(2090)] = 66026, + [SMALL_STATE(2091)] = 66064, + [SMALL_STATE(2092)] = 66088, + [SMALL_STATE(2093)] = 66118, + [SMALL_STATE(2094)] = 66156, + [SMALL_STATE(2095)] = 66186, + [SMALL_STATE(2096)] = 66224, + [SMALL_STATE(2097)] = 66262, + [SMALL_STATE(2098)] = 66290, + [SMALL_STATE(2099)] = 66318, + [SMALL_STATE(2100)] = 66342, + [SMALL_STATE(2101)] = 66370, + [SMALL_STATE(2102)] = 66400, + [SMALL_STATE(2103)] = 66433, + [SMALL_STATE(2104)] = 66456, + [SMALL_STATE(2105)] = 66479, + [SMALL_STATE(2106)] = 66502, + [SMALL_STATE(2107)] = 66525, + [SMALL_STATE(2108)] = 66548, + [SMALL_STATE(2109)] = 66589, + [SMALL_STATE(2110)] = 66620, + [SMALL_STATE(2111)] = 66661, + [SMALL_STATE(2112)] = 66684, + [SMALL_STATE(2113)] = 66719, + [SMALL_STATE(2114)] = 66742, + [SMALL_STATE(2115)] = 66765, + [SMALL_STATE(2116)] = 66788, + [SMALL_STATE(2117)] = 66811, + [SMALL_STATE(2118)] = 66834, + [SMALL_STATE(2119)] = 66857, + [SMALL_STATE(2120)] = 66880, + [SMALL_STATE(2121)] = 66903, + [SMALL_STATE(2122)] = 66944, + [SMALL_STATE(2123)] = 66967, + [SMALL_STATE(2124)] = 67004, + [SMALL_STATE(2125)] = 67027, + [SMALL_STATE(2126)] = 67050, + [SMALL_STATE(2127)] = 67073, + [SMALL_STATE(2128)] = 67104, + [SMALL_STATE(2129)] = 67127, + [SMALL_STATE(2130)] = 67150, + [SMALL_STATE(2131)] = 67187, + [SMALL_STATE(2132)] = 67210, + [SMALL_STATE(2133)] = 67233, + [SMALL_STATE(2134)] = 67270, + [SMALL_STATE(2135)] = 67293, + [SMALL_STATE(2136)] = 67316, + [SMALL_STATE(2137)] = 67351, + [SMALL_STATE(2138)] = 67374, + [SMALL_STATE(2139)] = 67397, + [SMALL_STATE(2140)] = 67420, + [SMALL_STATE(2141)] = 67455, + [SMALL_STATE(2142)] = 67478, + [SMALL_STATE(2143)] = 67501, + [SMALL_STATE(2144)] = 67524, + [SMALL_STATE(2145)] = 67547, + [SMALL_STATE(2146)] = 67588, + [SMALL_STATE(2147)] = 67611, + [SMALL_STATE(2148)] = 67634, + [SMALL_STATE(2149)] = 67665, + [SMALL_STATE(2150)] = 67688, + [SMALL_STATE(2151)] = 67711, + [SMALL_STATE(2152)] = 67748, + [SMALL_STATE(2153)] = 67779, + [SMALL_STATE(2154)] = 67802, + [SMALL_STATE(2155)] = 67840, + [SMALL_STATE(2156)] = 67878, + [SMALL_STATE(2157)] = 67906, + [SMALL_STATE(2158)] = 67944, + [SMALL_STATE(2159)] = 67982, + [SMALL_STATE(2160)] = 68020, + [SMALL_STATE(2161)] = 68058, + [SMALL_STATE(2162)] = 68090, + [SMALL_STATE(2163)] = 68114, + [SMALL_STATE(2164)] = 68146, + [SMALL_STATE(2165)] = 68184, + [SMALL_STATE(2166)] = 68216, + [SMALL_STATE(2167)] = 68244, + [SMALL_STATE(2168)] = 68276, + [SMALL_STATE(2169)] = 68300, + [SMALL_STATE(2170)] = 68334, + [SMALL_STATE(2171)] = 68372, + [SMALL_STATE(2172)] = 68410, + [SMALL_STATE(2173)] = 68448, + [SMALL_STATE(2174)] = 68476, + [SMALL_STATE(2175)] = 68500, + [SMALL_STATE(2176)] = 68524, + [SMALL_STATE(2177)] = 68552, + [SMALL_STATE(2178)] = 68590, + [SMALL_STATE(2179)] = 68628, + [SMALL_STATE(2180)] = 68660, + [SMALL_STATE(2181)] = 68698, + [SMALL_STATE(2182)] = 68724, + [SMALL_STATE(2183)] = 68762, + [SMALL_STATE(2184)] = 68794, + [SMALL_STATE(2185)] = 68826, + [SMALL_STATE(2186)] = 68852, + [SMALL_STATE(2187)] = 68884, + [SMALL_STATE(2188)] = 68912, + [SMALL_STATE(2189)] = 68938, + [SMALL_STATE(2190)] = 68970, + [SMALL_STATE(2191)] = 69006, + [SMALL_STATE(2192)] = 69038, + [SMALL_STATE(2193)] = 69064, + [SMALL_STATE(2194)] = 69096, + [SMALL_STATE(2195)] = 69134, + [SMALL_STATE(2196)] = 69166, + [SMALL_STATE(2197)] = 69200, + [SMALL_STATE(2198)] = 69238, + [SMALL_STATE(2199)] = 69266, + [SMALL_STATE(2200)] = 69294, + [SMALL_STATE(2201)] = 69326, + [SMALL_STATE(2202)] = 69350, + [SMALL_STATE(2203)] = 69385, + [SMALL_STATE(2204)] = 69420, + [SMALL_STATE(2205)] = 69455, + [SMALL_STATE(2206)] = 69490, + [SMALL_STATE(2207)] = 69525, + [SMALL_STATE(2208)] = 69560, + [SMALL_STATE(2209)] = 69595, + [SMALL_STATE(2210)] = 69630, + [SMALL_STATE(2211)] = 69665, + [SMALL_STATE(2212)] = 69700, + [SMALL_STATE(2213)] = 69733, + [SMALL_STATE(2214)] = 69766, + [SMALL_STATE(2215)] = 69801, + [SMALL_STATE(2216)] = 69836, + [SMALL_STATE(2217)] = 69871, + [SMALL_STATE(2218)] = 69906, + [SMALL_STATE(2219)] = 69931, + [SMALL_STATE(2220)] = 69966, + [SMALL_STATE(2221)] = 69991, + [SMALL_STATE(2222)] = 70026, + [SMALL_STATE(2223)] = 70061, + [SMALL_STATE(2224)] = 70088, + [SMALL_STATE(2225)] = 70123, + [SMALL_STATE(2226)] = 70158, + [SMALL_STATE(2227)] = 70193, + [SMALL_STATE(2228)] = 70228, + [SMALL_STATE(2229)] = 70263, + [SMALL_STATE(2230)] = 70298, + [SMALL_STATE(2231)] = 70333, + [SMALL_STATE(2232)] = 70368, + [SMALL_STATE(2233)] = 70403, + [SMALL_STATE(2234)] = 70438, + [SMALL_STATE(2235)] = 70473, + [SMALL_STATE(2236)] = 70508, + [SMALL_STATE(2237)] = 70543, + [SMALL_STATE(2238)] = 70578, + [SMALL_STATE(2239)] = 70599, + [SMALL_STATE(2240)] = 70634, + [SMALL_STATE(2241)] = 70669, + [SMALL_STATE(2242)] = 70704, + [SMALL_STATE(2243)] = 70739, + [SMALL_STATE(2244)] = 70772, + [SMALL_STATE(2245)] = 70793, + [SMALL_STATE(2246)] = 70814, + [SMALL_STATE(2247)] = 70835, + [SMALL_STATE(2248)] = 70856, + [SMALL_STATE(2249)] = 70877, + [SMALL_STATE(2250)] = 70910, + [SMALL_STATE(2251)] = 70939, + [SMALL_STATE(2252)] = 70974, + [SMALL_STATE(2253)] = 71009, + [SMALL_STATE(2254)] = 71034, + [SMALL_STATE(2255)] = 71067, + [SMALL_STATE(2256)] = 71102, + [SMALL_STATE(2257)] = 71137, + [SMALL_STATE(2258)] = 71172, + [SMALL_STATE(2259)] = 71202, + [SMALL_STATE(2260)] = 71234, + [SMALL_STATE(2261)] = 71264, + [SMALL_STATE(2262)] = 71294, + [SMALL_STATE(2263)] = 71316, + [SMALL_STATE(2264)] = 71348, + [SMALL_STATE(2265)] = 71380, + [SMALL_STATE(2266)] = 71412, + [SMALL_STATE(2267)] = 71444, + [SMALL_STATE(2268)] = 71474, + [SMALL_STATE(2269)] = 71504, + [SMALL_STATE(2270)] = 71532, + [SMALL_STATE(2271)] = 71562, + [SMALL_STATE(2272)] = 71594, + [SMALL_STATE(2273)] = 71622, + [SMALL_STATE(2274)] = 71652, + [SMALL_STATE(2275)] = 71682, + [SMALL_STATE(2276)] = 71714, + [SMALL_STATE(2277)] = 71746, + [SMALL_STATE(2278)] = 71778, + [SMALL_STATE(2279)] = 71810, + [SMALL_STATE(2280)] = 71842, + [SMALL_STATE(2281)] = 71874, + [SMALL_STATE(2282)] = 71900, + [SMALL_STATE(2283)] = 71928, + [SMALL_STATE(2284)] = 71958, + [SMALL_STATE(2285)] = 71984, + [SMALL_STATE(2286)] = 72016, + [SMALL_STATE(2287)] = 72038, + [SMALL_STATE(2288)] = 72070, + [SMALL_STATE(2289)] = 72102, + [SMALL_STATE(2290)] = 72134, + [SMALL_STATE(2291)] = 72166, + [SMALL_STATE(2292)] = 72198, + [SMALL_STATE(2293)] = 72230, + [SMALL_STATE(2294)] = 72262, + [SMALL_STATE(2295)] = 72294, + [SMALL_STATE(2296)] = 72326, + [SMALL_STATE(2297)] = 72358, + [SMALL_STATE(2298)] = 72386, + [SMALL_STATE(2299)] = 72412, + [SMALL_STATE(2300)] = 72444, + [SMALL_STATE(2301)] = 72472, + [SMALL_STATE(2302)] = 72494, + [SMALL_STATE(2303)] = 72526, + [SMALL_STATE(2304)] = 72556, + [SMALL_STATE(2305)] = 72588, + [SMALL_STATE(2306)] = 72610, + [SMALL_STATE(2307)] = 72642, + [SMALL_STATE(2308)] = 72668, + [SMALL_STATE(2309)] = 72700, + [SMALL_STATE(2310)] = 72732, + [SMALL_STATE(2311)] = 72764, + [SMALL_STATE(2312)] = 72796, + [SMALL_STATE(2313)] = 72818, + [SMALL_STATE(2314)] = 72840, + [SMALL_STATE(2315)] = 72872, + [SMALL_STATE(2316)] = 72904, + [SMALL_STATE(2317)] = 72933, + [SMALL_STATE(2318)] = 72962, + [SMALL_STATE(2319)] = 72989, + [SMALL_STATE(2320)] = 73018, + [SMALL_STATE(2321)] = 73047, + [SMALL_STATE(2322)] = 73076, + [SMALL_STATE(2323)] = 73105, + [SMALL_STATE(2324)] = 73134, + [SMALL_STATE(2325)] = 73163, + [SMALL_STATE(2326)] = 73186, + [SMALL_STATE(2327)] = 73213, + [SMALL_STATE(2328)] = 73242, + [SMALL_STATE(2329)] = 73271, + [SMALL_STATE(2330)] = 73300, + [SMALL_STATE(2331)] = 73327, + [SMALL_STATE(2332)] = 73356, + [SMALL_STATE(2333)] = 73385, + [SMALL_STATE(2334)] = 73414, + [SMALL_STATE(2335)] = 73443, + [SMALL_STATE(2336)] = 73472, + [SMALL_STATE(2337)] = 73501, + [SMALL_STATE(2338)] = 73528, + [SMALL_STATE(2339)] = 73557, + [SMALL_STATE(2340)] = 73586, + [SMALL_STATE(2341)] = 73615, + [SMALL_STATE(2342)] = 73644, + [SMALL_STATE(2343)] = 73673, + [SMALL_STATE(2344)] = 73700, + [SMALL_STATE(2345)] = 73721, + [SMALL_STATE(2346)] = 73750, + [SMALL_STATE(2347)] = 73779, + [SMALL_STATE(2348)] = 73802, + [SMALL_STATE(2349)] = 73831, + [SMALL_STATE(2350)] = 73852, + [SMALL_STATE(2351)] = 73881, + [SMALL_STATE(2352)] = 73910, + [SMALL_STATE(2353)] = 73939, + [SMALL_STATE(2354)] = 73968, + [SMALL_STATE(2355)] = 73997, + [SMALL_STATE(2356)] = 74026, + [SMALL_STATE(2357)] = 74055, + [SMALL_STATE(2358)] = 74076, + [SMALL_STATE(2359)] = 74105, + [SMALL_STATE(2360)] = 74126, + [SMALL_STATE(2361)] = 74155, + [SMALL_STATE(2362)] = 74184, + [SMALL_STATE(2363)] = 74213, + [SMALL_STATE(2364)] = 74242, + [SMALL_STATE(2365)] = 74271, + [SMALL_STATE(2366)] = 74290, + [SMALL_STATE(2367)] = 74311, + [SMALL_STATE(2368)] = 74340, + [SMALL_STATE(2369)] = 74369, + [SMALL_STATE(2370)] = 74390, + [SMALL_STATE(2371)] = 74419, + [SMALL_STATE(2372)] = 74448, + [SMALL_STATE(2373)] = 74477, + [SMALL_STATE(2374)] = 74506, + [SMALL_STATE(2375)] = 74527, + [SMALL_STATE(2376)] = 74548, + [SMALL_STATE(2377)] = 74577, + [SMALL_STATE(2378)] = 74606, + [SMALL_STATE(2379)] = 74635, + [SMALL_STATE(2380)] = 74664, + [SMALL_STATE(2381)] = 74687, + [SMALL_STATE(2382)] = 74716, + [SMALL_STATE(2383)] = 74745, + [SMALL_STATE(2384)] = 74770, + [SMALL_STATE(2385)] = 74799, + [SMALL_STATE(2386)] = 74822, + [SMALL_STATE(2387)] = 74847, + [SMALL_STATE(2388)] = 74876, + [SMALL_STATE(2389)] = 74905, + [SMALL_STATE(2390)] = 74934, + [SMALL_STATE(2391)] = 74953, + [SMALL_STATE(2392)] = 74982, + [SMALL_STATE(2393)] = 75005, + [SMALL_STATE(2394)] = 75034, + [SMALL_STATE(2395)] = 75057, + [SMALL_STATE(2396)] = 75082, + [SMALL_STATE(2397)] = 75111, + [SMALL_STATE(2398)] = 75134, + [SMALL_STATE(2399)] = 75163, + [SMALL_STATE(2400)] = 75192, + [SMALL_STATE(2401)] = 75221, + [SMALL_STATE(2402)] = 75246, + [SMALL_STATE(2403)] = 75269, + [SMALL_STATE(2404)] = 75292, + [SMALL_STATE(2405)] = 75319, + [SMALL_STATE(2406)] = 75348, + [SMALL_STATE(2407)] = 75371, + [SMALL_STATE(2408)] = 75400, + [SMALL_STATE(2409)] = 75429, + [SMALL_STATE(2410)] = 75452, + [SMALL_STATE(2411)] = 75481, + [SMALL_STATE(2412)] = 75504, + [SMALL_STATE(2413)] = 75533, + [SMALL_STATE(2414)] = 75556, + [SMALL_STATE(2415)] = 75585, + [SMALL_STATE(2416)] = 75614, + [SMALL_STATE(2417)] = 75637, + [SMALL_STATE(2418)] = 75655, + [SMALL_STATE(2419)] = 75679, + [SMALL_STATE(2420)] = 75705, + [SMALL_STATE(2421)] = 75729, + [SMALL_STATE(2422)] = 75747, + [SMALL_STATE(2423)] = 75773, + [SMALL_STATE(2424)] = 75797, + [SMALL_STATE(2425)] = 75815, + [SMALL_STATE(2426)] = 75839, + [SMALL_STATE(2427)] = 75865, + [SMALL_STATE(2428)] = 75889, + [SMALL_STATE(2429)] = 75911, + [SMALL_STATE(2430)] = 75937, + [SMALL_STATE(2431)] = 75955, + [SMALL_STATE(2432)] = 75973, + [SMALL_STATE(2433)] = 75999, + [SMALL_STATE(2434)] = 76025, + [SMALL_STATE(2435)] = 76043, + [SMALL_STATE(2436)] = 76069, + [SMALL_STATE(2437)] = 76095, + [SMALL_STATE(2438)] = 76113, + [SMALL_STATE(2439)] = 76139, + [SMALL_STATE(2440)] = 76165, + [SMALL_STATE(2441)] = 76191, + [SMALL_STATE(2442)] = 76213, + [SMALL_STATE(2443)] = 76239, + [SMALL_STATE(2444)] = 76265, + [SMALL_STATE(2445)] = 76285, + [SMALL_STATE(2446)] = 76311, + [SMALL_STATE(2447)] = 76329, + [SMALL_STATE(2448)] = 76347, + [SMALL_STATE(2449)] = 76373, + [SMALL_STATE(2450)] = 76399, + [SMALL_STATE(2451)] = 76425, + [SMALL_STATE(2452)] = 76451, + [SMALL_STATE(2453)] = 76471, + [SMALL_STATE(2454)] = 76497, + [SMALL_STATE(2455)] = 76521, + [SMALL_STATE(2456)] = 76539, + [SMALL_STATE(2457)] = 76563, + [SMALL_STATE(2458)] = 76589, + [SMALL_STATE(2459)] = 76615, + [SMALL_STATE(2460)] = 76641, + [SMALL_STATE(2461)] = 76667, + [SMALL_STATE(2462)] = 76689, + [SMALL_STATE(2463)] = 76715, + [SMALL_STATE(2464)] = 76733, + [SMALL_STATE(2465)] = 76759, + [SMALL_STATE(2466)] = 76785, + [SMALL_STATE(2467)] = 76811, + [SMALL_STATE(2468)] = 76831, + [SMALL_STATE(2469)] = 76857, + [SMALL_STATE(2470)] = 76875, + [SMALL_STATE(2471)] = 76901, + [SMALL_STATE(2472)] = 76921, + [SMALL_STATE(2473)] = 76947, + [SMALL_STATE(2474)] = 76973, + [SMALL_STATE(2475)] = 76997, + [SMALL_STATE(2476)] = 77023, + [SMALL_STATE(2477)] = 77049, + [SMALL_STATE(2478)] = 77073, + [SMALL_STATE(2479)] = 77095, + [SMALL_STATE(2480)] = 77117, + [SMALL_STATE(2481)] = 77143, + [SMALL_STATE(2482)] = 77167, + [SMALL_STATE(2483)] = 77191, + [SMALL_STATE(2484)] = 77217, + [SMALL_STATE(2485)] = 77243, + [SMALL_STATE(2486)] = 77267, + [SMALL_STATE(2487)] = 77289, + [SMALL_STATE(2488)] = 77315, + [SMALL_STATE(2489)] = 77341, + [SMALL_STATE(2490)] = 77359, + [SMALL_STATE(2491)] = 77385, + [SMALL_STATE(2492)] = 77403, + [SMALL_STATE(2493)] = 77421, + [SMALL_STATE(2494)] = 77439, + [SMALL_STATE(2495)] = 77465, + [SMALL_STATE(2496)] = 77489, + [SMALL_STATE(2497)] = 77511, + [SMALL_STATE(2498)] = 77537, + [SMALL_STATE(2499)] = 77555, + [SMALL_STATE(2500)] = 77579, + [SMALL_STATE(2501)] = 77597, + [SMALL_STATE(2502)] = 77623, + [SMALL_STATE(2503)] = 77643, + [SMALL_STATE(2504)] = 77661, + [SMALL_STATE(2505)] = 77679, + [SMALL_STATE(2506)] = 77697, + [SMALL_STATE(2507)] = 77719, + [SMALL_STATE(2508)] = 77745, + [SMALL_STATE(2509)] = 77771, + [SMALL_STATE(2510)] = 77789, + [SMALL_STATE(2511)] = 77807, + [SMALL_STATE(2512)] = 77833, + [SMALL_STATE(2513)] = 77859, + [SMALL_STATE(2514)] = 77877, + [SMALL_STATE(2515)] = 77901, + [SMALL_STATE(2516)] = 77923, + [SMALL_STATE(2517)] = 77949, + [SMALL_STATE(2518)] = 77967, + [SMALL_STATE(2519)] = 77993, + [SMALL_STATE(2520)] = 78019, + [SMALL_STATE(2521)] = 78037, + [SMALL_STATE(2522)] = 78055, + [SMALL_STATE(2523)] = 78073, + [SMALL_STATE(2524)] = 78099, + [SMALL_STATE(2525)] = 78125, + [SMALL_STATE(2526)] = 78143, + [SMALL_STATE(2527)] = 78169, + [SMALL_STATE(2528)] = 78195, + [SMALL_STATE(2529)] = 78217, + [SMALL_STATE(2530)] = 78238, + [SMALL_STATE(2531)] = 78255, + [SMALL_STATE(2532)] = 78278, + [SMALL_STATE(2533)] = 78297, + [SMALL_STATE(2534)] = 78320, + [SMALL_STATE(2535)] = 78343, + [SMALL_STATE(2536)] = 78366, + [SMALL_STATE(2537)] = 78385, + [SMALL_STATE(2538)] = 78408, + [SMALL_STATE(2539)] = 78431, + [SMALL_STATE(2540)] = 78452, + [SMALL_STATE(2541)] = 78475, + [SMALL_STATE(2542)] = 78498, + [SMALL_STATE(2543)] = 78521, + [SMALL_STATE(2544)] = 78544, + [SMALL_STATE(2545)] = 78567, + [SMALL_STATE(2546)] = 78590, + [SMALL_STATE(2547)] = 78613, + [SMALL_STATE(2548)] = 78632, + [SMALL_STATE(2549)] = 78655, + [SMALL_STATE(2550)] = 78672, + [SMALL_STATE(2551)] = 78695, + [SMALL_STATE(2552)] = 78718, + [SMALL_STATE(2553)] = 78741, + [SMALL_STATE(2554)] = 78764, + [SMALL_STATE(2555)] = 78787, + [SMALL_STATE(2556)] = 78804, + [SMALL_STATE(2557)] = 78825, + [SMALL_STATE(2558)] = 78848, + [SMALL_STATE(2559)] = 78869, + [SMALL_STATE(2560)] = 78888, + [SMALL_STATE(2561)] = 78911, + [SMALL_STATE(2562)] = 78934, + [SMALL_STATE(2563)] = 78957, + [SMALL_STATE(2564)] = 78980, + [SMALL_STATE(2565)] = 79003, + [SMALL_STATE(2566)] = 79024, + [SMALL_STATE(2567)] = 79047, + [SMALL_STATE(2568)] = 79070, + [SMALL_STATE(2569)] = 79093, + [SMALL_STATE(2570)] = 79116, + [SMALL_STATE(2571)] = 79135, + [SMALL_STATE(2572)] = 79158, + [SMALL_STATE(2573)] = 79181, + [SMALL_STATE(2574)] = 79204, + [SMALL_STATE(2575)] = 79227, + [SMALL_STATE(2576)] = 79250, + [SMALL_STATE(2577)] = 79273, + [SMALL_STATE(2578)] = 79296, + [SMALL_STATE(2579)] = 79319, + [SMALL_STATE(2580)] = 79340, + [SMALL_STATE(2581)] = 79363, + [SMALL_STATE(2582)] = 79386, + [SMALL_STATE(2583)] = 79409, + [SMALL_STATE(2584)] = 79432, + [SMALL_STATE(2585)] = 79455, + [SMALL_STATE(2586)] = 79478, + [SMALL_STATE(2587)] = 79499, + [SMALL_STATE(2588)] = 79522, + [SMALL_STATE(2589)] = 79545, + [SMALL_STATE(2590)] = 79568, + [SMALL_STATE(2591)] = 79591, + [SMALL_STATE(2592)] = 79614, + [SMALL_STATE(2593)] = 79635, + [SMALL_STATE(2594)] = 79656, + [SMALL_STATE(2595)] = 79679, + [SMALL_STATE(2596)] = 79702, + [SMALL_STATE(2597)] = 79725, + [SMALL_STATE(2598)] = 79748, + [SMALL_STATE(2599)] = 79771, + [SMALL_STATE(2600)] = 79794, + [SMALL_STATE(2601)] = 79817, + [SMALL_STATE(2602)] = 79840, + [SMALL_STATE(2603)] = 79863, + [SMALL_STATE(2604)] = 79886, + [SMALL_STATE(2605)] = 79909, + [SMALL_STATE(2606)] = 79932, + [SMALL_STATE(2607)] = 79955, + [SMALL_STATE(2608)] = 79978, + [SMALL_STATE(2609)] = 80001, + [SMALL_STATE(2610)] = 80022, + [SMALL_STATE(2611)] = 80045, + [SMALL_STATE(2612)] = 80064, + [SMALL_STATE(2613)] = 80085, + [SMALL_STATE(2614)] = 80108, + [SMALL_STATE(2615)] = 80129, + [SMALL_STATE(2616)] = 80152, + [SMALL_STATE(2617)] = 80175, + [SMALL_STATE(2618)] = 80198, + [SMALL_STATE(2619)] = 80221, + [SMALL_STATE(2620)] = 80244, + [SMALL_STATE(2621)] = 80267, + [SMALL_STATE(2622)] = 80290, + [SMALL_STATE(2623)] = 80313, + [SMALL_STATE(2624)] = 80334, + [SMALL_STATE(2625)] = 80355, + [SMALL_STATE(2626)] = 80378, + [SMALL_STATE(2627)] = 80401, + [SMALL_STATE(2628)] = 80424, + [SMALL_STATE(2629)] = 80443, + [SMALL_STATE(2630)] = 80462, + [SMALL_STATE(2631)] = 80485, + [SMALL_STATE(2632)] = 80508, + [SMALL_STATE(2633)] = 80531, + [SMALL_STATE(2634)] = 80554, + [SMALL_STATE(2635)] = 80577, + [SMALL_STATE(2636)] = 80600, + [SMALL_STATE(2637)] = 80623, + [SMALL_STATE(2638)] = 80646, + [SMALL_STATE(2639)] = 80669, + [SMALL_STATE(2640)] = 80692, + [SMALL_STATE(2641)] = 80715, + [SMALL_STATE(2642)] = 80738, + [SMALL_STATE(2643)] = 80761, + [SMALL_STATE(2644)] = 80778, + [SMALL_STATE(2645)] = 80797, + [SMALL_STATE(2646)] = 80816, + [SMALL_STATE(2647)] = 80839, + [SMALL_STATE(2648)] = 80862, + [SMALL_STATE(2649)] = 80885, + [SMALL_STATE(2650)] = 80908, + [SMALL_STATE(2651)] = 80929, + [SMALL_STATE(2652)] = 80948, + [SMALL_STATE(2653)] = 80969, + [SMALL_STATE(2654)] = 80992, + [SMALL_STATE(2655)] = 81015, + [SMALL_STATE(2656)] = 81034, + [SMALL_STATE(2657)] = 81053, + [SMALL_STATE(2658)] = 81076, + [SMALL_STATE(2659)] = 81099, + [SMALL_STATE(2660)] = 81122, + [SMALL_STATE(2661)] = 81145, + [SMALL_STATE(2662)] = 81168, + [SMALL_STATE(2663)] = 81191, + [SMALL_STATE(2664)] = 81214, + [SMALL_STATE(2665)] = 81237, + [SMALL_STATE(2666)] = 81256, + [SMALL_STATE(2667)] = 81273, + [SMALL_STATE(2668)] = 81296, + [SMALL_STATE(2669)] = 81319, + [SMALL_STATE(2670)] = 81342, + [SMALL_STATE(2671)] = 81361, + [SMALL_STATE(2672)] = 81384, + [SMALL_STATE(2673)] = 81407, + [SMALL_STATE(2674)] = 81430, + [SMALL_STATE(2675)] = 81453, + [SMALL_STATE(2676)] = 81476, + [SMALL_STATE(2677)] = 81499, + [SMALL_STATE(2678)] = 81522, + [SMALL_STATE(2679)] = 81545, + [SMALL_STATE(2680)] = 81568, + [SMALL_STATE(2681)] = 81591, + [SMALL_STATE(2682)] = 81612, + [SMALL_STATE(2683)] = 81631, + [SMALL_STATE(2684)] = 81654, + [SMALL_STATE(2685)] = 81677, + [SMALL_STATE(2686)] = 81700, + [SMALL_STATE(2687)] = 81719, + [SMALL_STATE(2688)] = 81742, + [SMALL_STATE(2689)] = 81759, + [SMALL_STATE(2690)] = 81782, + [SMALL_STATE(2691)] = 81805, + [SMALL_STATE(2692)] = 81824, + [SMALL_STATE(2693)] = 81843, + [SMALL_STATE(2694)] = 81866, + [SMALL_STATE(2695)] = 81889, + [SMALL_STATE(2696)] = 81912, + [SMALL_STATE(2697)] = 81933, + [SMALL_STATE(2698)] = 81950, + [SMALL_STATE(2699)] = 81973, + [SMALL_STATE(2700)] = 81996, + [SMALL_STATE(2701)] = 82019, + [SMALL_STATE(2702)] = 82042, + [SMALL_STATE(2703)] = 82063, + [SMALL_STATE(2704)] = 82086, + [SMALL_STATE(2705)] = 82109, + [SMALL_STATE(2706)] = 82132, + [SMALL_STATE(2707)] = 82155, + [SMALL_STATE(2708)] = 82178, + [SMALL_STATE(2709)] = 82201, + [SMALL_STATE(2710)] = 82224, + [SMALL_STATE(2711)] = 82243, + [SMALL_STATE(2712)] = 82266, + [SMALL_STATE(2713)] = 82289, + [SMALL_STATE(2714)] = 82312, + [SMALL_STATE(2715)] = 82335, + [SMALL_STATE(2716)] = 82358, + [SMALL_STATE(2717)] = 82381, + [SMALL_STATE(2718)] = 82402, + [SMALL_STATE(2719)] = 82423, + [SMALL_STATE(2720)] = 82446, + [SMALL_STATE(2721)] = 82469, + [SMALL_STATE(2722)] = 82492, + [SMALL_STATE(2723)] = 82515, + [SMALL_STATE(2724)] = 82538, + [SMALL_STATE(2725)] = 82561, + [SMALL_STATE(2726)] = 82582, + [SMALL_STATE(2727)] = 82605, + [SMALL_STATE(2728)] = 82626, + [SMALL_STATE(2729)] = 82647, + [SMALL_STATE(2730)] = 82668, + [SMALL_STATE(2731)] = 82687, + [SMALL_STATE(2732)] = 82710, + [SMALL_STATE(2733)] = 82733, + [SMALL_STATE(2734)] = 82754, + [SMALL_STATE(2735)] = 82777, + [SMALL_STATE(2736)] = 82796, + [SMALL_STATE(2737)] = 82819, + [SMALL_STATE(2738)] = 82842, + [SMALL_STATE(2739)] = 82863, + [SMALL_STATE(2740)] = 82882, + [SMALL_STATE(2741)] = 82901, + [SMALL_STATE(2742)] = 82924, + [SMALL_STATE(2743)] = 82947, + [SMALL_STATE(2744)] = 82970, + [SMALL_STATE(2745)] = 82993, + [SMALL_STATE(2746)] = 83016, + [SMALL_STATE(2747)] = 83039, + [SMALL_STATE(2748)] = 83062, + [SMALL_STATE(2749)] = 83085, + [SMALL_STATE(2750)] = 83108, + [SMALL_STATE(2751)] = 83129, + [SMALL_STATE(2752)] = 83152, + [SMALL_STATE(2753)] = 83175, + [SMALL_STATE(2754)] = 83198, + [SMALL_STATE(2755)] = 83217, + [SMALL_STATE(2756)] = 83240, + [SMALL_STATE(2757)] = 83263, + [SMALL_STATE(2758)] = 83286, + [SMALL_STATE(2759)] = 83309, + [SMALL_STATE(2760)] = 83332, + [SMALL_STATE(2761)] = 83355, + [SMALL_STATE(2762)] = 83378, + [SMALL_STATE(2763)] = 83401, + [SMALL_STATE(2764)] = 83424, + [SMALL_STATE(2765)] = 83443, + [SMALL_STATE(2766)] = 83462, + [SMALL_STATE(2767)] = 83479, + [SMALL_STATE(2768)] = 83502, + [SMALL_STATE(2769)] = 83525, + [SMALL_STATE(2770)] = 83544, + [SMALL_STATE(2771)] = 83567, + [SMALL_STATE(2772)] = 83590, + [SMALL_STATE(2773)] = 83610, + [SMALL_STATE(2774)] = 83626, + [SMALL_STATE(2775)] = 83646, + [SMALL_STATE(2776)] = 83662, + [SMALL_STATE(2777)] = 83682, + [SMALL_STATE(2778)] = 83702, + [SMALL_STATE(2779)] = 83722, + [SMALL_STATE(2780)] = 83740, + [SMALL_STATE(2781)] = 83760, + [SMALL_STATE(2782)] = 83780, + [SMALL_STATE(2783)] = 83800, + [SMALL_STATE(2784)] = 83820, + [SMALL_STATE(2785)] = 83838, + [SMALL_STATE(2786)] = 83858, + [SMALL_STATE(2787)] = 83878, + [SMALL_STATE(2788)] = 83894, + [SMALL_STATE(2789)] = 83914, + [SMALL_STATE(2790)] = 83932, + [SMALL_STATE(2791)] = 83948, + [SMALL_STATE(2792)] = 83968, + [SMALL_STATE(2793)] = 83986, + [SMALL_STATE(2794)] = 84006, + [SMALL_STATE(2795)] = 84022, + [SMALL_STATE(2796)] = 84042, + [SMALL_STATE(2797)] = 84062, + [SMALL_STATE(2798)] = 84082, + [SMALL_STATE(2799)] = 84100, + [SMALL_STATE(2800)] = 84116, + [SMALL_STATE(2801)] = 84136, + [SMALL_STATE(2802)] = 84156, + [SMALL_STATE(2803)] = 84176, + [SMALL_STATE(2804)] = 84196, + [SMALL_STATE(2805)] = 84214, + [SMALL_STATE(2806)] = 84230, + [SMALL_STATE(2807)] = 84250, + [SMALL_STATE(2808)] = 84270, + [SMALL_STATE(2809)] = 84290, + [SMALL_STATE(2810)] = 84306, + [SMALL_STATE(2811)] = 84326, + [SMALL_STATE(2812)] = 84342, + [SMALL_STATE(2813)] = 84358, + [SMALL_STATE(2814)] = 84378, + [SMALL_STATE(2815)] = 84398, + [SMALL_STATE(2816)] = 84418, + [SMALL_STATE(2817)] = 84438, + [SMALL_STATE(2818)] = 84454, + [SMALL_STATE(2819)] = 84472, + [SMALL_STATE(2820)] = 84492, + [SMALL_STATE(2821)] = 84512, + [SMALL_STATE(2822)] = 84530, + [SMALL_STATE(2823)] = 84548, + [SMALL_STATE(2824)] = 84568, + [SMALL_STATE(2825)] = 84584, + [SMALL_STATE(2826)] = 84602, + [SMALL_STATE(2827)] = 84622, + [SMALL_STATE(2828)] = 84642, + [SMALL_STATE(2829)] = 84662, + [SMALL_STATE(2830)] = 84682, + [SMALL_STATE(2831)] = 84702, + [SMALL_STATE(2832)] = 84722, + [SMALL_STATE(2833)] = 84738, + [SMALL_STATE(2834)] = 84758, + [SMALL_STATE(2835)] = 84778, + [SMALL_STATE(2836)] = 84798, + [SMALL_STATE(2837)] = 84818, + [SMALL_STATE(2838)] = 84838, + [SMALL_STATE(2839)] = 84858, + [SMALL_STATE(2840)] = 84878, + [SMALL_STATE(2841)] = 84898, + [SMALL_STATE(2842)] = 84918, + [SMALL_STATE(2843)] = 84938, + [SMALL_STATE(2844)] = 84956, + [SMALL_STATE(2845)] = 84976, + [SMALL_STATE(2846)] = 84996, + [SMALL_STATE(2847)] = 85014, + [SMALL_STATE(2848)] = 85034, + [SMALL_STATE(2849)] = 85052, + [SMALL_STATE(2850)] = 85072, + [SMALL_STATE(2851)] = 85090, + [SMALL_STATE(2852)] = 85110, + [SMALL_STATE(2853)] = 85130, + [SMALL_STATE(2854)] = 85150, + [SMALL_STATE(2855)] = 85166, + [SMALL_STATE(2856)] = 85184, + [SMALL_STATE(2857)] = 85204, + [SMALL_STATE(2858)] = 85224, + [SMALL_STATE(2859)] = 85244, + [SMALL_STATE(2860)] = 85262, + [SMALL_STATE(2861)] = 85282, + [SMALL_STATE(2862)] = 85300, + [SMALL_STATE(2863)] = 85320, + [SMALL_STATE(2864)] = 85338, + [SMALL_STATE(2865)] = 85358, + [SMALL_STATE(2866)] = 85378, + [SMALL_STATE(2867)] = 85398, + [SMALL_STATE(2868)] = 85418, + [SMALL_STATE(2869)] = 85434, + [SMALL_STATE(2870)] = 85450, + [SMALL_STATE(2871)] = 85470, + [SMALL_STATE(2872)] = 85490, + [SMALL_STATE(2873)] = 85510, + [SMALL_STATE(2874)] = 85530, + [SMALL_STATE(2875)] = 85550, + [SMALL_STATE(2876)] = 85570, + [SMALL_STATE(2877)] = 85590, + [SMALL_STATE(2878)] = 85610, + [SMALL_STATE(2879)] = 85628, + [SMALL_STATE(2880)] = 85644, + [SMALL_STATE(2881)] = 85662, + [SMALL_STATE(2882)] = 85678, + [SMALL_STATE(2883)] = 85696, + [SMALL_STATE(2884)] = 85716, + [SMALL_STATE(2885)] = 85736, + [SMALL_STATE(2886)] = 85756, + [SMALL_STATE(2887)] = 85776, + [SMALL_STATE(2888)] = 85796, + [SMALL_STATE(2889)] = 85816, + [SMALL_STATE(2890)] = 85836, + [SMALL_STATE(2891)] = 85854, + [SMALL_STATE(2892)] = 85874, + [SMALL_STATE(2893)] = 85894, + [SMALL_STATE(2894)] = 85914, + [SMALL_STATE(2895)] = 85932, + [SMALL_STATE(2896)] = 85952, + [SMALL_STATE(2897)] = 85968, + [SMALL_STATE(2898)] = 85988, + [SMALL_STATE(2899)] = 86008, + [SMALL_STATE(2900)] = 86028, + [SMALL_STATE(2901)] = 86048, + [SMALL_STATE(2902)] = 86068, + [SMALL_STATE(2903)] = 86088, + [SMALL_STATE(2904)] = 86106, + [SMALL_STATE(2905)] = 86126, + [SMALL_STATE(2906)] = 86146, + [SMALL_STATE(2907)] = 86166, + [SMALL_STATE(2908)] = 86186, + [SMALL_STATE(2909)] = 86206, + [SMALL_STATE(2910)] = 86224, + [SMALL_STATE(2911)] = 86244, + [SMALL_STATE(2912)] = 86264, + [SMALL_STATE(2913)] = 86284, + [SMALL_STATE(2914)] = 86302, + [SMALL_STATE(2915)] = 86322, + [SMALL_STATE(2916)] = 86342, [SMALL_STATE(2917)] = 86362, [SMALL_STATE(2918)] = 86382, - [SMALL_STATE(2919)] = 86398, - [SMALL_STATE(2920)] = 86414, - [SMALL_STATE(2921)] = 86434, - [SMALL_STATE(2922)] = 86454, - [SMALL_STATE(2923)] = 86474, - [SMALL_STATE(2924)] = 86494, - [SMALL_STATE(2925)] = 86514, - [SMALL_STATE(2926)] = 86534, - [SMALL_STATE(2927)] = 86554, - [SMALL_STATE(2928)] = 86574, - [SMALL_STATE(2929)] = 86594, - [SMALL_STATE(2930)] = 86612, - [SMALL_STATE(2931)] = 86630, - [SMALL_STATE(2932)] = 86650, - [SMALL_STATE(2933)] = 86670, - [SMALL_STATE(2934)] = 86688, - [SMALL_STATE(2935)] = 86708, - [SMALL_STATE(2936)] = 86724, - [SMALL_STATE(2937)] = 86740, - [SMALL_STATE(2938)] = 86760, - [SMALL_STATE(2939)] = 86780, - [SMALL_STATE(2940)] = 86800, - [SMALL_STATE(2941)] = 86820, - [SMALL_STATE(2942)] = 86838, - [SMALL_STATE(2943)] = 86854, - [SMALL_STATE(2944)] = 86874, - [SMALL_STATE(2945)] = 86894, - [SMALL_STATE(2946)] = 86912, - [SMALL_STATE(2947)] = 86932, - [SMALL_STATE(2948)] = 86952, - [SMALL_STATE(2949)] = 86972, - [SMALL_STATE(2950)] = 86992, - [SMALL_STATE(2951)] = 87012, - [SMALL_STATE(2952)] = 87032, - [SMALL_STATE(2953)] = 87052, - [SMALL_STATE(2954)] = 87072, - [SMALL_STATE(2955)] = 87088, - [SMALL_STATE(2956)] = 87108, + [SMALL_STATE(2919)] = 86402, + [SMALL_STATE(2920)] = 86422, + [SMALL_STATE(2921)] = 86442, + [SMALL_STATE(2922)] = 86462, + [SMALL_STATE(2923)] = 86482, + [SMALL_STATE(2924)] = 86502, + [SMALL_STATE(2925)] = 86522, + [SMALL_STATE(2926)] = 86542, + [SMALL_STATE(2927)] = 86562, + [SMALL_STATE(2928)] = 86582, + [SMALL_STATE(2929)] = 86602, + [SMALL_STATE(2930)] = 86620, + [SMALL_STATE(2931)] = 86640, + [SMALL_STATE(2932)] = 86660, + [SMALL_STATE(2933)] = 86680, + [SMALL_STATE(2934)] = 86700, + [SMALL_STATE(2935)] = 86720, + [SMALL_STATE(2936)] = 86736, + [SMALL_STATE(2937)] = 86754, + [SMALL_STATE(2938)] = 86774, + [SMALL_STATE(2939)] = 86794, + [SMALL_STATE(2940)] = 86814, + [SMALL_STATE(2941)] = 86834, + [SMALL_STATE(2942)] = 86854, + [SMALL_STATE(2943)] = 86872, + [SMALL_STATE(2944)] = 86888, + [SMALL_STATE(2945)] = 86908, + [SMALL_STATE(2946)] = 86928, + [SMALL_STATE(2947)] = 86948, + [SMALL_STATE(2948)] = 86964, + [SMALL_STATE(2949)] = 86984, + [SMALL_STATE(2950)] = 87000, + [SMALL_STATE(2951)] = 87020, + [SMALL_STATE(2952)] = 87036, + [SMALL_STATE(2953)] = 87056, + [SMALL_STATE(2954)] = 87076, + [SMALL_STATE(2955)] = 87092, + [SMALL_STATE(2956)] = 87112, [SMALL_STATE(2957)] = 87128, [SMALL_STATE(2958)] = 87148, - [SMALL_STATE(2959)] = 87168, - [SMALL_STATE(2960)] = 87188, - [SMALL_STATE(2961)] = 87208, - [SMALL_STATE(2962)] = 87228, - [SMALL_STATE(2963)] = 87246, - [SMALL_STATE(2964)] = 87266, - [SMALL_STATE(2965)] = 87284, - [SMALL_STATE(2966)] = 87304, - [SMALL_STATE(2967)] = 87324, - [SMALL_STATE(2968)] = 87344, - [SMALL_STATE(2969)] = 87360, - [SMALL_STATE(2970)] = 87380, - [SMALL_STATE(2971)] = 87400, - [SMALL_STATE(2972)] = 87420, - [SMALL_STATE(2973)] = 87436, - [SMALL_STATE(2974)] = 87456, - [SMALL_STATE(2975)] = 87476, - [SMALL_STATE(2976)] = 87492, - [SMALL_STATE(2977)] = 87512, - [SMALL_STATE(2978)] = 87532, - [SMALL_STATE(2979)] = 87548, - [SMALL_STATE(2980)] = 87568, - [SMALL_STATE(2981)] = 87586, - [SMALL_STATE(2982)] = 87606, - [SMALL_STATE(2983)] = 87626, - [SMALL_STATE(2984)] = 87646, - [SMALL_STATE(2985)] = 87662, - [SMALL_STATE(2986)] = 87678, - [SMALL_STATE(2987)] = 87694, - [SMALL_STATE(2988)] = 87714, - [SMALL_STATE(2989)] = 87730, - [SMALL_STATE(2990)] = 87748, - [SMALL_STATE(2991)] = 87766, - [SMALL_STATE(2992)] = 87786, - [SMALL_STATE(2993)] = 87804, - [SMALL_STATE(2994)] = 87824, - [SMALL_STATE(2995)] = 87844, - [SMALL_STATE(2996)] = 87864, - [SMALL_STATE(2997)] = 87880, - [SMALL_STATE(2998)] = 87898, - [SMALL_STATE(2999)] = 87918, - [SMALL_STATE(3000)] = 87938, - [SMALL_STATE(3001)] = 87956, - [SMALL_STATE(3002)] = 87974, - [SMALL_STATE(3003)] = 87992, - [SMALL_STATE(3004)] = 88010, - [SMALL_STATE(3005)] = 88030, - [SMALL_STATE(3006)] = 88046, - [SMALL_STATE(3007)] = 88062, - [SMALL_STATE(3008)] = 88080, - [SMALL_STATE(3009)] = 88096, - [SMALL_STATE(3010)] = 88116, - [SMALL_STATE(3011)] = 88136, - [SMALL_STATE(3012)] = 88152, - [SMALL_STATE(3013)] = 88172, - [SMALL_STATE(3014)] = 88192, - [SMALL_STATE(3015)] = 88210, - [SMALL_STATE(3016)] = 88228, - [SMALL_STATE(3017)] = 88248, - [SMALL_STATE(3018)] = 88268, - [SMALL_STATE(3019)] = 88288, - [SMALL_STATE(3020)] = 88308, - [SMALL_STATE(3021)] = 88326, - [SMALL_STATE(3022)] = 88342, - [SMALL_STATE(3023)] = 88362, - [SMALL_STATE(3024)] = 88380, - [SMALL_STATE(3025)] = 88400, - [SMALL_STATE(3026)] = 88420, - [SMALL_STATE(3027)] = 88440, - [SMALL_STATE(3028)] = 88460, - [SMALL_STATE(3029)] = 88476, - [SMALL_STATE(3030)] = 88494, - [SMALL_STATE(3031)] = 88514, - [SMALL_STATE(3032)] = 88534, - [SMALL_STATE(3033)] = 88554, - [SMALL_STATE(3034)] = 88574, - [SMALL_STATE(3035)] = 88594, - [SMALL_STATE(3036)] = 88612, - [SMALL_STATE(3037)] = 88632, - [SMALL_STATE(3038)] = 88650, - [SMALL_STATE(3039)] = 88670, - [SMALL_STATE(3040)] = 88688, - [SMALL_STATE(3041)] = 88708, - [SMALL_STATE(3042)] = 88728, - [SMALL_STATE(3043)] = 88748, - [SMALL_STATE(3044)] = 88766, - [SMALL_STATE(3045)] = 88782, - [SMALL_STATE(3046)] = 88802, - [SMALL_STATE(3047)] = 88822, - [SMALL_STATE(3048)] = 88842, - [SMALL_STATE(3049)] = 88862, - [SMALL_STATE(3050)] = 88882, - [SMALL_STATE(3051)] = 88902, - [SMALL_STATE(3052)] = 88920, - [SMALL_STATE(3053)] = 88940, - [SMALL_STATE(3054)] = 88960, - [SMALL_STATE(3055)] = 88980, - [SMALL_STATE(3056)] = 89000, - [SMALL_STATE(3057)] = 89020, - [SMALL_STATE(3058)] = 89037, - [SMALL_STATE(3059)] = 89052, - [SMALL_STATE(3060)] = 89069, - [SMALL_STATE(3061)] = 89086, - [SMALL_STATE(3062)] = 89103, - [SMALL_STATE(3063)] = 89120, - [SMALL_STATE(3064)] = 89137, - [SMALL_STATE(3065)] = 89154, - [SMALL_STATE(3066)] = 89171, + [SMALL_STATE(2959)] = 87164, + [SMALL_STATE(2960)] = 87184, + [SMALL_STATE(2961)] = 87204, + [SMALL_STATE(2962)] = 87222, + [SMALL_STATE(2963)] = 87240, + [SMALL_STATE(2964)] = 87256, + [SMALL_STATE(2965)] = 87272, + [SMALL_STATE(2966)] = 87292, + [SMALL_STATE(2967)] = 87312, + [SMALL_STATE(2968)] = 87332, + [SMALL_STATE(2969)] = 87348, + [SMALL_STATE(2970)] = 87364, + [SMALL_STATE(2971)] = 87384, + [SMALL_STATE(2972)] = 87400, + [SMALL_STATE(2973)] = 87420, + [SMALL_STATE(2974)] = 87436, + [SMALL_STATE(2975)] = 87454, + [SMALL_STATE(2976)] = 87474, + [SMALL_STATE(2977)] = 87494, + [SMALL_STATE(2978)] = 87514, + [SMALL_STATE(2979)] = 87534, + [SMALL_STATE(2980)] = 87554, + [SMALL_STATE(2981)] = 87574, + [SMALL_STATE(2982)] = 87590, + [SMALL_STATE(2983)] = 87610, + [SMALL_STATE(2984)] = 87630, + [SMALL_STATE(2985)] = 87650, + [SMALL_STATE(2986)] = 87670, + [SMALL_STATE(2987)] = 87686, + [SMALL_STATE(2988)] = 87706, + [SMALL_STATE(2989)] = 87724, + [SMALL_STATE(2990)] = 87744, + [SMALL_STATE(2991)] = 87764, + [SMALL_STATE(2992)] = 87780, + [SMALL_STATE(2993)] = 87796, + [SMALL_STATE(2994)] = 87812, + [SMALL_STATE(2995)] = 87828, + [SMALL_STATE(2996)] = 87844, + [SMALL_STATE(2997)] = 87860, + [SMALL_STATE(2998)] = 87880, + [SMALL_STATE(2999)] = 87900, + [SMALL_STATE(3000)] = 87920, + [SMALL_STATE(3001)] = 87940, + [SMALL_STATE(3002)] = 87958, + [SMALL_STATE(3003)] = 87978, + [SMALL_STATE(3004)] = 87994, + [SMALL_STATE(3005)] = 88014, + [SMALL_STATE(3006)] = 88034, + [SMALL_STATE(3007)] = 88054, + [SMALL_STATE(3008)] = 88072, + [SMALL_STATE(3009)] = 88090, + [SMALL_STATE(3010)] = 88110, + [SMALL_STATE(3011)] = 88128, + [SMALL_STATE(3012)] = 88144, + [SMALL_STATE(3013)] = 88162, + [SMALL_STATE(3014)] = 88182, + [SMALL_STATE(3015)] = 88202, + [SMALL_STATE(3016)] = 88222, + [SMALL_STATE(3017)] = 88242, + [SMALL_STATE(3018)] = 88262, + [SMALL_STATE(3019)] = 88282, + [SMALL_STATE(3020)] = 88298, + [SMALL_STATE(3021)] = 88316, + [SMALL_STATE(3022)] = 88336, + [SMALL_STATE(3023)] = 88356, + [SMALL_STATE(3024)] = 88376, + [SMALL_STATE(3025)] = 88392, + [SMALL_STATE(3026)] = 88412, + [SMALL_STATE(3027)] = 88432, + [SMALL_STATE(3028)] = 88452, + [SMALL_STATE(3029)] = 88472, + [SMALL_STATE(3030)] = 88488, + [SMALL_STATE(3031)] = 88504, + [SMALL_STATE(3032)] = 88524, + [SMALL_STATE(3033)] = 88544, + [SMALL_STATE(3034)] = 88560, + [SMALL_STATE(3035)] = 88580, + [SMALL_STATE(3036)] = 88600, + [SMALL_STATE(3037)] = 88620, + [SMALL_STATE(3038)] = 88640, + [SMALL_STATE(3039)] = 88660, + [SMALL_STATE(3040)] = 88676, + [SMALL_STATE(3041)] = 88692, + [SMALL_STATE(3042)] = 88712, + [SMALL_STATE(3043)] = 88728, + [SMALL_STATE(3044)] = 88744, + [SMALL_STATE(3045)] = 88764, + [SMALL_STATE(3046)] = 88780, + [SMALL_STATE(3047)] = 88800, + [SMALL_STATE(3048)] = 88820, + [SMALL_STATE(3049)] = 88840, + [SMALL_STATE(3050)] = 88860, + [SMALL_STATE(3051)] = 88878, + [SMALL_STATE(3052)] = 88898, + [SMALL_STATE(3053)] = 88914, + [SMALL_STATE(3054)] = 88934, + [SMALL_STATE(3055)] = 88954, + [SMALL_STATE(3056)] = 88974, + [SMALL_STATE(3057)] = 88994, + [SMALL_STATE(3058)] = 89014, + [SMALL_STATE(3059)] = 89034, + [SMALL_STATE(3060)] = 89052, + [SMALL_STATE(3061)] = 89072, + [SMALL_STATE(3062)] = 89092, + [SMALL_STATE(3063)] = 89112, + [SMALL_STATE(3064)] = 89132, + [SMALL_STATE(3065)] = 89148, + [SMALL_STATE(3066)] = 89168, [SMALL_STATE(3067)] = 89188, - [SMALL_STATE(3068)] = 89203, - [SMALL_STATE(3069)] = 89220, - [SMALL_STATE(3070)] = 89237, - [SMALL_STATE(3071)] = 89254, - [SMALL_STATE(3072)] = 89271, - [SMALL_STATE(3073)] = 89286, - [SMALL_STATE(3074)] = 89303, - [SMALL_STATE(3075)] = 89320, - [SMALL_STATE(3076)] = 89335, - [SMALL_STATE(3077)] = 89352, - [SMALL_STATE(3078)] = 89369, - [SMALL_STATE(3079)] = 89384, - [SMALL_STATE(3080)] = 89399, - [SMALL_STATE(3081)] = 89416, - [SMALL_STATE(3082)] = 89431, - [SMALL_STATE(3083)] = 89448, - [SMALL_STATE(3084)] = 89465, - [SMALL_STATE(3085)] = 89482, - [SMALL_STATE(3086)] = 89499, - [SMALL_STATE(3087)] = 89514, - [SMALL_STATE(3088)] = 89531, - [SMALL_STATE(3089)] = 89546, - [SMALL_STATE(3090)] = 89563, - [SMALL_STATE(3091)] = 89580, - [SMALL_STATE(3092)] = 89597, - [SMALL_STATE(3093)] = 89614, - [SMALL_STATE(3094)] = 89631, - [SMALL_STATE(3095)] = 89646, - [SMALL_STATE(3096)] = 89663, - [SMALL_STATE(3097)] = 89678, - [SMALL_STATE(3098)] = 89695, - [SMALL_STATE(3099)] = 89712, - [SMALL_STATE(3100)] = 89729, - [SMALL_STATE(3101)] = 89746, - [SMALL_STATE(3102)] = 89763, - [SMALL_STATE(3103)] = 89780, - [SMALL_STATE(3104)] = 89797, - [SMALL_STATE(3105)] = 89812, - [SMALL_STATE(3106)] = 89829, - [SMALL_STATE(3107)] = 89846, - [SMALL_STATE(3108)] = 89863, - [SMALL_STATE(3109)] = 89880, - [SMALL_STATE(3110)] = 89897, - [SMALL_STATE(3111)] = 89914, - [SMALL_STATE(3112)] = 89931, - [SMALL_STATE(3113)] = 89948, - [SMALL_STATE(3114)] = 89965, - [SMALL_STATE(3115)] = 89982, - [SMALL_STATE(3116)] = 89997, - [SMALL_STATE(3117)] = 90012, - [SMALL_STATE(3118)] = 90029, - [SMALL_STATE(3119)] = 90046, - [SMALL_STATE(3120)] = 90063, - [SMALL_STATE(3121)] = 90080, - [SMALL_STATE(3122)] = 90097, - [SMALL_STATE(3123)] = 90112, - [SMALL_STATE(3124)] = 90127, - [SMALL_STATE(3125)] = 90144, - [SMALL_STATE(3126)] = 90161, - [SMALL_STATE(3127)] = 90178, - [SMALL_STATE(3128)] = 90195, - [SMALL_STATE(3129)] = 90212, - [SMALL_STATE(3130)] = 90229, - [SMALL_STATE(3131)] = 90246, - [SMALL_STATE(3132)] = 90263, - [SMALL_STATE(3133)] = 90278, - [SMALL_STATE(3134)] = 90295, - [SMALL_STATE(3135)] = 90312, - [SMALL_STATE(3136)] = 90329, - [SMALL_STATE(3137)] = 90346, - [SMALL_STATE(3138)] = 90361, - [SMALL_STATE(3139)] = 90376, - [SMALL_STATE(3140)] = 90393, - [SMALL_STATE(3141)] = 90408, - [SMALL_STATE(3142)] = 90425, - [SMALL_STATE(3143)] = 90442, - [SMALL_STATE(3144)] = 90459, - [SMALL_STATE(3145)] = 90476, - [SMALL_STATE(3146)] = 90493, - [SMALL_STATE(3147)] = 90510, - [SMALL_STATE(3148)] = 90527, - [SMALL_STATE(3149)] = 90544, - [SMALL_STATE(3150)] = 90561, - [SMALL_STATE(3151)] = 90578, - [SMALL_STATE(3152)] = 90595, - [SMALL_STATE(3153)] = 90612, - [SMALL_STATE(3154)] = 90629, - [SMALL_STATE(3155)] = 90646, - [SMALL_STATE(3156)] = 90663, - [SMALL_STATE(3157)] = 90680, - [SMALL_STATE(3158)] = 90697, - [SMALL_STATE(3159)] = 90712, - [SMALL_STATE(3160)] = 90729, - [SMALL_STATE(3161)] = 90744, - [SMALL_STATE(3162)] = 90761, - [SMALL_STATE(3163)] = 90778, - [SMALL_STATE(3164)] = 90795, - [SMALL_STATE(3165)] = 90812, - [SMALL_STATE(3166)] = 90829, - [SMALL_STATE(3167)] = 90844, - [SMALL_STATE(3168)] = 90861, - [SMALL_STATE(3169)] = 90878, - [SMALL_STATE(3170)] = 90895, - [SMALL_STATE(3171)] = 90912, - [SMALL_STATE(3172)] = 90927, - [SMALL_STATE(3173)] = 90944, - [SMALL_STATE(3174)] = 90961, - [SMALL_STATE(3175)] = 90978, - [SMALL_STATE(3176)] = 90995, - [SMALL_STATE(3177)] = 91012, - [SMALL_STATE(3178)] = 91027, - [SMALL_STATE(3179)] = 91044, - [SMALL_STATE(3180)] = 91061, - [SMALL_STATE(3181)] = 91078, - [SMALL_STATE(3182)] = 91095, - [SMALL_STATE(3183)] = 91112, - [SMALL_STATE(3184)] = 91129, - [SMALL_STATE(3185)] = 91144, - [SMALL_STATE(3186)] = 91161, - [SMALL_STATE(3187)] = 91178, - [SMALL_STATE(3188)] = 91195, - [SMALL_STATE(3189)] = 91212, - [SMALL_STATE(3190)] = 91227, - [SMALL_STATE(3191)] = 91244, - [SMALL_STATE(3192)] = 91261, - [SMALL_STATE(3193)] = 91278, - [SMALL_STATE(3194)] = 91295, - [SMALL_STATE(3195)] = 91312, - [SMALL_STATE(3196)] = 91329, - [SMALL_STATE(3197)] = 91346, - [SMALL_STATE(3198)] = 91363, - [SMALL_STATE(3199)] = 91380, - [SMALL_STATE(3200)] = 91397, - [SMALL_STATE(3201)] = 91412, - [SMALL_STATE(3202)] = 91429, - [SMALL_STATE(3203)] = 91446, - [SMALL_STATE(3204)] = 91463, - [SMALL_STATE(3205)] = 91480, - [SMALL_STATE(3206)] = 91497, - [SMALL_STATE(3207)] = 91514, - [SMALL_STATE(3208)] = 91531, - [SMALL_STATE(3209)] = 91548, - [SMALL_STATE(3210)] = 91565, - [SMALL_STATE(3211)] = 91582, - [SMALL_STATE(3212)] = 91599, - [SMALL_STATE(3213)] = 91616, - [SMALL_STATE(3214)] = 91633, - [SMALL_STATE(3215)] = 91648, - [SMALL_STATE(3216)] = 91665, - [SMALL_STATE(3217)] = 91682, - [SMALL_STATE(3218)] = 91699, - [SMALL_STATE(3219)] = 91714, - [SMALL_STATE(3220)] = 91731, - [SMALL_STATE(3221)] = 91748, - [SMALL_STATE(3222)] = 91765, - [SMALL_STATE(3223)] = 91780, - [SMALL_STATE(3224)] = 91797, - [SMALL_STATE(3225)] = 91814, - [SMALL_STATE(3226)] = 91831, - [SMALL_STATE(3227)] = 91848, - [SMALL_STATE(3228)] = 91865, - [SMALL_STATE(3229)] = 91882, - [SMALL_STATE(3230)] = 91899, - [SMALL_STATE(3231)] = 91914, - [SMALL_STATE(3232)] = 91931, - [SMALL_STATE(3233)] = 91948, - [SMALL_STATE(3234)] = 91963, - [SMALL_STATE(3235)] = 91980, - [SMALL_STATE(3236)] = 91997, - [SMALL_STATE(3237)] = 92014, - [SMALL_STATE(3238)] = 92031, - [SMALL_STATE(3239)] = 92048, - [SMALL_STATE(3240)] = 92065, - [SMALL_STATE(3241)] = 92082, - [SMALL_STATE(3242)] = 92097, - [SMALL_STATE(3243)] = 92114, - [SMALL_STATE(3244)] = 92131, - [SMALL_STATE(3245)] = 92148, - [SMALL_STATE(3246)] = 92165, - [SMALL_STATE(3247)] = 92180, - [SMALL_STATE(3248)] = 92197, - [SMALL_STATE(3249)] = 92212, - [SMALL_STATE(3250)] = 92229, - [SMALL_STATE(3251)] = 92244, - [SMALL_STATE(3252)] = 92259, - [SMALL_STATE(3253)] = 92276, - [SMALL_STATE(3254)] = 92293, - [SMALL_STATE(3255)] = 92308, - [SMALL_STATE(3256)] = 92325, - [SMALL_STATE(3257)] = 92342, - [SMALL_STATE(3258)] = 92359, - [SMALL_STATE(3259)] = 92374, - [SMALL_STATE(3260)] = 92391, - [SMALL_STATE(3261)] = 92408, - [SMALL_STATE(3262)] = 92425, - [SMALL_STATE(3263)] = 92442, - [SMALL_STATE(3264)] = 92459, - [SMALL_STATE(3265)] = 92476, - [SMALL_STATE(3266)] = 92493, - [SMALL_STATE(3267)] = 92510, - [SMALL_STATE(3268)] = 92527, - [SMALL_STATE(3269)] = 92544, - [SMALL_STATE(3270)] = 92559, - [SMALL_STATE(3271)] = 92574, - [SMALL_STATE(3272)] = 92591, - [SMALL_STATE(3273)] = 92608, - [SMALL_STATE(3274)] = 92625, - [SMALL_STATE(3275)] = 92642, - [SMALL_STATE(3276)] = 92659, - [SMALL_STATE(3277)] = 92676, - [SMALL_STATE(3278)] = 92693, - [SMALL_STATE(3279)] = 92710, - [SMALL_STATE(3280)] = 92725, - [SMALL_STATE(3281)] = 92742, - [SMALL_STATE(3282)] = 92759, - [SMALL_STATE(3283)] = 92776, - [SMALL_STATE(3284)] = 92793, - [SMALL_STATE(3285)] = 92810, - [SMALL_STATE(3286)] = 92827, - [SMALL_STATE(3287)] = 92844, - [SMALL_STATE(3288)] = 92861, - [SMALL_STATE(3289)] = 92878, - [SMALL_STATE(3290)] = 92895, - [SMALL_STATE(3291)] = 92912, - [SMALL_STATE(3292)] = 92929, - [SMALL_STATE(3293)] = 92946, - [SMALL_STATE(3294)] = 92963, - [SMALL_STATE(3295)] = 92980, - [SMALL_STATE(3296)] = 92997, - [SMALL_STATE(3297)] = 93012, - [SMALL_STATE(3298)] = 93029, - [SMALL_STATE(3299)] = 93046, - [SMALL_STATE(3300)] = 93063, - [SMALL_STATE(3301)] = 93080, - [SMALL_STATE(3302)] = 93097, - [SMALL_STATE(3303)] = 93114, - [SMALL_STATE(3304)] = 93129, - [SMALL_STATE(3305)] = 93146, - [SMALL_STATE(3306)] = 93161, - [SMALL_STATE(3307)] = 93178, - [SMALL_STATE(3308)] = 93193, - [SMALL_STATE(3309)] = 93210, - [SMALL_STATE(3310)] = 93227, - [SMALL_STATE(3311)] = 93242, - [SMALL_STATE(3312)] = 93257, - [SMALL_STATE(3313)] = 93272, - [SMALL_STATE(3314)] = 93289, - [SMALL_STATE(3315)] = 93306, - [SMALL_STATE(3316)] = 93321, - [SMALL_STATE(3317)] = 93338, - [SMALL_STATE(3318)] = 93355, - [SMALL_STATE(3319)] = 93370, - [SMALL_STATE(3320)] = 93387, - [SMALL_STATE(3321)] = 93404, - [SMALL_STATE(3322)] = 93421, - [SMALL_STATE(3323)] = 93438, - [SMALL_STATE(3324)] = 93455, - [SMALL_STATE(3325)] = 93472, - [SMALL_STATE(3326)] = 93489, - [SMALL_STATE(3327)] = 93506, - [SMALL_STATE(3328)] = 93523, - [SMALL_STATE(3329)] = 93540, - [SMALL_STATE(3330)] = 93557, - [SMALL_STATE(3331)] = 93574, - [SMALL_STATE(3332)] = 93591, - [SMALL_STATE(3333)] = 93608, - [SMALL_STATE(3334)] = 93625, - [SMALL_STATE(3335)] = 93642, - [SMALL_STATE(3336)] = 93659, - [SMALL_STATE(3337)] = 93674, - [SMALL_STATE(3338)] = 93691, - [SMALL_STATE(3339)] = 93708, - [SMALL_STATE(3340)] = 93725, - [SMALL_STATE(3341)] = 93740, - [SMALL_STATE(3342)] = 93754, - [SMALL_STATE(3343)] = 93768, - [SMALL_STATE(3344)] = 93782, - [SMALL_STATE(3345)] = 93796, - [SMALL_STATE(3346)] = 93810, - [SMALL_STATE(3347)] = 93824, - [SMALL_STATE(3348)] = 93838, - [SMALL_STATE(3349)] = 93852, - [SMALL_STATE(3350)] = 93866, - [SMALL_STATE(3351)] = 93880, - [SMALL_STATE(3352)] = 93894, - [SMALL_STATE(3353)] = 93908, - [SMALL_STATE(3354)] = 93922, - [SMALL_STATE(3355)] = 93936, - [SMALL_STATE(3356)] = 93950, - [SMALL_STATE(3357)] = 93964, - [SMALL_STATE(3358)] = 93978, - [SMALL_STATE(3359)] = 93992, - [SMALL_STATE(3360)] = 94006, - [SMALL_STATE(3361)] = 94020, - [SMALL_STATE(3362)] = 94034, - [SMALL_STATE(3363)] = 94048, - [SMALL_STATE(3364)] = 94062, - [SMALL_STATE(3365)] = 94076, - [SMALL_STATE(3366)] = 94090, - [SMALL_STATE(3367)] = 94104, - [SMALL_STATE(3368)] = 94118, - [SMALL_STATE(3369)] = 94132, - [SMALL_STATE(3370)] = 94146, - [SMALL_STATE(3371)] = 94160, - [SMALL_STATE(3372)] = 94174, - [SMALL_STATE(3373)] = 94188, - [SMALL_STATE(3374)] = 94202, - [SMALL_STATE(3375)] = 94216, - [SMALL_STATE(3376)] = 94230, - [SMALL_STATE(3377)] = 94244, - [SMALL_STATE(3378)] = 94258, - [SMALL_STATE(3379)] = 94272, - [SMALL_STATE(3380)] = 94286, - [SMALL_STATE(3381)] = 94300, - [SMALL_STATE(3382)] = 94314, - [SMALL_STATE(3383)] = 94328, - [SMALL_STATE(3384)] = 94342, - [SMALL_STATE(3385)] = 94356, - [SMALL_STATE(3386)] = 94370, - [SMALL_STATE(3387)] = 94384, - [SMALL_STATE(3388)] = 94398, - [SMALL_STATE(3389)] = 94412, - [SMALL_STATE(3390)] = 94426, - [SMALL_STATE(3391)] = 94440, - [SMALL_STATE(3392)] = 94454, - [SMALL_STATE(3393)] = 94468, - [SMALL_STATE(3394)] = 94482, - [SMALL_STATE(3395)] = 94496, - [SMALL_STATE(3396)] = 94510, - [SMALL_STATE(3397)] = 94524, - [SMALL_STATE(3398)] = 94538, - [SMALL_STATE(3399)] = 94552, - [SMALL_STATE(3400)] = 94566, - [SMALL_STATE(3401)] = 94580, - [SMALL_STATE(3402)] = 94594, - [SMALL_STATE(3403)] = 94608, - [SMALL_STATE(3404)] = 94622, - [SMALL_STATE(3405)] = 94636, - [SMALL_STATE(3406)] = 94650, - [SMALL_STATE(3407)] = 94664, - [SMALL_STATE(3408)] = 94678, - [SMALL_STATE(3409)] = 94692, - [SMALL_STATE(3410)] = 94706, - [SMALL_STATE(3411)] = 94720, - [SMALL_STATE(3412)] = 94734, - [SMALL_STATE(3413)] = 94748, - [SMALL_STATE(3414)] = 94762, - [SMALL_STATE(3415)] = 94776, - [SMALL_STATE(3416)] = 94790, - [SMALL_STATE(3417)] = 94804, - [SMALL_STATE(3418)] = 94818, - [SMALL_STATE(3419)] = 94832, - [SMALL_STATE(3420)] = 94846, - [SMALL_STATE(3421)] = 94860, - [SMALL_STATE(3422)] = 94874, - [SMALL_STATE(3423)] = 94888, - [SMALL_STATE(3424)] = 94902, - [SMALL_STATE(3425)] = 94916, - [SMALL_STATE(3426)] = 94930, - [SMALL_STATE(3427)] = 94944, - [SMALL_STATE(3428)] = 94958, - [SMALL_STATE(3429)] = 94972, - [SMALL_STATE(3430)] = 94986, - [SMALL_STATE(3431)] = 95000, - [SMALL_STATE(3432)] = 95014, - [SMALL_STATE(3433)] = 95028, - [SMALL_STATE(3434)] = 95042, - [SMALL_STATE(3435)] = 95056, - [SMALL_STATE(3436)] = 95070, - [SMALL_STATE(3437)] = 95084, - [SMALL_STATE(3438)] = 95098, - [SMALL_STATE(3439)] = 95112, - [SMALL_STATE(3440)] = 95126, - [SMALL_STATE(3441)] = 95140, - [SMALL_STATE(3442)] = 95154, - [SMALL_STATE(3443)] = 95168, - [SMALL_STATE(3444)] = 95182, - [SMALL_STATE(3445)] = 95196, - [SMALL_STATE(3446)] = 95210, - [SMALL_STATE(3447)] = 95224, - [SMALL_STATE(3448)] = 95238, - [SMALL_STATE(3449)] = 95252, - [SMALL_STATE(3450)] = 95266, - [SMALL_STATE(3451)] = 95280, - [SMALL_STATE(3452)] = 95294, - [SMALL_STATE(3453)] = 95308, - [SMALL_STATE(3454)] = 95322, - [SMALL_STATE(3455)] = 95336, - [SMALL_STATE(3456)] = 95350, - [SMALL_STATE(3457)] = 95364, - [SMALL_STATE(3458)] = 95378, - [SMALL_STATE(3459)] = 95392, - [SMALL_STATE(3460)] = 95406, - [SMALL_STATE(3461)] = 95420, - [SMALL_STATE(3462)] = 95434, - [SMALL_STATE(3463)] = 95448, - [SMALL_STATE(3464)] = 95462, - [SMALL_STATE(3465)] = 95476, - [SMALL_STATE(3466)] = 95490, - [SMALL_STATE(3467)] = 95504, - [SMALL_STATE(3468)] = 95518, - [SMALL_STATE(3469)] = 95532, - [SMALL_STATE(3470)] = 95546, - [SMALL_STATE(3471)] = 95560, - [SMALL_STATE(3472)] = 95574, - [SMALL_STATE(3473)] = 95588, - [SMALL_STATE(3474)] = 95602, - [SMALL_STATE(3475)] = 95616, - [SMALL_STATE(3476)] = 95630, - [SMALL_STATE(3477)] = 95644, - [SMALL_STATE(3478)] = 95658, - [SMALL_STATE(3479)] = 95672, - [SMALL_STATE(3480)] = 95686, - [SMALL_STATE(3481)] = 95700, - [SMALL_STATE(3482)] = 95714, - [SMALL_STATE(3483)] = 95728, - [SMALL_STATE(3484)] = 95742, - [SMALL_STATE(3485)] = 95756, - [SMALL_STATE(3486)] = 95770, - [SMALL_STATE(3487)] = 95784, - [SMALL_STATE(3488)] = 95798, - [SMALL_STATE(3489)] = 95812, - [SMALL_STATE(3490)] = 95826, - [SMALL_STATE(3491)] = 95840, - [SMALL_STATE(3492)] = 95854, - [SMALL_STATE(3493)] = 95868, - [SMALL_STATE(3494)] = 95882, - [SMALL_STATE(3495)] = 95896, - [SMALL_STATE(3496)] = 95910, - [SMALL_STATE(3497)] = 95924, - [SMALL_STATE(3498)] = 95938, - [SMALL_STATE(3499)] = 95952, - [SMALL_STATE(3500)] = 95966, - [SMALL_STATE(3501)] = 95980, - [SMALL_STATE(3502)] = 95994, - [SMALL_STATE(3503)] = 96008, - [SMALL_STATE(3504)] = 96022, - [SMALL_STATE(3505)] = 96036, - [SMALL_STATE(3506)] = 96050, - [SMALL_STATE(3507)] = 96064, - [SMALL_STATE(3508)] = 96078, - [SMALL_STATE(3509)] = 96092, - [SMALL_STATE(3510)] = 96106, - [SMALL_STATE(3511)] = 96120, - [SMALL_STATE(3512)] = 96134, - [SMALL_STATE(3513)] = 96148, - [SMALL_STATE(3514)] = 96162, - [SMALL_STATE(3515)] = 96176, - [SMALL_STATE(3516)] = 96190, - [SMALL_STATE(3517)] = 96204, - [SMALL_STATE(3518)] = 96218, - [SMALL_STATE(3519)] = 96232, - [SMALL_STATE(3520)] = 96246, - [SMALL_STATE(3521)] = 96260, - [SMALL_STATE(3522)] = 96274, - [SMALL_STATE(3523)] = 96288, - [SMALL_STATE(3524)] = 96302, - [SMALL_STATE(3525)] = 96316, - [SMALL_STATE(3526)] = 96330, - [SMALL_STATE(3527)] = 96344, - [SMALL_STATE(3528)] = 96358, - [SMALL_STATE(3529)] = 96372, - [SMALL_STATE(3530)] = 96386, - [SMALL_STATE(3531)] = 96400, - [SMALL_STATE(3532)] = 96414, - [SMALL_STATE(3533)] = 96428, - [SMALL_STATE(3534)] = 96442, - [SMALL_STATE(3535)] = 96456, - [SMALL_STATE(3536)] = 96470, - [SMALL_STATE(3537)] = 96484, - [SMALL_STATE(3538)] = 96498, - [SMALL_STATE(3539)] = 96512, - [SMALL_STATE(3540)] = 96526, - [SMALL_STATE(3541)] = 96540, - [SMALL_STATE(3542)] = 96554, - [SMALL_STATE(3543)] = 96568, - [SMALL_STATE(3544)] = 96582, - [SMALL_STATE(3545)] = 96596, - [SMALL_STATE(3546)] = 96610, - [SMALL_STATE(3547)] = 96624, - [SMALL_STATE(3548)] = 96638, - [SMALL_STATE(3549)] = 96652, - [SMALL_STATE(3550)] = 96666, - [SMALL_STATE(3551)] = 96680, - [SMALL_STATE(3552)] = 96694, - [SMALL_STATE(3553)] = 96708, - [SMALL_STATE(3554)] = 96722, - [SMALL_STATE(3555)] = 96736, - [SMALL_STATE(3556)] = 96750, - [SMALL_STATE(3557)] = 96764, - [SMALL_STATE(3558)] = 96778, - [SMALL_STATE(3559)] = 96792, - [SMALL_STATE(3560)] = 96806, - [SMALL_STATE(3561)] = 96820, - [SMALL_STATE(3562)] = 96834, - [SMALL_STATE(3563)] = 96848, - [SMALL_STATE(3564)] = 96862, - [SMALL_STATE(3565)] = 96876, - [SMALL_STATE(3566)] = 96890, - [SMALL_STATE(3567)] = 96904, - [SMALL_STATE(3568)] = 96918, - [SMALL_STATE(3569)] = 96932, - [SMALL_STATE(3570)] = 96946, - [SMALL_STATE(3571)] = 96960, - [SMALL_STATE(3572)] = 96974, - [SMALL_STATE(3573)] = 96988, - [SMALL_STATE(3574)] = 97002, - [SMALL_STATE(3575)] = 97016, - [SMALL_STATE(3576)] = 97030, - [SMALL_STATE(3577)] = 97044, - [SMALL_STATE(3578)] = 97058, - [SMALL_STATE(3579)] = 97072, - [SMALL_STATE(3580)] = 97086, - [SMALL_STATE(3581)] = 97100, - [SMALL_STATE(3582)] = 97114, - [SMALL_STATE(3583)] = 97128, - [SMALL_STATE(3584)] = 97142, - [SMALL_STATE(3585)] = 97156, - [SMALL_STATE(3586)] = 97170, - [SMALL_STATE(3587)] = 97184, - [SMALL_STATE(3588)] = 97198, - [SMALL_STATE(3589)] = 97212, - [SMALL_STATE(3590)] = 97226, - [SMALL_STATE(3591)] = 97240, - [SMALL_STATE(3592)] = 97254, - [SMALL_STATE(3593)] = 97268, - [SMALL_STATE(3594)] = 97282, - [SMALL_STATE(3595)] = 97296, - [SMALL_STATE(3596)] = 97310, - [SMALL_STATE(3597)] = 97324, - [SMALL_STATE(3598)] = 97338, - [SMALL_STATE(3599)] = 97352, - [SMALL_STATE(3600)] = 97366, - [SMALL_STATE(3601)] = 97380, - [SMALL_STATE(3602)] = 97394, - [SMALL_STATE(3603)] = 97408, - [SMALL_STATE(3604)] = 97422, - [SMALL_STATE(3605)] = 97436, - [SMALL_STATE(3606)] = 97450, - [SMALL_STATE(3607)] = 97464, - [SMALL_STATE(3608)] = 97478, - [SMALL_STATE(3609)] = 97492, - [SMALL_STATE(3610)] = 97506, - [SMALL_STATE(3611)] = 97520, - [SMALL_STATE(3612)] = 97534, - [SMALL_STATE(3613)] = 97548, - [SMALL_STATE(3614)] = 97562, - [SMALL_STATE(3615)] = 97576, - [SMALL_STATE(3616)] = 97590, - [SMALL_STATE(3617)] = 97604, - [SMALL_STATE(3618)] = 97618, - [SMALL_STATE(3619)] = 97632, - [SMALL_STATE(3620)] = 97646, - [SMALL_STATE(3621)] = 97660, - [SMALL_STATE(3622)] = 97674, - [SMALL_STATE(3623)] = 97688, - [SMALL_STATE(3624)] = 97702, - [SMALL_STATE(3625)] = 97716, - [SMALL_STATE(3626)] = 97730, - [SMALL_STATE(3627)] = 97744, - [SMALL_STATE(3628)] = 97758, - [SMALL_STATE(3629)] = 97772, - [SMALL_STATE(3630)] = 97786, - [SMALL_STATE(3631)] = 97800, - [SMALL_STATE(3632)] = 97814, - [SMALL_STATE(3633)] = 97828, - [SMALL_STATE(3634)] = 97842, - [SMALL_STATE(3635)] = 97856, - [SMALL_STATE(3636)] = 97870, - [SMALL_STATE(3637)] = 97884, - [SMALL_STATE(3638)] = 97898, - [SMALL_STATE(3639)] = 97912, - [SMALL_STATE(3640)] = 97926, - [SMALL_STATE(3641)] = 97940, - [SMALL_STATE(3642)] = 97954, - [SMALL_STATE(3643)] = 97958, - [SMALL_STATE(3644)] = 97962, - [SMALL_STATE(3645)] = 97966, - [SMALL_STATE(3646)] = 97970, - [SMALL_STATE(3647)] = 97974, - [SMALL_STATE(3648)] = 97978, + [SMALL_STATE(3068)] = 89208, + [SMALL_STATE(3069)] = 89224, + [SMALL_STATE(3070)] = 89244, + [SMALL_STATE(3071)] = 89264, + [SMALL_STATE(3072)] = 89280, + [SMALL_STATE(3073)] = 89298, + [SMALL_STATE(3074)] = 89318, + [SMALL_STATE(3075)] = 89338, + [SMALL_STATE(3076)] = 89355, + [SMALL_STATE(3077)] = 89372, + [SMALL_STATE(3078)] = 89389, + [SMALL_STATE(3079)] = 89404, + [SMALL_STATE(3080)] = 89419, + [SMALL_STATE(3081)] = 89436, + [SMALL_STATE(3082)] = 89453, + [SMALL_STATE(3083)] = 89470, + [SMALL_STATE(3084)] = 89485, + [SMALL_STATE(3085)] = 89502, + [SMALL_STATE(3086)] = 89519, + [SMALL_STATE(3087)] = 89536, + [SMALL_STATE(3088)] = 89553, + [SMALL_STATE(3089)] = 89570, + [SMALL_STATE(3090)] = 89585, + [SMALL_STATE(3091)] = 89602, + [SMALL_STATE(3092)] = 89619, + [SMALL_STATE(3093)] = 89634, + [SMALL_STATE(3094)] = 89651, + [SMALL_STATE(3095)] = 89666, + [SMALL_STATE(3096)] = 89681, + [SMALL_STATE(3097)] = 89698, + [SMALL_STATE(3098)] = 89715, + [SMALL_STATE(3099)] = 89732, + [SMALL_STATE(3100)] = 89749, + [SMALL_STATE(3101)] = 89766, + [SMALL_STATE(3102)] = 89783, + [SMALL_STATE(3103)] = 89798, + [SMALL_STATE(3104)] = 89813, + [SMALL_STATE(3105)] = 89830, + [SMALL_STATE(3106)] = 89845, + [SMALL_STATE(3107)] = 89862, + [SMALL_STATE(3108)] = 89879, + [SMALL_STATE(3109)] = 89896, + [SMALL_STATE(3110)] = 89913, + [SMALL_STATE(3111)] = 89930, + [SMALL_STATE(3112)] = 89945, + [SMALL_STATE(3113)] = 89962, + [SMALL_STATE(3114)] = 89979, + [SMALL_STATE(3115)] = 89996, + [SMALL_STATE(3116)] = 90013, + [SMALL_STATE(3117)] = 90030, + [SMALL_STATE(3118)] = 90047, + [SMALL_STATE(3119)] = 90064, + [SMALL_STATE(3120)] = 90079, + [SMALL_STATE(3121)] = 90096, + [SMALL_STATE(3122)] = 90113, + [SMALL_STATE(3123)] = 90128, + [SMALL_STATE(3124)] = 90143, + [SMALL_STATE(3125)] = 90160, + [SMALL_STATE(3126)] = 90177, + [SMALL_STATE(3127)] = 90194, + [SMALL_STATE(3128)] = 90209, + [SMALL_STATE(3129)] = 90226, + [SMALL_STATE(3130)] = 90243, + [SMALL_STATE(3131)] = 90258, + [SMALL_STATE(3132)] = 90275, + [SMALL_STATE(3133)] = 90292, + [SMALL_STATE(3134)] = 90309, + [SMALL_STATE(3135)] = 90326, + [SMALL_STATE(3136)] = 90341, + [SMALL_STATE(3137)] = 90358, + [SMALL_STATE(3138)] = 90373, + [SMALL_STATE(3139)] = 90390, + [SMALL_STATE(3140)] = 90407, + [SMALL_STATE(3141)] = 90424, + [SMALL_STATE(3142)] = 90441, + [SMALL_STATE(3143)] = 90458, + [SMALL_STATE(3144)] = 90473, + [SMALL_STATE(3145)] = 90490, + [SMALL_STATE(3146)] = 90507, + [SMALL_STATE(3147)] = 90524, + [SMALL_STATE(3148)] = 90541, + [SMALL_STATE(3149)] = 90556, + [SMALL_STATE(3150)] = 90573, + [SMALL_STATE(3151)] = 90590, + [SMALL_STATE(3152)] = 90607, + [SMALL_STATE(3153)] = 90622, + [SMALL_STATE(3154)] = 90639, + [SMALL_STATE(3155)] = 90654, + [SMALL_STATE(3156)] = 90671, + [SMALL_STATE(3157)] = 90688, + [SMALL_STATE(3158)] = 90705, + [SMALL_STATE(3159)] = 90722, + [SMALL_STATE(3160)] = 90739, + [SMALL_STATE(3161)] = 90754, + [SMALL_STATE(3162)] = 90771, + [SMALL_STATE(3163)] = 90788, + [SMALL_STATE(3164)] = 90803, + [SMALL_STATE(3165)] = 90820, + [SMALL_STATE(3166)] = 90837, + [SMALL_STATE(3167)] = 90854, + [SMALL_STATE(3168)] = 90871, + [SMALL_STATE(3169)] = 90888, + [SMALL_STATE(3170)] = 90903, + [SMALL_STATE(3171)] = 90920, + [SMALL_STATE(3172)] = 90937, + [SMALL_STATE(3173)] = 90954, + [SMALL_STATE(3174)] = 90971, + [SMALL_STATE(3175)] = 90988, + [SMALL_STATE(3176)] = 91005, + [SMALL_STATE(3177)] = 91022, + [SMALL_STATE(3178)] = 91037, + [SMALL_STATE(3179)] = 91054, + [SMALL_STATE(3180)] = 91071, + [SMALL_STATE(3181)] = 91088, + [SMALL_STATE(3182)] = 91105, + [SMALL_STATE(3183)] = 91122, + [SMALL_STATE(3184)] = 91139, + [SMALL_STATE(3185)] = 91156, + [SMALL_STATE(3186)] = 91173, + [SMALL_STATE(3187)] = 91188, + [SMALL_STATE(3188)] = 91203, + [SMALL_STATE(3189)] = 91220, + [SMALL_STATE(3190)] = 91237, + [SMALL_STATE(3191)] = 91252, + [SMALL_STATE(3192)] = 91269, + [SMALL_STATE(3193)] = 91286, + [SMALL_STATE(3194)] = 91303, + [SMALL_STATE(3195)] = 91320, + [SMALL_STATE(3196)] = 91337, + [SMALL_STATE(3197)] = 91354, + [SMALL_STATE(3198)] = 91371, + [SMALL_STATE(3199)] = 91388, + [SMALL_STATE(3200)] = 91405, + [SMALL_STATE(3201)] = 91422, + [SMALL_STATE(3202)] = 91439, + [SMALL_STATE(3203)] = 91456, + [SMALL_STATE(3204)] = 91473, + [SMALL_STATE(3205)] = 91490, + [SMALL_STATE(3206)] = 91507, + [SMALL_STATE(3207)] = 91524, + [SMALL_STATE(3208)] = 91541, + [SMALL_STATE(3209)] = 91558, + [SMALL_STATE(3210)] = 91575, + [SMALL_STATE(3211)] = 91592, + [SMALL_STATE(3212)] = 91609, + [SMALL_STATE(3213)] = 91626, + [SMALL_STATE(3214)] = 91643, + [SMALL_STATE(3215)] = 91660, + [SMALL_STATE(3216)] = 91677, + [SMALL_STATE(3217)] = 91694, + [SMALL_STATE(3218)] = 91711, + [SMALL_STATE(3219)] = 91728, + [SMALL_STATE(3220)] = 91745, + [SMALL_STATE(3221)] = 91762, + [SMALL_STATE(3222)] = 91779, + [SMALL_STATE(3223)] = 91796, + [SMALL_STATE(3224)] = 91813, + [SMALL_STATE(3225)] = 91830, + [SMALL_STATE(3226)] = 91847, + [SMALL_STATE(3227)] = 91864, + [SMALL_STATE(3228)] = 91881, + [SMALL_STATE(3229)] = 91896, + [SMALL_STATE(3230)] = 91913, + [SMALL_STATE(3231)] = 91930, + [SMALL_STATE(3232)] = 91947, + [SMALL_STATE(3233)] = 91962, + [SMALL_STATE(3234)] = 91979, + [SMALL_STATE(3235)] = 91996, + [SMALL_STATE(3236)] = 92013, + [SMALL_STATE(3237)] = 92028, + [SMALL_STATE(3238)] = 92045, + [SMALL_STATE(3239)] = 92060, + [SMALL_STATE(3240)] = 92077, + [SMALL_STATE(3241)] = 92094, + [SMALL_STATE(3242)] = 92111, + [SMALL_STATE(3243)] = 92128, + [SMALL_STATE(3244)] = 92145, + [SMALL_STATE(3245)] = 92162, + [SMALL_STATE(3246)] = 92177, + [SMALL_STATE(3247)] = 92194, + [SMALL_STATE(3248)] = 92211, + [SMALL_STATE(3249)] = 92226, + [SMALL_STATE(3250)] = 92243, + [SMALL_STATE(3251)] = 92260, + [SMALL_STATE(3252)] = 92275, + [SMALL_STATE(3253)] = 92290, + [SMALL_STATE(3254)] = 92307, + [SMALL_STATE(3255)] = 92322, + [SMALL_STATE(3256)] = 92339, + [SMALL_STATE(3257)] = 92354, + [SMALL_STATE(3258)] = 92369, + [SMALL_STATE(3259)] = 92384, + [SMALL_STATE(3260)] = 92401, + [SMALL_STATE(3261)] = 92418, + [SMALL_STATE(3262)] = 92435, + [SMALL_STATE(3263)] = 92452, + [SMALL_STATE(3264)] = 92469, + [SMALL_STATE(3265)] = 92486, + [SMALL_STATE(3266)] = 92503, + [SMALL_STATE(3267)] = 92520, + [SMALL_STATE(3268)] = 92537, + [SMALL_STATE(3269)] = 92554, + [SMALL_STATE(3270)] = 92571, + [SMALL_STATE(3271)] = 92588, + [SMALL_STATE(3272)] = 92605, + [SMALL_STATE(3273)] = 92622, + [SMALL_STATE(3274)] = 92639, + [SMALL_STATE(3275)] = 92656, + [SMALL_STATE(3276)] = 92673, + [SMALL_STATE(3277)] = 92690, + [SMALL_STATE(3278)] = 92707, + [SMALL_STATE(3279)] = 92724, + [SMALL_STATE(3280)] = 92741, + [SMALL_STATE(3281)] = 92758, + [SMALL_STATE(3282)] = 92775, + [SMALL_STATE(3283)] = 92792, + [SMALL_STATE(3284)] = 92809, + [SMALL_STATE(3285)] = 92826, + [SMALL_STATE(3286)] = 92843, + [SMALL_STATE(3287)] = 92860, + [SMALL_STATE(3288)] = 92875, + [SMALL_STATE(3289)] = 92892, + [SMALL_STATE(3290)] = 92909, + [SMALL_STATE(3291)] = 92926, + [SMALL_STATE(3292)] = 92943, + [SMALL_STATE(3293)] = 92958, + [SMALL_STATE(3294)] = 92975, + [SMALL_STATE(3295)] = 92992, + [SMALL_STATE(3296)] = 93009, + [SMALL_STATE(3297)] = 93026, + [SMALL_STATE(3298)] = 93043, + [SMALL_STATE(3299)] = 93058, + [SMALL_STATE(3300)] = 93075, + [SMALL_STATE(3301)] = 93090, + [SMALL_STATE(3302)] = 93107, + [SMALL_STATE(3303)] = 93124, + [SMALL_STATE(3304)] = 93141, + [SMALL_STATE(3305)] = 93158, + [SMALL_STATE(3306)] = 93175, + [SMALL_STATE(3307)] = 93192, + [SMALL_STATE(3308)] = 93209, + [SMALL_STATE(3309)] = 93224, + [SMALL_STATE(3310)] = 93241, + [SMALL_STATE(3311)] = 93258, + [SMALL_STATE(3312)] = 93275, + [SMALL_STATE(3313)] = 93290, + [SMALL_STATE(3314)] = 93307, + [SMALL_STATE(3315)] = 93324, + [SMALL_STATE(3316)] = 93341, + [SMALL_STATE(3317)] = 93358, + [SMALL_STATE(3318)] = 93375, + [SMALL_STATE(3319)] = 93392, + [SMALL_STATE(3320)] = 93409, + [SMALL_STATE(3321)] = 93426, + [SMALL_STATE(3322)] = 93443, + [SMALL_STATE(3323)] = 93460, + [SMALL_STATE(3324)] = 93477, + [SMALL_STATE(3325)] = 93494, + [SMALL_STATE(3326)] = 93509, + [SMALL_STATE(3327)] = 93526, + [SMALL_STATE(3328)] = 93543, + [SMALL_STATE(3329)] = 93560, + [SMALL_STATE(3330)] = 93575, + [SMALL_STATE(3331)] = 93592, + [SMALL_STATE(3332)] = 93609, + [SMALL_STATE(3333)] = 93624, + [SMALL_STATE(3334)] = 93641, + [SMALL_STATE(3335)] = 93658, + [SMALL_STATE(3336)] = 93673, + [SMALL_STATE(3337)] = 93690, + [SMALL_STATE(3338)] = 93707, + [SMALL_STATE(3339)] = 93724, + [SMALL_STATE(3340)] = 93741, + [SMALL_STATE(3341)] = 93758, + [SMALL_STATE(3342)] = 93775, + [SMALL_STATE(3343)] = 93792, + [SMALL_STATE(3344)] = 93809, + [SMALL_STATE(3345)] = 93826, + [SMALL_STATE(3346)] = 93843, + [SMALL_STATE(3347)] = 93860, + [SMALL_STATE(3348)] = 93877, + [SMALL_STATE(3349)] = 93894, + [SMALL_STATE(3350)] = 93911, + [SMALL_STATE(3351)] = 93928, + [SMALL_STATE(3352)] = 93943, + [SMALL_STATE(3353)] = 93960, + [SMALL_STATE(3354)] = 93977, + [SMALL_STATE(3355)] = 93994, + [SMALL_STATE(3356)] = 94011, + [SMALL_STATE(3357)] = 94028, + [SMALL_STATE(3358)] = 94042, + [SMALL_STATE(3359)] = 94056, + [SMALL_STATE(3360)] = 94070, + [SMALL_STATE(3361)] = 94084, + [SMALL_STATE(3362)] = 94098, + [SMALL_STATE(3363)] = 94112, + [SMALL_STATE(3364)] = 94126, + [SMALL_STATE(3365)] = 94140, + [SMALL_STATE(3366)] = 94154, + [SMALL_STATE(3367)] = 94168, + [SMALL_STATE(3368)] = 94182, + [SMALL_STATE(3369)] = 94196, + [SMALL_STATE(3370)] = 94210, + [SMALL_STATE(3371)] = 94224, + [SMALL_STATE(3372)] = 94238, + [SMALL_STATE(3373)] = 94252, + [SMALL_STATE(3374)] = 94266, + [SMALL_STATE(3375)] = 94280, + [SMALL_STATE(3376)] = 94294, + [SMALL_STATE(3377)] = 94308, + [SMALL_STATE(3378)] = 94322, + [SMALL_STATE(3379)] = 94336, + [SMALL_STATE(3380)] = 94350, + [SMALL_STATE(3381)] = 94364, + [SMALL_STATE(3382)] = 94378, + [SMALL_STATE(3383)] = 94392, + [SMALL_STATE(3384)] = 94406, + [SMALL_STATE(3385)] = 94420, + [SMALL_STATE(3386)] = 94434, + [SMALL_STATE(3387)] = 94448, + [SMALL_STATE(3388)] = 94462, + [SMALL_STATE(3389)] = 94476, + [SMALL_STATE(3390)] = 94490, + [SMALL_STATE(3391)] = 94504, + [SMALL_STATE(3392)] = 94518, + [SMALL_STATE(3393)] = 94532, + [SMALL_STATE(3394)] = 94546, + [SMALL_STATE(3395)] = 94560, + [SMALL_STATE(3396)] = 94574, + [SMALL_STATE(3397)] = 94588, + [SMALL_STATE(3398)] = 94602, + [SMALL_STATE(3399)] = 94616, + [SMALL_STATE(3400)] = 94630, + [SMALL_STATE(3401)] = 94644, + [SMALL_STATE(3402)] = 94658, + [SMALL_STATE(3403)] = 94672, + [SMALL_STATE(3404)] = 94686, + [SMALL_STATE(3405)] = 94700, + [SMALL_STATE(3406)] = 94714, + [SMALL_STATE(3407)] = 94728, + [SMALL_STATE(3408)] = 94742, + [SMALL_STATE(3409)] = 94756, + [SMALL_STATE(3410)] = 94770, + [SMALL_STATE(3411)] = 94784, + [SMALL_STATE(3412)] = 94798, + [SMALL_STATE(3413)] = 94812, + [SMALL_STATE(3414)] = 94826, + [SMALL_STATE(3415)] = 94840, + [SMALL_STATE(3416)] = 94854, + [SMALL_STATE(3417)] = 94868, + [SMALL_STATE(3418)] = 94882, + [SMALL_STATE(3419)] = 94896, + [SMALL_STATE(3420)] = 94910, + [SMALL_STATE(3421)] = 94924, + [SMALL_STATE(3422)] = 94938, + [SMALL_STATE(3423)] = 94952, + [SMALL_STATE(3424)] = 94966, + [SMALL_STATE(3425)] = 94980, + [SMALL_STATE(3426)] = 94994, + [SMALL_STATE(3427)] = 95008, + [SMALL_STATE(3428)] = 95022, + [SMALL_STATE(3429)] = 95036, + [SMALL_STATE(3430)] = 95050, + [SMALL_STATE(3431)] = 95064, + [SMALL_STATE(3432)] = 95078, + [SMALL_STATE(3433)] = 95092, + [SMALL_STATE(3434)] = 95106, + [SMALL_STATE(3435)] = 95120, + [SMALL_STATE(3436)] = 95134, + [SMALL_STATE(3437)] = 95148, + [SMALL_STATE(3438)] = 95162, + [SMALL_STATE(3439)] = 95176, + [SMALL_STATE(3440)] = 95190, + [SMALL_STATE(3441)] = 95204, + [SMALL_STATE(3442)] = 95218, + [SMALL_STATE(3443)] = 95232, + [SMALL_STATE(3444)] = 95246, + [SMALL_STATE(3445)] = 95260, + [SMALL_STATE(3446)] = 95274, + [SMALL_STATE(3447)] = 95288, + [SMALL_STATE(3448)] = 95302, + [SMALL_STATE(3449)] = 95316, + [SMALL_STATE(3450)] = 95330, + [SMALL_STATE(3451)] = 95344, + [SMALL_STATE(3452)] = 95358, + [SMALL_STATE(3453)] = 95372, + [SMALL_STATE(3454)] = 95386, + [SMALL_STATE(3455)] = 95400, + [SMALL_STATE(3456)] = 95414, + [SMALL_STATE(3457)] = 95428, + [SMALL_STATE(3458)] = 95442, + [SMALL_STATE(3459)] = 95456, + [SMALL_STATE(3460)] = 95470, + [SMALL_STATE(3461)] = 95484, + [SMALL_STATE(3462)] = 95498, + [SMALL_STATE(3463)] = 95512, + [SMALL_STATE(3464)] = 95526, + [SMALL_STATE(3465)] = 95540, + [SMALL_STATE(3466)] = 95554, + [SMALL_STATE(3467)] = 95568, + [SMALL_STATE(3468)] = 95582, + [SMALL_STATE(3469)] = 95596, + [SMALL_STATE(3470)] = 95610, + [SMALL_STATE(3471)] = 95624, + [SMALL_STATE(3472)] = 95638, + [SMALL_STATE(3473)] = 95652, + [SMALL_STATE(3474)] = 95666, + [SMALL_STATE(3475)] = 95680, + [SMALL_STATE(3476)] = 95694, + [SMALL_STATE(3477)] = 95708, + [SMALL_STATE(3478)] = 95722, + [SMALL_STATE(3479)] = 95736, + [SMALL_STATE(3480)] = 95750, + [SMALL_STATE(3481)] = 95764, + [SMALL_STATE(3482)] = 95778, + [SMALL_STATE(3483)] = 95792, + [SMALL_STATE(3484)] = 95806, + [SMALL_STATE(3485)] = 95820, + [SMALL_STATE(3486)] = 95834, + [SMALL_STATE(3487)] = 95848, + [SMALL_STATE(3488)] = 95862, + [SMALL_STATE(3489)] = 95876, + [SMALL_STATE(3490)] = 95890, + [SMALL_STATE(3491)] = 95904, + [SMALL_STATE(3492)] = 95918, + [SMALL_STATE(3493)] = 95932, + [SMALL_STATE(3494)] = 95946, + [SMALL_STATE(3495)] = 95960, + [SMALL_STATE(3496)] = 95974, + [SMALL_STATE(3497)] = 95988, + [SMALL_STATE(3498)] = 96002, + [SMALL_STATE(3499)] = 96016, + [SMALL_STATE(3500)] = 96030, + [SMALL_STATE(3501)] = 96044, + [SMALL_STATE(3502)] = 96058, + [SMALL_STATE(3503)] = 96072, + [SMALL_STATE(3504)] = 96086, + [SMALL_STATE(3505)] = 96100, + [SMALL_STATE(3506)] = 96114, + [SMALL_STATE(3507)] = 96128, + [SMALL_STATE(3508)] = 96142, + [SMALL_STATE(3509)] = 96156, + [SMALL_STATE(3510)] = 96170, + [SMALL_STATE(3511)] = 96184, + [SMALL_STATE(3512)] = 96198, + [SMALL_STATE(3513)] = 96212, + [SMALL_STATE(3514)] = 96226, + [SMALL_STATE(3515)] = 96240, + [SMALL_STATE(3516)] = 96254, + [SMALL_STATE(3517)] = 96268, + [SMALL_STATE(3518)] = 96282, + [SMALL_STATE(3519)] = 96296, + [SMALL_STATE(3520)] = 96310, + [SMALL_STATE(3521)] = 96324, + [SMALL_STATE(3522)] = 96338, + [SMALL_STATE(3523)] = 96352, + [SMALL_STATE(3524)] = 96366, + [SMALL_STATE(3525)] = 96380, + [SMALL_STATE(3526)] = 96394, + [SMALL_STATE(3527)] = 96408, + [SMALL_STATE(3528)] = 96422, + [SMALL_STATE(3529)] = 96436, + [SMALL_STATE(3530)] = 96450, + [SMALL_STATE(3531)] = 96464, + [SMALL_STATE(3532)] = 96478, + [SMALL_STATE(3533)] = 96492, + [SMALL_STATE(3534)] = 96506, + [SMALL_STATE(3535)] = 96520, + [SMALL_STATE(3536)] = 96534, + [SMALL_STATE(3537)] = 96548, + [SMALL_STATE(3538)] = 96562, + [SMALL_STATE(3539)] = 96576, + [SMALL_STATE(3540)] = 96590, + [SMALL_STATE(3541)] = 96604, + [SMALL_STATE(3542)] = 96618, + [SMALL_STATE(3543)] = 96632, + [SMALL_STATE(3544)] = 96646, + [SMALL_STATE(3545)] = 96660, + [SMALL_STATE(3546)] = 96674, + [SMALL_STATE(3547)] = 96688, + [SMALL_STATE(3548)] = 96702, + [SMALL_STATE(3549)] = 96716, + [SMALL_STATE(3550)] = 96730, + [SMALL_STATE(3551)] = 96744, + [SMALL_STATE(3552)] = 96758, + [SMALL_STATE(3553)] = 96772, + [SMALL_STATE(3554)] = 96786, + [SMALL_STATE(3555)] = 96800, + [SMALL_STATE(3556)] = 96814, + [SMALL_STATE(3557)] = 96828, + [SMALL_STATE(3558)] = 96842, + [SMALL_STATE(3559)] = 96856, + [SMALL_STATE(3560)] = 96870, + [SMALL_STATE(3561)] = 96884, + [SMALL_STATE(3562)] = 96898, + [SMALL_STATE(3563)] = 96912, + [SMALL_STATE(3564)] = 96926, + [SMALL_STATE(3565)] = 96940, + [SMALL_STATE(3566)] = 96954, + [SMALL_STATE(3567)] = 96968, + [SMALL_STATE(3568)] = 96982, + [SMALL_STATE(3569)] = 96996, + [SMALL_STATE(3570)] = 97010, + [SMALL_STATE(3571)] = 97024, + [SMALL_STATE(3572)] = 97038, + [SMALL_STATE(3573)] = 97052, + [SMALL_STATE(3574)] = 97066, + [SMALL_STATE(3575)] = 97080, + [SMALL_STATE(3576)] = 97094, + [SMALL_STATE(3577)] = 97108, + [SMALL_STATE(3578)] = 97122, + [SMALL_STATE(3579)] = 97136, + [SMALL_STATE(3580)] = 97150, + [SMALL_STATE(3581)] = 97164, + [SMALL_STATE(3582)] = 97178, + [SMALL_STATE(3583)] = 97192, + [SMALL_STATE(3584)] = 97206, + [SMALL_STATE(3585)] = 97220, + [SMALL_STATE(3586)] = 97234, + [SMALL_STATE(3587)] = 97248, + [SMALL_STATE(3588)] = 97262, + [SMALL_STATE(3589)] = 97276, + [SMALL_STATE(3590)] = 97290, + [SMALL_STATE(3591)] = 97304, + [SMALL_STATE(3592)] = 97318, + [SMALL_STATE(3593)] = 97332, + [SMALL_STATE(3594)] = 97346, + [SMALL_STATE(3595)] = 97360, + [SMALL_STATE(3596)] = 97374, + [SMALL_STATE(3597)] = 97388, + [SMALL_STATE(3598)] = 97402, + [SMALL_STATE(3599)] = 97416, + [SMALL_STATE(3600)] = 97430, + [SMALL_STATE(3601)] = 97444, + [SMALL_STATE(3602)] = 97458, + [SMALL_STATE(3603)] = 97472, + [SMALL_STATE(3604)] = 97486, + [SMALL_STATE(3605)] = 97500, + [SMALL_STATE(3606)] = 97514, + [SMALL_STATE(3607)] = 97528, + [SMALL_STATE(3608)] = 97542, + [SMALL_STATE(3609)] = 97556, + [SMALL_STATE(3610)] = 97570, + [SMALL_STATE(3611)] = 97584, + [SMALL_STATE(3612)] = 97598, + [SMALL_STATE(3613)] = 97612, + [SMALL_STATE(3614)] = 97626, + [SMALL_STATE(3615)] = 97640, + [SMALL_STATE(3616)] = 97654, + [SMALL_STATE(3617)] = 97668, + [SMALL_STATE(3618)] = 97682, + [SMALL_STATE(3619)] = 97696, + [SMALL_STATE(3620)] = 97710, + [SMALL_STATE(3621)] = 97724, + [SMALL_STATE(3622)] = 97738, + [SMALL_STATE(3623)] = 97752, + [SMALL_STATE(3624)] = 97766, + [SMALL_STATE(3625)] = 97780, + [SMALL_STATE(3626)] = 97794, + [SMALL_STATE(3627)] = 97808, + [SMALL_STATE(3628)] = 97822, + [SMALL_STATE(3629)] = 97836, + [SMALL_STATE(3630)] = 97850, + [SMALL_STATE(3631)] = 97864, + [SMALL_STATE(3632)] = 97878, + [SMALL_STATE(3633)] = 97892, + [SMALL_STATE(3634)] = 97906, + [SMALL_STATE(3635)] = 97920, + [SMALL_STATE(3636)] = 97934, + [SMALL_STATE(3637)] = 97948, + [SMALL_STATE(3638)] = 97962, + [SMALL_STATE(3639)] = 97976, + [SMALL_STATE(3640)] = 97990, + [SMALL_STATE(3641)] = 98004, + [SMALL_STATE(3642)] = 98018, + [SMALL_STATE(3643)] = 98032, + [SMALL_STATE(3644)] = 98046, + [SMALL_STATE(3645)] = 98060, + [SMALL_STATE(3646)] = 98074, + [SMALL_STATE(3647)] = 98088, + [SMALL_STATE(3648)] = 98102, + [SMALL_STATE(3649)] = 98116, + [SMALL_STATE(3650)] = 98130, + [SMALL_STATE(3651)] = 98144, + [SMALL_STATE(3652)] = 98158, + [SMALL_STATE(3653)] = 98172, + [SMALL_STATE(3654)] = 98186, + [SMALL_STATE(3655)] = 98200, + [SMALL_STATE(3656)] = 98214, + [SMALL_STATE(3657)] = 98228, + [SMALL_STATE(3658)] = 98242, + [SMALL_STATE(3659)] = 98256, + [SMALL_STATE(3660)] = 98270, + [SMALL_STATE(3661)] = 98274, + [SMALL_STATE(3662)] = 98278, + [SMALL_STATE(3663)] = 98282, + [SMALL_STATE(3664)] = 98286, + [SMALL_STATE(3665)] = 98290, + [SMALL_STATE(3666)] = 98294, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3481), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2557), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3419), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3364), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(75), [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3556), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1057), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(145), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(291), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1496), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(238), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(789), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(857), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3298), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3586), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2421), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2531), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1365), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1453), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(831), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1019), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2627), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(338), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2789), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2637), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3130), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2629), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1489), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2524), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1413), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3537), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3563), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 198), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 198), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1051), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(151), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(304), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1505), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(234), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(790), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(850), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3199), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3639), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2487), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2622), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1364), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1422), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(835), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1024), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2563), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(345), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2807), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2676), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3318), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2571), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1449), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2592), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1489), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3373), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3486), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 199), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 199), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), @@ -192799,3051 +193559,3061 @@ static const TSParseActionEntry ts_parse_actions[] = { [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2487), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2676), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2571), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 76), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 76), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 242), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 242), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 99), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 99), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 146), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 146), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 116), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 116), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 77), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 77), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 147), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 147), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 100), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 100), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 117), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 117), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 243), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 243), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 173), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 173), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 117), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 117), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 85), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 85), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 165), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 165), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 167), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 167), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 219), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 219), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 202), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 202), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 181), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 181), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 230), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 230), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 189), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 189), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 231), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 231), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 232), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 232), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 233), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 233), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 138), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 138), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 238), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 238), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 239), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 239), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 196), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 196), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 205), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 205), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 245), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 245), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 210), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 210), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 212), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 212), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 247), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 247), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 251), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 251), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 224), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 224), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 226), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 226), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 228), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 228), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 261), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 261), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 232), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 232), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 263), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 263), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 251), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 251), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 264), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 264), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 265), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 265), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 239), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 239), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 266), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 266), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 267), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 267), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 268), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 268), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 269), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 269), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 270), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 270), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 255), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 255), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 257), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 257), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 261), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 261), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 273), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 273), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 274), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 274), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 267), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 267), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 276), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 276), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 277), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 277), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 278), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 278), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 274), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 274), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 279), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 279), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 121), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 121), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 124), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 124), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 74), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 74), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 75), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 75), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 157), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 157), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 175), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 175), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 83), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 83), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 85), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 85), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 73), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 73), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 180), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 180), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 131), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 131), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 181), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 181), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 132), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 132), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 133), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 133), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 182), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 182), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 86), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 86), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 113), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 113), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 186), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 186), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 64), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 64), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 89), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 89), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3343), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2944), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3346), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2950), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 89), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 89), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 96), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 96), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 89), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 89), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 89), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 89), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 97), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 97), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 189), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 189), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 141), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 141), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 191), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 191), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 175), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 175), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 184), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 184), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 89), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 89), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 138), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 138), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 184), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 184), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 184), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 184), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 111), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 111), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 112), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 112), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 113), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 113), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 74), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 74), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 196), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 196), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 80), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 80), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 197), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 197), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 101), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 101), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 117), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 117), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2032), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3182), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3329), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2364), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2389), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 111), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 111), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 158), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 158), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 159), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 159), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 73), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 73), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 112), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 112), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 112), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 112), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 131), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 131), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 87), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 87), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 85), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 85), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 132), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 132), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 112), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 112), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 141), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 141), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 142), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 142), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 136), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 136), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 138), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 138), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 89), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 89), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 136), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 136), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 138), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 138), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 136), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 136), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 138), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 138), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 202), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 202), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 205), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 205), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 158), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 158), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 207), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 207), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 160), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 160), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 162), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 162), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 87), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 87), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3329), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 120), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 120), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 77), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 77), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 120), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 120), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 120), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 120), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 173), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 173), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 173), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 117), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 117), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 117), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 77), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 77), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 65), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 65), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 77), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 77), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 63), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 63), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 64), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 64), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 64), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 64), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 201), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 201), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 55), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 55), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 147), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 147), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 103), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 103), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 104), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 104), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 176), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 176), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 128), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 128), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 151), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 151), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 84), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 84), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 98), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 98), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 100), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 100), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 118), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 118), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 174), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 174), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2869), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 90), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 90), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 203), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 203), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 90), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 90), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 207), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 207), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 159), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 159), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 208), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 208), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 163), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 163), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 216), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 216), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 219), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 219), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 98), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 98), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 220), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 220), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 203), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 203), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 182), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 182), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 230), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 230), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 231), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 231), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 190), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 190), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 233), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 233), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 234), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 234), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 139), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 139), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 193), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 193), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 235), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 235), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 238), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 238), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 239), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 239), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 240), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 240), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 197), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 206), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 206), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 246), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 246), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 247), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 247), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 213), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 213), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 248), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 248), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 251), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 251), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 252), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 252), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 229), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 229), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 262), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 262), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 263), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 263), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 233), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 233), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 264), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 264), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 252), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 252), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 74), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 74), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 235), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 235), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 266), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 266), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 240), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 240), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 268), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 268), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 269), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 269), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 270), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 270), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 271), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 271), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 258), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 258), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 273), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 273), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 262), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 262), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 276), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 276), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 268), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 268), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 277), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 277), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 278), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 278), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 279), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 279), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 275), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 275), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 280), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 280), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 75), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 75), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 76), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 76), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 112), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 112), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 83), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 83), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 113), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 113), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 114), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 114), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 75), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 75), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 116), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 116), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 84), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 84), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 81), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 81), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 126), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 126), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 102), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 102), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 118), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 118), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 112), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 112), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 74), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 74), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 113), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 113), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 113), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 113), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 131), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 131), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 132), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 132), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 88), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 88), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 133), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 133), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 113), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 113), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 65), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 65), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 136), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 136), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 139), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 139), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 142), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 142), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 97), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 97), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 139), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 139), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 90), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 90), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 139), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 139), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 139), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 139), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 86), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 86), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 74), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 74), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 87), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 87), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 74), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 74), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 88), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 88), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 74), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 74), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 65), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 65), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 114), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 114), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 159), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 159), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 160), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 160), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 122), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 122), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 125), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 125), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 90), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 90), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 176), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 176), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 74), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 74), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 181), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 181), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 132), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 132), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 182), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 182), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 133), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 133), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 134), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 134), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 183), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 183), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 186), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 186), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 187), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 187), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 190), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 190), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 191), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 191), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 142), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 142), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 192), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 192), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 176), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 176), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 185), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 185), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 90), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 90), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 139), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 139), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 185), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 185), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 193), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 193), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 185), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 185), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 197), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2262), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2218), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3201), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 90), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 90), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 96), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 96), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 143), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 143), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 107), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 107), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 174), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 174), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 174), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 69), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 69), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 78), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 78), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 121), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 121), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 78), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 78), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 121), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 121), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 78), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 78), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 118), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 118), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 118), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 121), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 121), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), + [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 104), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 104), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 156), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 156), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 105), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 105), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 177), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 177), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 55), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 55), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 129), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 129), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 99), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 99), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 202), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 202), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 85), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 85), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 148), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 148), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 101), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 101), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 152), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 152), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 64), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 64), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 65), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 65), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 65), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 65), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3283), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 127), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 127), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2662), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 156), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 173), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 188), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 204), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 117), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 244), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 117), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 110), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2656), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3334), + [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 128), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 128), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 174), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 118), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 189), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 157), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 188), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 204), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 118), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 205), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 245), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 141), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 111), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 62), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 62), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 57), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 57), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 57), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 62), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 62), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 57), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 71), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 57), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 57), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 77), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1979), - [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(411), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 252), - [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 64), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 64), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 220), - [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 177), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 103), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 177), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 120), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 220), - [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 103), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 252), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 61), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 199), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 101), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 148), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 111), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 90), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 91), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 92), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 93), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 59), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 64), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 221), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 200), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 102), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 178), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 178), SHIFT_REPEAT(779), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(995), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 179), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 243), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2205), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 103), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 152), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 66), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6971] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 174), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 61), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 61), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), + [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 63), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 63), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 57), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 63), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 57), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 63), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 57), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 57), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 72), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 57), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 57), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1968), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(386), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 121), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 253), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 65), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 178), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 78), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 65), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 221), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 221), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 104), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 178), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 104), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 253), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 149), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 102), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 80), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 200), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 179), + [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 179), SHIFT_REPEAT(801), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 180), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 80), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 104), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 65), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 151), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 222), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 120), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 103), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2203), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 93), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 94), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 201), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 112), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 244), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 59), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 67), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 153), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 175), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 71), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7197] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -195898,10 +196668,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [6] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [7] = { [ts_external_token__line_doc_content] = true, @@ -195933,7 +196703,7 @@ void tree_sitter_rust_external_scanner_deserialize(void *, const char *, unsigne TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -195955,7 +196725,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..cdbe64cc 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,12 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +32,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +86,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +106,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +122,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +142,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +166,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/patterns.txt b/test/corpus/patterns.txt index ed25ed7e..66775e2a 100644 --- a/test/corpus/patterns.txt +++ b/test/corpus/patterns.txt @@ -520,3 +520,30 @@ fn foo(x: i32) { (match_arm pattern: (match_pattern) value: (block)))))))) + +================================================================================ +Pattern with turbofish +================================================================================ + +match y { + None:: => 17, + _ => 42, +} + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (match_expression + (identifier) + (match_block + (match_arm + (match_pattern + (generic_pattern + (identifier) + (type_arguments + (type_identifier)))) + (integer_literal)) + (match_arm + (match_pattern) + (integer_literal))))))